|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SandstoneType>
org.bukkit.SandstoneType
public enum SandstoneType
Represents the three different types of Sandstone
| Enum Constant Summary | |
|---|---|
CRACKED
|
|
GLYPHED
|
|
SMOOTH
|
|
| Method Summary | |
|---|---|
static SandstoneType |
getByData(byte data)
Gets the type of sandstone with the given data value |
byte |
getData()
Gets the associated data value representing this type of sandstone |
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're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final SandstoneType CRACKED
public static final SandstoneType GLYPHED
public static final SandstoneType SMOOTH
| Method Detail |
|---|
public static final 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 namepublic byte getData()
public static SandstoneType getByData(byte data)
data - Data value to fetch
SandstoneType representing the given value, or null if
it doesn't exist
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||