public static enum GameTreePanel.Size extends java.lang.Enum<GameTreePanel.Size>
Modifier and Type | Method and Description |
---|---|
static GameTreePanel.Size |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GameTreePanel.Size[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GameTreePanel.Size LARGE
public static final GameTreePanel.Size NORMAL
public static final GameTreePanel.Size SMALL
public static final GameTreePanel.Size TINY
public static GameTreePanel.Size[] values()
for (GameTreePanel.Size c : GameTreePanel.Size.values()) System.out.println(c);
public static GameTreePanel.Size 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