org.eclipse.gmt.modisco.workflow.mwe.workflow.runtime
Enum WorkflowLogEntryType

java.lang.Object
  extended by java.lang.Enum<WorkflowLogEntryType>
      extended by org.eclipse.gmt.modisco.workflow.mwe.workflow.runtime.WorkflowLogEntryType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WorkflowLogEntryType>

Deprecated.

@Deprecated
public enum WorkflowLogEntryType
extends java.lang.Enum<WorkflowLogEntryType>

A representation of the literals of the enumeration 'Workflow Log Entry Type', and utility methods for working with them.

See Also:
RuntimePackage.getWorkflowLogEntryType()
Generated:
Model:

Enum Constant Summary
DEBUG
          Deprecated. The 'DEBUG' literal object.
ERROR
          Deprecated. The 'ERROR' literal object.
INFO
          Deprecated. The 'INFO' literal object.
WARNING
          Deprecated. The 'WARNING' literal object.
 
Field Summary
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.
 
Method Summary
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're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ERROR

public static final WorkflowLogEntryType ERROR
Deprecated. 
The 'ERROR' literal object.

See Also:
ERROR_VALUE
Generated:
Ordered:

WARNING

public static final WorkflowLogEntryType WARNING
Deprecated. 
The 'WARNING' literal object.

See Also:
WARNING_VALUE
Generated:
Ordered:

INFO

public static final WorkflowLogEntryType INFO
Deprecated. 
The 'INFO' literal object.

See Also:
INFO_VALUE
Generated:
Ordered:

DEBUG

public static final WorkflowLogEntryType DEBUG
Deprecated. 
The 'DEBUG' literal object.

See Also:
DEBUG_VALUE
Generated:
Ordered:
Field Detail

ERROR_VALUE

public static final int ERROR_VALUE
Deprecated. 
The 'ERROR' literal value.

If the meaning of 'ERROR' literal object isn't clear, there really should be more of a description here...

See Also:
ERROR, Constant Field Values
Generated:
Model:
Ordered:

WARNING_VALUE

public static final int WARNING_VALUE
Deprecated. 
The 'WARNING' literal value.

If the meaning of 'WARNING' literal object isn't clear, there really should be more of a description here...

See Also:
WARNING, Constant Field Values
Generated:
Model:
Ordered:

INFO_VALUE

public static final int INFO_VALUE
Deprecated. 
The 'INFO' literal value.

If the meaning of 'INFO' literal object isn't clear, there really should be more of a description here...

See Also:
INFO, Constant Field Values
Generated:
Model:
Ordered:

DEBUG_VALUE

public static final int DEBUG_VALUE
Deprecated. 
The 'DEBUG' literal value.

If the meaning of 'DEBUG' literal object isn't clear, there really should be more of a description here...

See Also:
DEBUG, Constant Field Values
Generated:
Model:
Ordered:

VALUES

public static final java.util.List<WorkflowLogEntryType> VALUES
Deprecated. 
A public read-only list of all the 'Workflow Log Entry Type' enumerators.

Generated:
Method Detail

values

public static final WorkflowLogEntryType[] values()
Deprecated. 
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(WorkflowLogEntryType c : WorkflowLogEntryType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static WorkflowLogEntryType valueOf(java.lang.String name)
Deprecated. 
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

get

public static WorkflowLogEntryType get(java.lang.String literal)
Deprecated. 
Returns the 'Workflow Log Entry Type' literal with the specified literal value.

Generated:

getByName

public static WorkflowLogEntryType getByName(java.lang.String name)
Deprecated. 
Returns the 'Workflow Log Entry Type' literal with the specified name.

Generated:

get

public static WorkflowLogEntryType get(int value)
Deprecated. 
Returns the 'Workflow Log Entry Type' literal with the specified integer value.

Generated:

getValue

public int getValue()
Deprecated. 

Generated:

getName

public java.lang.String getName()
Deprecated. 

Generated:

getLiteral

public java.lang.String getLiteral()
Deprecated. 

Generated:

toString

public java.lang.String toString()
Deprecated. 
Returns the literal value of the enumerator, which is its string representation.

Overrides:
toString in class java.lang.Enum<WorkflowLogEntryType>
Generated: