Package ai.libs.jaicore.basic.kvstore
Enum KVStoreCollection.EGroupMethod
- java.lang.Object
-
- java.lang.Enum<KVStoreCollection.EGroupMethod>
-
- ai.libs.jaicore.basic.kvstore.KVStoreCollection.EGroupMethod
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<KVStoreCollection.EGroupMethod>
- Enclosing class:
- KVStoreCollection
public static enum KVStoreCollection.EGroupMethod extends java.lang.Enum<KVStoreCollection.EGroupMethod>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KVStoreCollection.EGroupMethodgetStandardGroupingHandler()static KVStoreCollection.EGroupMethodvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static KVStoreCollection.EGroupMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVG
public static final KVStoreCollection.EGroupMethod AVG
-
AVG_TRIMMED
public static final KVStoreCollection.EGroupMethod AVG_TRIMMED
-
MIN
public static final KVStoreCollection.EGroupMethod MIN
-
MAX
public static final KVStoreCollection.EGroupMethod MAX
-
MAJORITY
public static final KVStoreCollection.EGroupMethod MAJORITY
-
MINORITY
public static final KVStoreCollection.EGroupMethod MINORITY
-
LIST
public static final KVStoreCollection.EGroupMethod LIST
-
ADD
public static final KVStoreCollection.EGroupMethod ADD
-
-
Method Detail
-
values
public static KVStoreCollection.EGroupMethod[] 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 (KVStoreCollection.EGroupMethod c : KVStoreCollection.EGroupMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KVStoreCollection.EGroupMethod 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
-
getStandardGroupingHandler
public static KVStoreCollection.EGroupMethod getStandardGroupingHandler()
-
-