Enum Class IMultiLookup.ChangeGranularity
java.lang.Object
java.lang.Enum<IMultiLookup.ChangeGranularity>
tools.refinery.interpreter.matchers.util.IMultiLookup.ChangeGranularity
- All Implemented Interfaces:
Serializable
,Comparable<IMultiLookup.ChangeGranularity>
,Constable
- Enclosing interface:
IMultiLookup<Key,
Value>
How significant was the change? *
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDuplicate key-value pair inserted or deleted.First key-value pair with given key inserted, or last pair with given key deleted.First occurrence of given key-value pair inserted, or last occurrence of the pair deleted, while key still has values associated. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static IMultiLookup.ChangeGranularity[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
KEY
First key-value pair with given key inserted, or last pair with given key deleted. (In case of delta maps, also if last negative key-value pair with given key neutralized.) -
VALUE
First occurrence of given key-value pair inserted, or last occurrence of the pair deleted, while key still has values associated. (In case of delta maps, also if last negative occurrence of key-value pair neutralized.) -
DUPLICATE
Duplicate key-value pair inserted or deleted.
-
-
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
-