Package org.bukkit

Enum CropState

All Implemented Interfaces:
Serializable, Comparable<CropState>, Constable

public enum CropState
extends Enum<CropState>
Represents the different growth states of crops
  • Enum Constant Details

  • Method Details

    • values

      public static CropState[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static CropState 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
    • getData

      @Deprecated public byte getData()
      Deprecated.
      Magic value
      Gets the associated data value representing this growth state
      Returns:
      A byte containing the data value of this growth state
    • getByData

      @Deprecated @Nullable public static CropState getByData​(byte data)
      Deprecated.
      Magic value
      Gets the CropState with the given data value
      Parameters:
      data - Data value to fetch
      Returns:
      The CropState representing the given value, or null if it doesn't exist