Package org.bukkit.inventory.meta
Enum BookMeta.Generation
- java.lang.Object
-
- java.lang.Enum<BookMeta.Generation>
-
- org.bukkit.inventory.meta.BookMeta.Generation
-
- All Implemented Interfaces:
Serializable
,Comparable<BookMeta.Generation>
- Enclosing interface:
- BookMeta
public static enum BookMeta.Generation extends Enum<BookMeta.Generation>
Represents the generation (or level of copying) of a written book
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COPY_OF_COPY
Book that was copied from a copy of an original.COPY_OF_ORIGINAL
Book that was copied from an original.ORIGINAL
Book written into a book-and-quill.TATTERED
Unused; unobtainable by players.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BookMeta.Generation
valueOf(String name)
Returns the enum constant of this type with the specified name.static BookMeta.Generation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORIGINAL
public static final BookMeta.Generation ORIGINAL
Book written into a book-and-quill. Can be copied. (Default value)
-
COPY_OF_ORIGINAL
public static final BookMeta.Generation COPY_OF_ORIGINAL
Book that was copied from an original. Can be copied.
-
COPY_OF_COPY
public static final BookMeta.Generation COPY_OF_COPY
Book that was copied from a copy of an original. Can't be copied.
-
TATTERED
public static final BookMeta.Generation TATTERED
Unused; unobtainable by players. Can't be copied.
-
-
Method Detail
-
values
public static BookMeta.Generation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BookMeta.Generation c : BookMeta.Generation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BookMeta.Generation valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-