Enum IndexingConfiguration.IndexingStrategyKey
- java.lang.Object
-
- java.lang.Enum<IndexingConfiguration.IndexingStrategyKey>
-
- eu.xenit.alfresco.healthprocessor.indexing.IndexingConfiguration.IndexingStrategyKey
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IndexingConfiguration.IndexingStrategyKey>
- Enclosing class:
- IndexingConfiguration
public static enum IndexingConfiguration.IndexingStrategyKey extends java.lang.Enum<IndexingConfiguration.IndexingStrategyKey>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TXNID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IndexingConfiguration.IndexingStrategyKey
fromKey(java.lang.String key)
static IndexingConfiguration.IndexingStrategyKey
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IndexingConfiguration.IndexingStrategyKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TXNID
public static final IndexingConfiguration.IndexingStrategyKey TXNID
-
-
Method Detail
-
values
public static IndexingConfiguration.IndexingStrategyKey[] 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 (IndexingConfiguration.IndexingStrategyKey c : IndexingConfiguration.IndexingStrategyKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IndexingConfiguration.IndexingStrategyKey valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
fromKey
public static IndexingConfiguration.IndexingStrategyKey fromKey(java.lang.String key)
-
-