Interface ElasticsearchIndexDescriptor
-
- All Superinterfaces:
IndexDescriptor
public interface ElasticsearchIndexDescriptor extends IndexDescriptor
A descriptor of an Elasticsearch backend index, which exposes additional information specific to this backend.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
readName()
String
writeName()
-
Methods inherited from interface org.hibernate.search.engine.backend.metamodel.IndexDescriptor
field, hibernateSearchName, root, staticFields
-
-
-
-
Method Detail
-
readName
String readName()
- Returns:
- The read name, i.e. the name that Hibernate Search is supposed to use when executing searches on the index.
-
writeName
String writeName()
- Returns:
- The write name, i.e. the name that Hibernate Search is supposed to use when indexing or purging the index.
-
-