public enum LogColumn extends Enum<LogColumn>
Enum Constant and Description |
---|
DESCRIPTION
The description.
|
ID
The log id.
|
LEVEL
The log level.
|
LOG_DATE
The log date.
|
MODEL_INSTANCE_ID
The model instance id.
|
Modifier and Type | Method and Description |
---|---|
static LogColumn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogColumn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogColumn ID
public static final LogColumn MODEL_INSTANCE_ID
public static final LogColumn LOG_DATE
public static final LogColumn LEVEL
public static final LogColumn DESCRIPTION
public static LogColumn[] values()
for (LogColumn c : LogColumn.values()) System.out.println(c);
public static LogColumn 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 nullCopyright © 2007-2020 Whitestein Technologies. All Rights Reserved.