public enum DedupeBy extends Enum<DedupeBy>
Enum Constant and Description |
---|
DEDUPE_FIELDS |
ID_FIELD |
Modifier and Type | Method and Description |
---|---|
String |
displayName() |
static DedupeBy |
find(String string) |
String |
toString() |
static DedupeBy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DedupeBy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DedupeBy DEDUPE_FIELDS
public static final DedupeBy ID_FIELD
public static DedupeBy[] values()
for (DedupeBy c : DedupeBy.values()) System.out.println(c);
public static DedupeBy valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String displayName()
Copyright © 2010–2018. All rights reserved.