de.cau.cs.kieler.kiml.graphviz.dot
Enum CompassPoint

java.lang.Object
  extended by java.lang.Enum<CompassPoint>
      extended by de.cau.cs.kieler.kiml.graphviz.dot.CompassPoint
All Implemented Interfaces:
Serializable, Comparable<CompassPoint>, Enumerator

public enum CompassPoint
extends Enum<CompassPoint>
implements Enumerator

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

See Also:
DotPackage.getCompassPoint()
Rating red
Generated:
This code was automatically generated.
Model element

Enum Constant Summary
EAST
          The 'East' literal object.
NORTH
          The 'North' literal object.
NORTHEAST
          The 'Northeast' literal object.
NORTHWEST
          The 'Northwest' literal object.
SOUTH
          The 'South' literal object.
SOUTHEAST
          The 'Southeast' literal object.
SOUTHWEST
          The 'Southwest' literal object.
WEST
          The 'West' literal object.
 
Field Summary
static int EAST_VALUE
          The 'East' literal value.
static int NORTH_VALUE
          The 'North' literal value.
static int NORTHEAST_VALUE
          The 'Northeast' literal value.
static int NORTHWEST_VALUE
          The 'Northwest' literal value.
static int SOUTH_VALUE
          The 'South' literal value.
static int SOUTHEAST_VALUE
          The 'Southeast' literal value.
static int SOUTHWEST_VALUE
          The 'Southwest' literal value.
static List<CompassPoint> VALUES
          A public read-only list of all the 'Compass Point' enumerators.
static int WEST_VALUE
          The 'West' literal value.
 
Method Summary
static CompassPoint get(int value)
          Returns the 'Compass Point' literal with the specified integer value.
static CompassPoint get(String literal)
          Returns the 'Compass Point' literal with the specified literal value.
static CompassPoint getByName(String name)
          Returns the 'Compass Point' literal with the specified name.
 String getLiteral()
           
 String getName()
           
 int getValue()
           
 String toString()
          Returns the literal value of the enumerator, which is its string representation.
static CompassPoint valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CompassPoint[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NORTH

public static final CompassPoint NORTH
The 'North' literal object.

See Also:
NORTH_VALUE
Generated:
This code was automatically generated.
Ordered

NORTHEAST

public static final CompassPoint NORTHEAST
The 'Northeast' literal object.

See Also:
NORTHEAST_VALUE
Generated:
This code was automatically generated.
Ordered

EAST

public static final CompassPoint EAST
The 'East' literal object.

See Also:
EAST_VALUE
Generated:
This code was automatically generated.
Ordered

SOUTHEAST

public static final CompassPoint SOUTHEAST
The 'Southeast' literal object.

See Also:
SOUTHEAST_VALUE
Generated:
This code was automatically generated.
Ordered

SOUTH

public static final CompassPoint SOUTH
The 'South' literal object.

See Also:
SOUTH_VALUE
Generated:
This code was automatically generated.
Ordered

SOUTHWEST

public static final CompassPoint SOUTHWEST
The 'Southwest' literal object.

See Also:
SOUTHWEST_VALUE
Generated:
This code was automatically generated.
Ordered

WEST

public static final CompassPoint WEST
The 'West' literal object.

See Also:
WEST_VALUE
Generated:
This code was automatically generated.
Ordered

NORTHWEST

public static final CompassPoint NORTHWEST
The 'Northwest' literal object.

See Also:
NORTHWEST_VALUE
Generated:
This code was automatically generated.
Ordered
Field Detail

NORTH_VALUE

public static final int NORTH_VALUE
The 'North' literal value.

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

See Also:
NORTH, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=north
literal=n
Ordered

NORTHEAST_VALUE

public static final int NORTHEAST_VALUE
The 'Northeast' literal value.

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

See Also:
NORTHEAST, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=northeast
literal=ne
Ordered

EAST_VALUE

public static final int EAST_VALUE
The 'East' literal value.

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

See Also:
EAST, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=east
literal=e
Ordered

SOUTHEAST_VALUE

public static final int SOUTHEAST_VALUE
The 'Southeast' literal value.

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

See Also:
SOUTHEAST, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=southeast
literal=se
Ordered

SOUTH_VALUE

public static final int SOUTH_VALUE
The 'South' literal value.

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

See Also:
SOUTH, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=south
literal=s
Ordered

SOUTHWEST_VALUE

public static final int SOUTHWEST_VALUE
The 'Southwest' literal value.

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

See Also:
SOUTHWEST, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=southwest
literal=sw
Ordered

WEST_VALUE

public static final int WEST_VALUE
The 'West' literal value.

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

See Also:
WEST, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=west
literal=w
Ordered

NORTHWEST_VALUE

public static final int NORTHWEST_VALUE
The 'Northwest' literal value.

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

See Also:
NORTHWEST, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=northwest
literal=nw
Ordered

VALUES

public static final List<CompassPoint> VALUES
A public read-only list of all the 'Compass Point' enumerators.

Generated:
This code was automatically generated.
Method Detail

values

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

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

valueOf

public static CompassPoint valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

get

public static CompassPoint get(String literal)
Returns the 'Compass Point' literal with the specified literal value.

Generated:
This code was automatically generated.

getByName

public static CompassPoint getByName(String name)
Returns the 'Compass Point' literal with the specified name.

Generated:
This code was automatically generated.

get

public static CompassPoint get(int value)
Returns the 'Compass Point' literal with the specified integer value.

Generated:
This code was automatically generated.

getValue

public int getValue()

Specified by:
getValue in interface Enumerator
Generated:
This code was automatically generated.

getName

public String getName()

Specified by:
getName in interface Enumerator
Generated:
This code was automatically generated.

getLiteral

public String getLiteral()

Specified by:
getLiteral in interface Enumerator
Generated:
This code was automatically generated.

toString

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

Overrides:
toString in class Enum<CompassPoint>
Generated:
This code was automatically generated.