public enum HistoryTypes extends Enum<HistoryTypes>
| Modifier and Type | Method and Description |
|---|---|
static HistoryTypes |
fromString(String type) |
String |
toString() |
static HistoryTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HistoryTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HistoryTypes DEEP
public static final HistoryTypes SHALLOW
public static HistoryTypes[] values()
for (HistoryTypes c : HistoryTypes.values()) System.out.println(c);
public static HistoryTypes 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 static HistoryTypes fromString(String type)
public String toString()
toString in class Enum<HistoryTypes>Copyright © 2015. All rights reserved.