public static enum MultiMapDataStore.DataPolicy extends java.lang.Enum<MultiMapDataStore.DataPolicy>
Enum Constant and Description |
---|
DEDUPLICATE |
RETURN_ALL |
RETURN_FIRST |
Modifier and Type | Method and Description |
---|---|
static MultiMapDataStore.DataPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultiMapDataStore.DataPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiMapDataStore.DataPolicy RETURN_FIRST
public static final MultiMapDataStore.DataPolicy RETURN_ALL
public static final MultiMapDataStore.DataPolicy DEDUPLICATE
public static MultiMapDataStore.DataPolicy[] values()
for (MultiMapDataStore.DataPolicy c : MultiMapDataStore.DataPolicy.values()) System.out.println(c);
public static MultiMapDataStore.DataPolicy 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