Interface IndexAbstraction
- All Known Implementing Classes:
IndexAbstraction.Alias,IndexAbstraction.DataStream,IndexAbstraction.Index
public interface IndexAbstraction
An index abstraction is a reference to one or more concrete indices.
An index abstraction has a unique name and encapsulates all the
IndexMetadata instances it is pointing to.
Also depending on type it may refer to a single or many concrete indices and may or may not have a write index.-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIndexAbstraction.AliasRepresents an alias and groups allIndexMetadatainstances sharing the same alias name together.static classIndexAbstraction.DataStreamstatic classIndexAbstraction.IndexRepresents an concrete index and encapsulates itsIndexMetadatastatic classIndexAbstraction.TypeAn index abstraction type. -
Method Summary
Modifier and Type Method Description java.util.List<IndexMetadata>getIndices()java.lang.StringgetName()IndexAbstraction.DataStreamgetParentDataStream()IndexAbstraction.TypegetType()IndexMetadatagetWriteIndex()A write index is a dedicated concrete index, that accepts all the new documents that belong to an index abstraction.booleanisHidden()
-
Method Details
-
getType
IndexAbstraction.Type getType()- Returns:
- the type of the index abstraction
-
getName
java.lang.String getName()- Returns:
- the name of the index abstraction
-
getIndices
java.util.List<IndexMetadata> getIndices()- Returns:
- All
IndexMetadataof all concrete indices this index abstraction is referring to.
-
getWriteIndex
A write index is a dedicated concrete index, that accepts all the new documents that belong to an index abstraction.A write index may also be a regular concrete index of a index abstraction and may therefore also be returned by
getIndices(). An index abstraction may also not have a dedicated write index.- Returns:
- the write index of this index abstraction or
nullif this index abstraction doesn't have a write index.
-
getParentDataStream
- Returns:
- the data stream to which this index belongs or
nullif this is not a concrete index or if it is a concrete index that does not belong to a data stream.
-
isHidden
boolean isHidden()- Returns:
- whether this index abstraction is hidden or not
-