public enum LoggingType extends java.lang.Enum<LoggingType>
| Enum Constant and Description |
|---|
ALL_DATA |
INTERVAL |
NONE |
POINT_CHANGE |
| Modifier and Type | Method and Description |
|---|---|
static java.util.Set<java.lang.String> |
buildEnums() |
java.lang.String |
getName() |
static LoggingType |
toEnum(java.lang.String s) |
static LoggingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoggingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggingType ALL_DATA
public static final LoggingType NONE
public static final LoggingType INTERVAL
public static final LoggingType POINT_CHANGE
public static LoggingType[] values()
for (LoggingType c : LoggingType.values()) System.out.println(c);
public static LoggingType 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 nullpublic java.lang.String getName()
public static LoggingType toEnum(java.lang.String s)
public static java.util.Set<java.lang.String> buildEnums()