public enum SandStoneType extends Enum<SandStoneType>
| Enum Constant and Description |
|---|
CUT |
DEFAULT |
HIEROGLYPHS |
SMOOTH |
| Modifier and Type | Method and Description |
|---|---|
static SandStoneType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SandStoneType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SandStoneType DEFAULT
public static final SandStoneType HIEROGLYPHS
public static final SandStoneType CUT
public static final SandStoneType SMOOTH
public static SandStoneType[] values()
for (SandStoneType c : SandStoneType.values()) System.out.println(c);
public static SandStoneType 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 nullCopyright © 2020. All rights reserved.