Modifier and Type | Field and Description |
---|---|
private int |
side
The integer that represents the side of the field.
|
Modifier and Type | Method and Description |
---|---|
int |
getSide()
Gets the integer side of the field.
|
static Alliance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Alliance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
private final int side
public static Alliance[] values()
for (Alliance c : Alliance.values()) System.out.println(c);
public static Alliance 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 int getSide()
side