@Deprecated public enum WorkflowLogEntryType extends java.lang.Enum<WorkflowLogEntryType>
RuntimePackage.getWorkflowLogEntryType()| Enum Constant and Description |
|---|
DEBUG
Deprecated.
The 'DEBUG' literal object.
|
ERROR
Deprecated.
The 'ERROR' literal object.
|
INFO
Deprecated.
The 'INFO' literal object.
|
WARNING
Deprecated.
The 'WARNING' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
DEBUG_VALUE
Deprecated.
The 'DEBUG' literal value.
|
static int |
ERROR_VALUE
Deprecated.
The 'ERROR' literal value.
|
static int |
INFO_VALUE
Deprecated.
The 'INFO' literal value.
|
static java.util.List<WorkflowLogEntryType> |
VALUES
Deprecated.
A public read-only list of all the 'Workflow Log Entry Type' enumerators.
|
static int |
WARNING_VALUE
Deprecated.
The 'WARNING' literal value.
|
| Modifier and Type | Method and Description |
|---|---|
static WorkflowLogEntryType |
get(int value)
Deprecated.
Returns the 'Workflow Log Entry Type' literal with the specified integer value.
|
static WorkflowLogEntryType |
get(java.lang.String literal)
Deprecated.
Returns the 'Workflow Log Entry Type' literal with the specified literal value.
|
static WorkflowLogEntryType |
getByName(java.lang.String name)
Deprecated.
Returns the 'Workflow Log Entry Type' literal with the specified name.
|
java.lang.String |
getLiteral()
Deprecated.
|
java.lang.String |
getName()
Deprecated.
|
int |
getValue()
Deprecated.
|
java.lang.String |
toString()
Deprecated.
Returns the literal value of the enumerator, which is its string representation.
|
static WorkflowLogEntryType |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static WorkflowLogEntryType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowLogEntryType ERROR
ERROR_VALUEpublic static final WorkflowLogEntryType WARNING
WARNING_VALUEpublic static final WorkflowLogEntryType INFO
INFO_VALUEpublic static final WorkflowLogEntryType DEBUG
DEBUG_VALUEpublic static final int ERROR_VALUE
If the meaning of 'ERROR' literal object isn't clear, there really should be more of a description here...
ERROR,
Constant Field Valuespublic static final int WARNING_VALUE
If the meaning of 'WARNING' literal object isn't clear, there really should be more of a description here...
WARNING,
Constant Field Valuespublic static final int INFO_VALUE
If the meaning of 'INFO' literal object isn't clear, there really should be more of a description here...
INFO,
Constant Field Valuespublic static final int DEBUG_VALUE
If the meaning of 'DEBUG' literal object isn't clear, there really should be more of a description here...
DEBUG,
Constant Field Valuespublic static final java.util.List<WorkflowLogEntryType> VALUES
public static WorkflowLogEntryType[] values()
for (WorkflowLogEntryType c : WorkflowLogEntryType.values()) System.out.println(c);
public static WorkflowLogEntryType 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 static WorkflowLogEntryType get(java.lang.String literal)
public static WorkflowLogEntryType getByName(java.lang.String name)
public static WorkflowLogEntryType get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString in class java.lang.Enum<WorkflowLogEntryType>