public static enum Main.ViewerMode extends java.lang.Enum<Main.ViewerMode>
Enum Constant and Description |
---|
BackView |
BottomView |
FrontView |
RightView |
SideView |
TopView |
Modifier and Type | Method and Description |
---|---|
static Main.ViewerMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Main.ViewerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Main.ViewerMode FrontView
public static final Main.ViewerMode TopView
public static final Main.ViewerMode SideView
public static final Main.ViewerMode BottomView
public static final Main.ViewerMode RightView
public static final Main.ViewerMode BackView
public static Main.ViewerMode[] values()
for (Main.ViewerMode c : Main.ViewerMode.values()) System.out.println(c);
public static Main.ViewerMode 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 null