Package com.enonic.xp.index
Class IndexConfig
- java.lang.Object
-
- com.enonic.xp.index.IndexConfig
-
- All Implemented Interfaces:
Comparable<IndexConfig>
@PublicApi public final class IndexConfig extends Object implements Comparable<IndexConfig>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIndexConfig.Builder
-
Field Summary
Fields Modifier and Type Field Description static IndexConfigBY_TYPEstatic Comparator<IndexConfig>COMPARATORstatic IndexConfigFULLTEXTstatic IndexConfigMINIMALstatic IndexConfigNGRAMstatic IndexConfigNONEstatic IndexConfigPATH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(IndexConfig o)static IndexConfig.Buildercreate()static IndexConfig.Buildercreate(IndexConfig source)booleanequals(Object o)ImmutableList<IndexValueProcessor>getIndexValueProcessors()ImmutableList<String>getLanguages()inthashCode()booleanisDecideByType()booleanisEnabled()booleanisFulltext()booleanisIncludeInAllText()booleanisnGram()booleanisPath()booleanisStemmed()
-
-
-
Field Detail
-
NONE
public static final IndexConfig NONE
-
FULLTEXT
public static final IndexConfig FULLTEXT
-
PATH
public static final IndexConfig PATH
-
MINIMAL
public static final IndexConfig MINIMAL
-
BY_TYPE
public static final IndexConfig BY_TYPE
-
NGRAM
public static final IndexConfig NGRAM
-
COMPARATOR
public static final Comparator<IndexConfig> COMPARATOR
-
-
Method Detail
-
create
public static IndexConfig.Builder create()
-
create
public static IndexConfig.Builder create(IndexConfig source)
-
isDecideByType
public boolean isDecideByType()
-
isEnabled
public boolean isEnabled()
-
isnGram
public boolean isnGram()
-
isFulltext
public boolean isFulltext()
-
isPath
public boolean isPath()
-
isIncludeInAllText
public boolean isIncludeInAllText()
-
isStemmed
public boolean isStemmed()
-
getLanguages
public ImmutableList<String> getLanguages()
-
getIndexValueProcessors
public ImmutableList<IndexValueProcessor> getIndexValueProcessors()
-
compareTo
public int compareTo(IndexConfig o)
- Specified by:
compareToin interfaceComparable<IndexConfig>
-
-