Package org.bukkit.block.structure
Enum Class UsageMode
- All Implemented Interfaces:
Serializable
,Comparable<UsageMode>
,Constable
Represents how a
Structure
can be used.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
-
Enum Constant Details
-
SAVE
The mode used when saving a structure. -
LOAD
The mode used when loading a structure. -
CORNER
Used when saving a structure for easy size calculation. When using this mode, the Structure name MUST match the name in the second Structure block that is inSAVE
. -
DATA
Used to run specific custom functions, which can only be used for certain Structures. The structure block is removed after this function completes. The data tags (functions) can be found on the wiki.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-