Package com.ranull.graves.type
Enum Class Grave.StorageMode
- All Implemented Interfaces:
Serializable
,Comparable<Grave.StorageMode>
,java.lang.constant.Constable
- Enclosing class:
Grave
Enum for defining different storage modes for the grave.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Grave.StorageMode
Returns the enum constant of this class with the specified name.static Grave.StorageMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXACT
Storage mode that requires an exact match.In this mode, the storage or inventory system will look for an exact match of items or data.
-
COMPACT
Storage mode that uses a compact representation.In this mode, the storage or inventory system will use a more compact representation for items or data, possibly combining or optimizing how items are stored.
-
CHESTSORT
Storage mode designed for sorting chests.In this mode, the storage or inventory system will utilize features specific to sorting chests and organizing items within them in a sorted manner. Requires the plugin ChestSort.
-
-
Constructor Details
-
StorageMode
private StorageMode()
-
-
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
-