public enum Visualization extends java.lang.Enum<Visualization>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Visualization |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Visualization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Visualization TreeMap
public static final Visualization Matrix
public static final Visualization Chart
public static Visualization[] values()
for (Visualization c : Visualization.values()) System.out.println(c);
public static Visualization valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<Visualization>