com.mxgraph.analysis
Enum mxGraphProperties.GraphType
java.lang.Object
java.lang.Enum<mxGraphProperties.GraphType>
com.mxgraph.analysis.mxGraphProperties.GraphType
- All Implemented Interfaces:
- Serializable, Comparable<mxGraphProperties.GraphType>
- Enclosing class:
- mxGraphProperties
public static enum mxGraphProperties.GraphType
- extends Enum<mxGraphProperties.GraphType>
FULLY_CONNECTED
public static final mxGraphProperties.GraphType FULLY_CONNECTED
RANDOM_CONNECTED
public static final mxGraphProperties.GraphType RANDOM_CONNECTED
TREE
public static final mxGraphProperties.GraphType TREE
FLOW
public static final mxGraphProperties.GraphType FLOW
NULL
public static final mxGraphProperties.GraphType NULL
COMPLETE
public static final mxGraphProperties.GraphType COMPLETE
NREGULAR
public static final mxGraphProperties.GraphType NREGULAR
GRID
public static final mxGraphProperties.GraphType GRID
BIPARTITE
public static final mxGraphProperties.GraphType BIPARTITE
COMPLETE_BIPARTITE
public static final mxGraphProperties.GraphType COMPLETE_BIPARTITE
BASIC_TREE
public static final mxGraphProperties.GraphType BASIC_TREE
SIMPLE_RANDOM
public static final mxGraphProperties.GraphType SIMPLE_RANDOM
BFS_DIR
public static final mxGraphProperties.GraphType BFS_DIR
BFS_UNDIR
public static final mxGraphProperties.GraphType BFS_UNDIR
DFS_DIR
public static final mxGraphProperties.GraphType DFS_DIR
DFS_UNDIR
public static final mxGraphProperties.GraphType DFS_UNDIR
DIJKSTRA
public static final mxGraphProperties.GraphType DIJKSTRA
MAKE_TREE_DIRECTED
public static final mxGraphProperties.GraphType MAKE_TREE_DIRECTED
SIMPLE_RANDOM_TREE
public static final mxGraphProperties.GraphType SIMPLE_RANDOM_TREE
KNIGHT_TOUR
public static final mxGraphProperties.GraphType KNIGHT_TOUR
KNIGHT
public static final mxGraphProperties.GraphType KNIGHT
GET_ADJ_MATRIX
public static final mxGraphProperties.GraphType GET_ADJ_MATRIX
FROM_ADJ_MATRIX
public static final mxGraphProperties.GraphType FROM_ADJ_MATRIX
PETERSEN
public static final mxGraphProperties.GraphType PETERSEN
WHEEL
public static final mxGraphProperties.GraphType WHEEL
STAR
public static final mxGraphProperties.GraphType STAR
PATH
public static final mxGraphProperties.GraphType PATH
FRIENDSHIP_WINDMILL
public static final mxGraphProperties.GraphType FRIENDSHIP_WINDMILL
FULL_WINDMILL
public static final mxGraphProperties.GraphType FULL_WINDMILL
INDEGREE
public static final mxGraphProperties.GraphType INDEGREE
OUTDEGREE
public static final mxGraphProperties.GraphType OUTDEGREE
IS_CUT_VERTEX
public static final mxGraphProperties.GraphType IS_CUT_VERTEX
IS_CUT_EDGE
public static final mxGraphProperties.GraphType IS_CUT_EDGE
RESET_STYLE
public static final mxGraphProperties.GraphType RESET_STYLE
KING
public static final mxGraphProperties.GraphType KING
BELLMAN_FORD
public static final mxGraphProperties.GraphType BELLMAN_FORD
values
public static mxGraphProperties.GraphType[] 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 (mxGraphProperties.GraphType c : mxGraphProperties.GraphType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static mxGraphProperties.GraphType 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
Copyright (c) 2010 Gaudenz Alder. All rights reserved.