Example usage for org.springframework.data.solr.core.mapping SolrPersistentEntity getPersistentProperty

List of usage examples for org.springframework.data.solr.core.mapping SolrPersistentEntity getPersistentProperty

Introduction

In this page you can find the example usage for org.springframework.data.solr.core.mapping SolrPersistentEntity getPersistentProperty.

Prototype

@Nullable
    @Override
    SolrPersistentProperty getPersistentProperty(String name);

Source Link

Usage

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);
}