org.eclipse.modisco.jee.ejbjar.EjbJar31
Enum MessageDestinationUsageTypeBase

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

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

A representation of the literals of the enumeration 'Message Destination Usage Type Base', and utility methods for working with them.

See Also:
EjbJar31Package.getMessageDestinationUsageTypeBase()
Generated:
Model:
extendedMetaData="name='message-destination-usageType_._base'"

Enum Constant Summary
CONSUMES
          The 'Consumes' literal object.
CONSUMES_PRODUCES
          The 'Consumes Produces' literal object.
PRODUCES
          The 'Produces' literal object.
 
Field Summary
static int CONSUMES_PRODUCES_VALUE
          The 'Consumes Produces' literal value.
static int CONSUMES_VALUE
          The 'Consumes' literal value.
static int PRODUCES_VALUE
          The 'Produces' literal value.
static java.util.List<MessageDestinationUsageTypeBase> VALUES
          A public read-only list of all the 'Message Destination Usage Type Base' enumerators.
 
Method Summary
static MessageDestinationUsageTypeBase get(int value)
          Returns the 'Message Destination Usage Type Base' literal with the specified integer value.
static MessageDestinationUsageTypeBase get(java.lang.String literal)
          Returns the 'Message Destination Usage Type Base' literal with the specified literal value.
static MessageDestinationUsageTypeBase getByName(java.lang.String name)
          Returns the 'Message Destination Usage 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 MessageDestinationUsageTypeBase valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MessageDestinationUsageTypeBase[] 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

CONSUMES

public static final MessageDestinationUsageTypeBase CONSUMES
The 'Consumes' literal object.

See Also:
CONSUMES_VALUE
Generated:
Ordered:

PRODUCES

public static final MessageDestinationUsageTypeBase PRODUCES
The 'Produces' literal object.

See Also:
PRODUCES_VALUE
Generated:
Ordered:

CONSUMES_PRODUCES

public static final MessageDestinationUsageTypeBase CONSUMES_PRODUCES
The 'Consumes Produces' literal object.

See Also:
CONSUMES_PRODUCES_VALUE
Generated:
Ordered:
Field Detail

CONSUMES_VALUE

public static final int CONSUMES_VALUE
The 'Consumes' literal value.

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

See Also:
CONSUMES, Constant Field Values
Generated:
Model:
name="Consumes"
Ordered:

PRODUCES_VALUE

public static final int PRODUCES_VALUE
The 'Produces' literal value.

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

See Also:
PRODUCES, Constant Field Values
Generated:
Model:
name="Produces"
Ordered:

CONSUMES_PRODUCES_VALUE

public static final int CONSUMES_PRODUCES_VALUE
The 'Consumes Produces' literal value.

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

See Also:
CONSUMES_PRODUCES, Constant Field Values
Generated:
Model:
name="ConsumesProduces"
Ordered:

VALUES

public static final java.util.List<MessageDestinationUsageTypeBase> VALUES
A public read-only list of all the 'Message Destination Usage Type Base' enumerators.

Generated:
Method Detail

values

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

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

valueOf

public static MessageDestinationUsageTypeBase 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 MessageDestinationUsageTypeBase get(java.lang.String literal)
Returns the 'Message Destination Usage Type Base' literal with the specified literal value.

Generated:

getByName

public static MessageDestinationUsageTypeBase getByName(java.lang.String name)
Returns the 'Message Destination Usage Type Base' literal with the specified name.

Generated:

get

public static MessageDestinationUsageTypeBase get(int value)
Returns the 'Message Destination Usage 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<MessageDestinationUsageTypeBase>
Generated: