List of usage examples for org.springframework.data.solr.core.mapping SolrPersistentEntity getPersistentProperty
@Nullable
@Override
SolrPersistentProperty getPersistentProperty(String name);
From source file:org.springframework.data.solr.core.schema.SolrSchmeaResolverUnitTests.java
SolrPersistentProperty getPropertyFor(String property, Class<?> type) {
SolrPersistentEntity<?> entity = createEntity(type);
return entity.getPersistentProperty(property);
}