Enum BookMeta.Generation

    • 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 name
        NullPointerException - if the argument is null