|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<NeatoModel>
de.cau.cs.kieler.kiml.graphviz.dot.transform.NeatoModel
public enum NeatoModel
Definition of Neato distance computation models.
Enum Constant Summary | |
---|---|
CIRCUIT
Use the circuit resistance model. |
|
SHORTPATH
Use length of the shortest path. |
|
SUBSET
Use the subset model. |
Method Summary | |
---|---|
String |
literal()
Return the literal value as understood by Graphviz. |
static NeatoModel |
parse(String string)
Parse the given string into a Neato model, ignoring case. |
static NeatoModel |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static NeatoModel[] |
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, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final NeatoModel SHORTPATH
public static final NeatoModel CIRCUIT
public static final NeatoModel SUBSET
Method Detail |
---|
public static NeatoModel[] values()
for (NeatoModel c : NeatoModel.values()) System.out.println(c);
public static NeatoModel 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 NeatoModel parse(String string)
string
- a string
public String literal()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |