Generators

org.topcased.modeler.diagramconfigurator
Enum LayoutType

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

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

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

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

Enum Constant Summary
CLASS_LAYOUT_LITERAL
          The 'Class Layout' literal object.
MULTI_PORT_LAYOUT_LITERAL
          The 'Multi Port Layout' literal object.
PORT_LAYOUT_LITERAL
          The 'Port Layout' literal object.
TOOLBAR_LAYOUT_LITERAL
          The 'Toolbar Layout' literal object.
XY_LAYOUT_LITERAL
          The 'XY Layout' literal object.
 
Field Summary
static int CLASS_LAYOUT
          The 'Class Layout' literal value.
static int MULTI_PORT_LAYOUT
          The 'Multi Port Layout' literal value.
static int PORT_LAYOUT
          The 'Port Layout' literal value.
static int TOOLBAR_LAYOUT
          The 'Toolbar Layout' literal value.
static java.util.List<LayoutType> VALUES
          A public read-only list of all the 'Layout Type' enumerators.
static int XY_LAYOUT
          The 'XY Layout' literal value.
 
Method Summary
static LayoutType get(int value)
          Returns the 'Layout Type' literal with the specified integer value.
static LayoutType get(java.lang.String literal)
          Returns the 'Layout Type' literal with the specified literal value.
static LayoutType getByName(java.lang.String name)
          Returns the 'Layout 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 LayoutType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LayoutType[] 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

XY_LAYOUT_LITERAL

public static final LayoutType XY_LAYOUT_LITERAL
The 'XY Layout' literal object.

See Also:
XY_LAYOUT
** Generated **
Ordered:

CLASS_LAYOUT_LITERAL

public static final LayoutType CLASS_LAYOUT_LITERAL
The 'Class Layout' literal object.

See Also:
CLASS_LAYOUT
** Generated **
Ordered:

TOOLBAR_LAYOUT_LITERAL

public static final LayoutType TOOLBAR_LAYOUT_LITERAL
The 'Toolbar Layout' literal object.

See Also:
TOOLBAR_LAYOUT
** Generated **
Ordered:

PORT_LAYOUT_LITERAL

public static final LayoutType PORT_LAYOUT_LITERAL
The 'Port Layout' literal object.

See Also:
PORT_LAYOUT
** Generated **
Ordered:

MULTI_PORT_LAYOUT_LITERAL

public static final LayoutType MULTI_PORT_LAYOUT_LITERAL
The 'Multi Port Layout' literal object.

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

XY_LAYOUT

public static final int XY_LAYOUT
The 'XY Layout' literal value.

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

See Also:
XY_LAYOUT_LITERAL, Constant Field Values
** Generated **
Ordered:
Model:
name="XYLayout"

CLASS_LAYOUT

public static final int CLASS_LAYOUT
The 'Class Layout' literal value.

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

See Also:
CLASS_LAYOUT_LITERAL, Constant Field Values
** Generated **
Ordered:
Model:
name="ClassLayout"

TOOLBAR_LAYOUT

public static final int TOOLBAR_LAYOUT
The 'Toolbar Layout' literal value.

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

See Also:
TOOLBAR_LAYOUT_LITERAL, Constant Field Values
** Generated **
Ordered:
Model:
name="ToolbarLayout"

PORT_LAYOUT

public static final int PORT_LAYOUT
The 'Port Layout' literal value.

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

See Also:
PORT_LAYOUT_LITERAL, Constant Field Values
** Generated **
Ordered:
Model:
name="PortLayout"

MULTI_PORT_LAYOUT

public static final int MULTI_PORT_LAYOUT
The 'Multi Port Layout' literal value.

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

See Also:
MULTI_PORT_LAYOUT_LITERAL, Constant Field Values
** Generated **
Ordered:
Model:
name="MultiPortLayout"

VALUES

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

** Generated **
Method Detail

values

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

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

valueOf

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

** Generated **

getByName

public static LayoutType getByName(java.lang.String name)
Returns the 'Layout Type' literal with the specified name.

** Generated **

get

public static LayoutType get(int value)
Returns the 'Layout 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<LayoutType>
** Generated **

Generators

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