Generators

org.topcased.modeler.diagramconfigurator
Enum EdgeContainerType

java.lang.Object
  extended by java.lang.Enum<EdgeContainerType>
      extended by org.topcased.modeler.diagramconfigurator.EdgeContainerType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EdgeContainerType>, Enumerator

public enum EdgeContainerType
extends java.lang.Enum<EdgeContainerType>
implements Enumerator

A representation of the literals of the enumeration 'Edge Container Type', and utility methods for working with them.

See Also:
DiagramconfiguratorPackage.getEdgeContainerType()
** Generated **
Model:

Enum Constant Summary
DIAGRAM_LITERAL
          The 'DIAGRAM' literal object.
NONE_LITERAL
          The 'NONE' literal object.
SOURCE_CONTAINER_LITERAL
          The 'SOURCE CONTAINER' literal object.
SOURCE_LITERAL
          The 'SOURCE' literal object.
TARGET_CONTAINER_LITERAL
          The 'TARGET CONTAINER' literal object.
TARGET_LITERAL
          The 'TARGET' literal object.
 
Field Summary
static int DIAGRAM
          The 'DIAGRAM' literal value.
static int NONE
          The 'NONE' literal value.
static int SOURCE
          The 'SOURCE' literal value.
static int SOURCE_CONTAINER
          The 'SOURCE CONTAINER' literal value.
static int TARGET
          The 'TARGET' literal value.
static int TARGET_CONTAINER
          The 'TARGET CONTAINER' literal value.
static java.util.List<EdgeContainerType> VALUES
          A public read-only list of all the 'Edge Container Type' enumerators.
 
Method Summary
static EdgeContainerType get(int value)
          Returns the 'Edge Container Type' literal with the specified integer value.
static EdgeContainerType get(java.lang.String literal)
          Returns the 'Edge Container Type' literal with the specified literal value.
static EdgeContainerType getByName(java.lang.String name)
          Returns the 'Edge Container Type' 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 EdgeContainerType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EdgeContainerType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE_LITERAL

public static final EdgeContainerType NONE_LITERAL
The 'NONE' literal object.

See Also:
NONE
** Generated **
Ordered:

SOURCE_LITERAL

public static final EdgeContainerType SOURCE_LITERAL
The 'SOURCE' literal object.

See Also:
SOURCE
** Generated **
Ordered:

SOURCE_CONTAINER_LITERAL

public static final EdgeContainerType SOURCE_CONTAINER_LITERAL
The 'SOURCE CONTAINER' literal object.

See Also:
SOURCE_CONTAINER
** Generated **
Ordered:

DIAGRAM_LITERAL

public static final EdgeContainerType DIAGRAM_LITERAL
The 'DIAGRAM' literal object.

See Also:
DIAGRAM
** Generated **
Ordered:

TARGET_LITERAL

public static final EdgeContainerType TARGET_LITERAL
The 'TARGET' literal object.

See Also:
TARGET
** Generated **
Ordered:

TARGET_CONTAINER_LITERAL

public static final EdgeContainerType TARGET_CONTAINER_LITERAL
The 'TARGET CONTAINER' literal object.

See Also:
TARGET_CONTAINER
** Generated **
Ordered:
Field Detail

NONE

public static final int NONE
The 'NONE' literal value.

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

See Also:
NONE_LITERAL, Constant Field Values
** Generated **
Ordered:
Model:
annotation="http://www.topcased.org/documentation documentation='The Edge has no model association'"

SOURCE

public static final int SOURCE
The 'SOURCE' literal value.

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

See Also:
SOURCE_LITERAL, Constant Field Values
** Generated **
Ordered:
Model:
annotation="http://www.topcased.org/documentation documentation='The Source Node is the container of the Edge'"

SOURCE_CONTAINER

public static final int SOURCE_CONTAINER
The 'SOURCE CONTAINER' literal value.

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

See Also:
SOURCE_CONTAINER_LITERAL, Constant Field Values
** Generated **
Ordered:
Model:
annotation="http://www.topcased.org/documentation documentation='The Source Container Node is the container of the Edge'"

DIAGRAM

public static final int DIAGRAM
The 'DIAGRAM' literal value.

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

See Also:
DIAGRAM_LITERAL, Constant Field Values
** Generated **
Ordered:
Model:
annotation="http://www.topcased.org/documentation documentation='The Model object associated with the current Diagram is the container of the Edge'"

TARGET

public static final int TARGET
The 'TARGET' literal value.

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

See Also:
TARGET_LITERAL, Constant Field Values
** Generated **
Ordered:
Model:
annotation="http://www.topcased.org/documentation documentation='The Target Node is the container of the Edge'"

TARGET_CONTAINER

public static final int TARGET_CONTAINER
The 'TARGET CONTAINER' literal value.

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

See Also:
TARGET_CONTAINER_LITERAL, Constant Field Values
** Generated **
Ordered:
Model:
annotation="http://www.topcased.org/documentation documentation='The Target Container Node is the container of the Edge'"

VALUES

public static final java.util.List<EdgeContainerType> VALUES
A public read-only list of all the 'Edge Container Type' enumerators.

** Generated **
Method Detail

values

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

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

valueOf

public static EdgeContainerType 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 EdgeContainerType get(java.lang.String literal)
Returns the 'Edge Container Type' literal with the specified literal value.

** Generated **

getByName

public static EdgeContainerType getByName(java.lang.String name)
Returns the 'Edge Container Type' literal with the specified name.

** Generated **

get

public static EdgeContainerType get(int value)
Returns the 'Edge Container Type' literal with the specified integer value.

** Generated **

getValue

public int getValue()

Specified by:
getValue in interface Enumerator
** Generated **

getName

public java.lang.String getName()

Specified by:
getName in interface Enumerator
** Generated **

getLiteral

public java.lang.String getLiteral()

Specified by:
getLiteral in interface Enumerator
** 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<EdgeContainerType>
** Generated **

Generators

Copyright (c) 2005 TOPCASED Contributors 2005 - 2007. All rights reserved.