org.eclipse.modisco.jee.ejbjar.EjbJar21
Enum TransAttributeTypeBase

java.lang.Object
  extended by java.lang.Enum<TransAttributeTypeBase>
      extended by org.eclipse.modisco.jee.ejbjar.EjbJar21.TransAttributeTypeBase
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TransAttributeTypeBase>

public enum TransAttributeTypeBase
extends java.lang.Enum<TransAttributeTypeBase>

A representation of the literals of the enumeration 'Trans Attribute Type Base', and utility methods for working with them.

See Also:
EjbJar21Package.getTransAttributeTypeBase()
Generated:
Model:
extendedMetaData="name='trans-attributeType_._base'"

Enum Constant Summary
MANDATORY
          The 'Mandatory' literal object.
NEVER
          The 'Never' literal object.
NOT_SUPPORTED
          The 'Not Supported' literal object.
REQUIRED
          The 'Required' literal object.
REQUIRES_NEW
          The 'Requires New' literal object.
SUPPORTS
          The 'Supports' literal object.
 
Field Summary
static int MANDATORY_VALUE
          The 'Mandatory' literal value.
static int NEVER_VALUE
          The 'Never' literal value.
static int NOT_SUPPORTED_VALUE
          The 'Not Supported' literal value.
static int REQUIRED_VALUE
          The 'Required' literal value.
static int REQUIRES_NEW_VALUE
          The 'Requires New' literal value.
static int SUPPORTS_VALUE
          The 'Supports' literal value.
static java.util.List<TransAttributeTypeBase> VALUES
          A public read-only list of all the 'Trans Attribute Type Base' enumerators.
 
Method Summary
static TransAttributeTypeBase get(int value)
          Returns the 'Trans Attribute Type Base' literal with the specified integer value.
static TransAttributeTypeBase get(java.lang.String literal)
          Returns the 'Trans Attribute Type Base' literal with the specified literal value.
static TransAttributeTypeBase getByName(java.lang.String name)
          Returns the 'Trans Attribute Type Base' literal with the specified name.
 java.lang.String getLiteral()
           
 java.lang.String getName()
           
 int getValue()
           
 java.lang.String toString()
          Returns the literal value of the enumerator, which is its string representation.
static TransAttributeTypeBase valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TransAttributeTypeBase[] values()
          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

NOT_SUPPORTED

public static final TransAttributeTypeBase NOT_SUPPORTED
The 'Not Supported' literal object.

See Also:
NOT_SUPPORTED_VALUE
Generated:
Ordered:

SUPPORTS

public static final TransAttributeTypeBase SUPPORTS
The 'Supports' literal object.

See Also:
SUPPORTS_VALUE
Generated:
Ordered:

REQUIRED

public static final TransAttributeTypeBase REQUIRED
The 'Required' literal object.

See Also:
REQUIRED_VALUE
Generated:
Ordered:

REQUIRES_NEW

public static final TransAttributeTypeBase REQUIRES_NEW
The 'Requires New' literal object.

See Also:
REQUIRES_NEW_VALUE
Generated:
Ordered:

MANDATORY

public static final TransAttributeTypeBase MANDATORY
The 'Mandatory' literal object.

See Also:
MANDATORY_VALUE
Generated:
Ordered:

NEVER

public static final TransAttributeTypeBase NEVER
The 'Never' literal object.

See Also:
NEVER_VALUE
Generated:
Ordered:
Field Detail

NOT_SUPPORTED_VALUE

public static final int NOT_SUPPORTED_VALUE
The 'Not Supported' literal value.

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

See Also:
NOT_SUPPORTED, Constant Field Values
Generated:
Model:
name="NotSupported"
Ordered:

SUPPORTS_VALUE

public static final int SUPPORTS_VALUE
The 'Supports' literal value.

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

See Also:
SUPPORTS, Constant Field Values
Generated:
Model:
name="Supports"
Ordered:

REQUIRED_VALUE

public static final int REQUIRED_VALUE
The 'Required' literal value.

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

See Also:
REQUIRED, Constant Field Values
Generated:
Model:
name="Required"
Ordered:

REQUIRES_NEW_VALUE

public static final int REQUIRES_NEW_VALUE
The 'Requires New' literal value.

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

See Also:
REQUIRES_NEW, Constant Field Values
Generated:
Model:
name="RequiresNew"
Ordered:

MANDATORY_VALUE

public static final int MANDATORY_VALUE
The 'Mandatory' literal value.

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

See Also:
MANDATORY, Constant Field Values
Generated:
Model:
name="Mandatory"
Ordered:

NEVER_VALUE

public static final int NEVER_VALUE
The 'Never' literal value.

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

See Also:
NEVER, Constant Field Values
Generated:
Model:
name="Never"
Ordered:

VALUES

public static final java.util.List<TransAttributeTypeBase> VALUES
A public read-only list of all the 'Trans Attribute Type Base' enumerators.

Generated:
Method Detail

values

public static final TransAttributeTypeBase[] values()
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(TransAttributeTypeBase c : TransAttributeTypeBase.values())
        System.out.println(c);

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

valueOf

public static TransAttributeTypeBase valueOf(java.lang.String name)
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 TransAttributeTypeBase get(java.lang.String literal)
Returns the 'Trans Attribute Type Base' literal with the specified literal value.

Generated:

getByName

public static TransAttributeTypeBase getByName(java.lang.String name)
Returns the 'Trans Attribute Type Base' literal with the specified name.

Generated:

get

public static TransAttributeTypeBase get(int value)
Returns the 'Trans Attribute Type Base' literal with the specified integer value.

Generated:

getValue

public int getValue()

Generated:

getName

public java.lang.String getName()

Generated:

getLiteral

public java.lang.String getLiteral()

Generated:

toString

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

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