public static enum IMultiLookup.ChangeGranularity extends java.lang.Enum<IMultiLookup.ChangeGranularity>
Enum Constant and Description |
---|
DUPLICATE
Duplicate key-value pair inserted or deleted.
|
KEY
First key-value pair with given key inserted, or last pair with given key deleted.
|
VALUE
First occurrence of given key-value pair inserted, or last occurrence of the pair deleted, while key still has values associated.
|
Modifier and Type | Method and Description |
---|---|
static IMultiLookup.ChangeGranularity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IMultiLookup.ChangeGranularity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IMultiLookup.ChangeGranularity KEY
public static final IMultiLookup.ChangeGranularity VALUE
public static final IMultiLookup.ChangeGranularity DUPLICATE
public static IMultiLookup.ChangeGranularity[] values()
for (IMultiLookup.ChangeGranularity c : IMultiLookup.ChangeGranularity.values()) System.out.println(c);
public static IMultiLookup.ChangeGranularity valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null