public static enum Layer.GridLayout extends Enum<Layer.GridLayout>
Enum Constant and Description |
---|
hexagonal |
rectangular |
triangular |
Modifier and Type | Field and Description |
---|---|
private String |
somPakName |
Modifier and Type | Method and Description |
---|---|
String |
getSomPakName() |
static Layer.GridLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Layer.GridLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Layer.GridLayout triangular
public static final Layer.GridLayout rectangular
public static final Layer.GridLayout hexagonal
private String somPakName
public static Layer.GridLayout[] values()
for (Layer.GridLayout c : Layer.GridLayout.values()) System.out.println(c);
public static Layer.GridLayout valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getSomPakName()