Package org.openmetadata.service.search
Enum SearchIndexDefinition.ElasticSearchIndexType
- java.lang.Object
-
- java.lang.Enum<SearchIndexDefinition.ElasticSearchIndexType>
-
- org.openmetadata.service.search.SearchIndexDefinition.ElasticSearchIndexType
-
- All Implemented Interfaces:
Serializable,Comparable<SearchIndexDefinition.ElasticSearchIndexType>
- Enclosing class:
- SearchIndexDefinition
public static enum SearchIndexDefinition.ElasticSearchIndexType extends Enum<SearchIndexDefinition.ElasticSearchIndexType>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description StringentityTypeStringindexMappingFileStringindexName
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchIndexDefinition.ElasticSearchIndexTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SearchIndexDefinition.ElasticSearchIndexType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TABLE_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType TABLE_SEARCH_INDEX
-
TOPIC_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType TOPIC_SEARCH_INDEX
-
DASHBOARD_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType DASHBOARD_SEARCH_INDEX
-
PIPELINE_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType PIPELINE_SEARCH_INDEX
-
USER_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType USER_SEARCH_INDEX
-
TEAM_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType TEAM_SEARCH_INDEX
-
GLOSSARY_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType GLOSSARY_SEARCH_INDEX
-
MLMODEL_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType MLMODEL_SEARCH_INDEX
-
CONTAINER_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType CONTAINER_SEARCH_INDEX
-
QUERY_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType QUERY_SEARCH_INDEX
-
TAG_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType TAG_SEARCH_INDEX
-
ENTITY_REPORT_DATA_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType ENTITY_REPORT_DATA_INDEX
-
TEST_CASE_SEARCH_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType TEST_CASE_SEARCH_INDEX
-
WEB_ANALYTIC_ENTITY_VIEW_REPORT_DATA_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType WEB_ANALYTIC_ENTITY_VIEW_REPORT_DATA_INDEX
-
WEB_ANALYTIC_USER_ACTIVITY_REPORT_DATA_INDEX
public static final SearchIndexDefinition.ElasticSearchIndexType WEB_ANALYTIC_USER_ACTIVITY_REPORT_DATA_INDEX
-
-
Method Detail
-
values
public static SearchIndexDefinition.ElasticSearchIndexType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SearchIndexDefinition.ElasticSearchIndexType c : SearchIndexDefinition.ElasticSearchIndexType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchIndexDefinition.ElasticSearchIndexType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-