Package com.mxgraph.io.graphml
Enum mxGraphMlKey.keyForValues
- java.lang.Object
-
- java.lang.Enum<mxGraphMlKey.keyForValues>
-
- com.mxgraph.io.graphml.mxGraphMlKey.keyForValues
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<mxGraphMlKey.keyForValues>
- Enclosing class:
- mxGraphMlKey
public static enum mxGraphMlKey.keyForValues extends java.lang.Enum<mxGraphMlKey.keyForValues>
Possibles values for the keyFor Attribute
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static mxGraphMlKey.keyForValues
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static mxGraphMlKey.keyForValues[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GRAPH
public static final mxGraphMlKey.keyForValues GRAPH
-
NODE
public static final mxGraphMlKey.keyForValues NODE
-
EDGE
public static final mxGraphMlKey.keyForValues EDGE
-
HYPEREDGE
public static final mxGraphMlKey.keyForValues HYPEREDGE
-
PORT
public static final mxGraphMlKey.keyForValues PORT
-
ENDPOINT
public static final mxGraphMlKey.keyForValues ENDPOINT
-
ALL
public static final mxGraphMlKey.keyForValues ALL
-
-
Method Detail
-
values
public static mxGraphMlKey.keyForValues[] 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 (mxGraphMlKey.keyForValues c : mxGraphMlKey.keyForValues.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static mxGraphMlKey.keyForValues 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 namejava.lang.NullPointerException
- if the argument is null
-
-