Enum FlatFileNodeStoreBuilder.SortStrategyType
- java.lang.Object
-
- java.lang.Enum<FlatFileNodeStoreBuilder.SortStrategyType>
-
- org.apache.jackrabbit.oak.index.indexer.document.flatfile.FlatFileNodeStoreBuilder.SortStrategyType
-
- All Implemented Interfaces:
Serializable
,Comparable<FlatFileNodeStoreBuilder.SortStrategyType>
- Enclosing class:
- FlatFileNodeStoreBuilder
public static enum FlatFileNodeStoreBuilder.SortStrategyType extends Enum<FlatFileNodeStoreBuilder.SortStrategyType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PIPELINED
System propertyFlatFileNodeStoreBuilder.OAK_INDEXER_SORT_STRATEGY_TYPE
if set to this value would result inPipelinedStrategy
being used.PIPELINED_TREE
System propertyFlatFileNodeStoreBuilder.OAK_INDEXER_SORT_STRATEGY_TYPE
if set to this value would result inPipelinedTreeStoreStrategy
being used.STORE_AND_SORT
System propertyFlatFileNodeStoreBuilder.OAK_INDEXER_SORT_STRATEGY_TYPE
if set to this value would result inStoreAndSortStrategy
being used.TRAVERSE_WITH_SORT
System propertyFlatFileNodeStoreBuilder.OAK_INDEXER_SORT_STRATEGY_TYPE
if set to this value would result inTraverseWithSortStrategy
being used.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FlatFileNodeStoreBuilder.SortStrategyType
valueOf(String name)
Returns the enum constant of this type with the specified name.static FlatFileNodeStoreBuilder.SortStrategyType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STORE_AND_SORT
public static final FlatFileNodeStoreBuilder.SortStrategyType STORE_AND_SORT
System propertyFlatFileNodeStoreBuilder.OAK_INDEXER_SORT_STRATEGY_TYPE
if set to this value would result inStoreAndSortStrategy
being used.
-
TRAVERSE_WITH_SORT
public static final FlatFileNodeStoreBuilder.SortStrategyType TRAVERSE_WITH_SORT
System propertyFlatFileNodeStoreBuilder.OAK_INDEXER_SORT_STRATEGY_TYPE
if set to this value would result inTraverseWithSortStrategy
being used.
-
PIPELINED
public static final FlatFileNodeStoreBuilder.SortStrategyType PIPELINED
System propertyFlatFileNodeStoreBuilder.OAK_INDEXER_SORT_STRATEGY_TYPE
if set to this value would result inPipelinedStrategy
being used.
-
PIPELINED_TREE
public static final FlatFileNodeStoreBuilder.SortStrategyType PIPELINED_TREE
System propertyFlatFileNodeStoreBuilder.OAK_INDEXER_SORT_STRATEGY_TYPE
if set to this value would result inPipelinedTreeStoreStrategy
being used.
-
-
Method Detail
-
values
public static FlatFileNodeStoreBuilder.SortStrategyType[] 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 (FlatFileNodeStoreBuilder.SortStrategyType c : FlatFileNodeStoreBuilder.SortStrategyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlatFileNodeStoreBuilder.SortStrategyType 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
-
-