Package org.bukkit

Enum WorldType

    • Enum Constant Detail

      • NORMAL

        public static final WorldType NORMAL
      • VERSION_1_1

        public static final WorldType VERSION_1_1
      • LARGE_BIOMES

        public static final WorldType LARGE_BIOMES
      • AMPLIFIED

        public static final WorldType AMPLIFIED
      • CUSTOMIZED

        public static final WorldType CUSTOMIZED
      • BUFFET

        public static final WorldType BUFFET
    • Method Detail

      • values

        public static WorldType[] 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 (WorldType c : WorldType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WorldType 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
      • getName

        @NotNull
        public String getName()
        Gets the name of this WorldType
        Returns:
        Name of this type
      • getByName

        @Nullable
        public static WorldType getByName​(@NotNull
                                          String name)
        Gets a WorldType by its name
        Parameters:
        name - Name of the WorldType to get
        Returns:
        Requested WorldType, or null if not found