Package org.bukkit.block.structure
Enum Class UsageMode
- All Implemented Interfaces:
- Serializable,- Comparable<UsageMode>,- Constable
Represents how a 
Structure can be used.- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method Summary
- 
Enum Constant Details- 
SAVEThe mode used when saving a structure.
- 
LOADThe mode used when loading a structure.
- 
CORNERUsed 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.
- 
DATAUsed 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- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-