Enum Constant and Description |
---|
DISCOVERY |
FITNESS |
MODEL |
PERFORMANCE |
PRECISION |
Modifier and Type | Method and Description |
---|---|
NetViewFactory |
getViewFactory() |
java.lang.String |
toString() |
static ViewMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ViewMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewMode MODEL
public static final ViewMode DISCOVERY
public static final ViewMode PERFORMANCE
public static final ViewMode FITNESS
public static final ViewMode PRECISION
public static ViewMode[] values()
for (ViewMode c : ViewMode.values()) System.out.println(c);
public static ViewMode 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 NetViewFactory getViewFactory()
public java.lang.String toString()
toString
in class java.lang.Enum<ViewMode>