|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EdgeOperator>
de.cau.cs.kieler.kiml.graphviz.dot.EdgeOperator
public enum EdgeOperator
A representation of the literals of the enumeration 'Edge Operator', and utility methods for working with them.
DotPackage.getEdgeOperator()
Enum Constant Summary | |
---|---|
DIRECTED
The 'Directed' literal object. |
|
UNDIRECTED
The 'Undirected' literal object. |
Field Summary | |
---|---|
static int |
DIRECTED_VALUE
The 'Directed' literal value. |
static int |
UNDIRECTED_VALUE
The 'Undirected' literal value. |
static List<EdgeOperator> |
VALUES
A public read-only list of all the 'Edge Operator' enumerators. |
Method Summary | |
---|---|
static EdgeOperator |
get(int value)
Returns the 'Edge Operator' literal with the specified integer value. |
static EdgeOperator |
get(String literal)
Returns the 'Edge Operator' literal with the specified literal value. |
static EdgeOperator |
getByName(String name)
Returns the 'Edge Operator' 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 EdgeOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EdgeOperator[] |
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 |
---|
public static final EdgeOperator DIRECTED
DIRECTED_VALUE
public static final EdgeOperator UNDIRECTED
UNDIRECTED_VALUE
Field Detail |
---|
public static final int DIRECTED_VALUE
If the meaning of 'Directed' literal object isn't clear, there really should be more of a description here...
DIRECTED
,
Constant Field Valuesname | = | directed |
literal | = | -> |
public static final int UNDIRECTED_VALUE
If the meaning of 'Undirected' literal object isn't clear, there really should be more of a description here...
UNDIRECTED
,
Constant Field Valuesname | = | undirected |
literal | = | -- |
public static final List<EdgeOperator> VALUES
Method Detail |
---|
public static EdgeOperator[] values()
for (EdgeOperator c : EdgeOperator.values()) System.out.println(c);
public static EdgeOperator valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static EdgeOperator get(String literal)
public static EdgeOperator getByName(String name)
public static EdgeOperator get(int value)
public int getValue()
getValue
in interface Enumerator
public String getName()
getName
in interface Enumerator
public String getLiteral()
getLiteral
in interface Enumerator
public String toString()
toString
in class Enum<EdgeOperator>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |