public enum GraphTransformation extends Enum<GraphTransformation>
Enum Constant and Description |
---|
CIRCULAR |
GRAPH_2D |
GRAPH_3D |
POLAR |
XY |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static GraphTransformation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphTransformation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphTransformation GRAPH_3D
public static final GraphTransformation GRAPH_2D
public static final GraphTransformation XY
public static final GraphTransformation POLAR
public static final GraphTransformation CIRCULAR
public static GraphTransformation[] values()
for (GraphTransformation c : GraphTransformation.values()) System.out.println(c);
public static GraphTransformation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic final String toString()
toString
in class Enum<GraphTransformation>
Copyright © 2010–2023 Francesco Kriegel. All rights reserved.