Package dev.dokimos.core.gate
Enum Class GateConfig.Pairing
- All Implemented Interfaces:
Serializable,Comparable<GateConfig.Pairing>,Constable
- Enclosing class:
GateConfig
How baseline and candidate items are paired.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPair bydatasetItemIdwhen every item carries one, else positionally.Always pair bydatasetItemId(fails if any item lacks one).Always pair by position ("item-<index>"keys). -
Method Summary
Modifier and TypeMethodDescriptionstatic GateConfig.PairingReturns the enum constant of this class with the specified name.static GateConfig.Pairing[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
AUTO
Pair bydatasetItemIdwhen every item carries one, else positionally. -
POSITIONAL
Always pair by position ("item-<index>"keys). -
DATASET_ITEM_ID
Always pair bydatasetItemId(fails if any item lacks one).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-