Package org.bukkit

Enum Class CropState

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

@Deprecated(forRemoval=true, since="1.13") public enum CropState extends Enum<CropState>
Deprecated, for removal: This API element is subject to removal in a future version.
Represents the different growth states of crops
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    First growth stage
    Deprecated, for removal: This API element is subject to removal in a future version.
    Fourth growth stage
    Deprecated, for removal: This API element is subject to removal in a future version.
    Ripe stage
    Deprecated, for removal: This API element is subject to removal in a future version.
    State when first seeded
    Deprecated, for removal: This API element is subject to removal in a future version.
    Third growth stage
    Deprecated, for removal: This API element is subject to removal in a future version.
    Fifth growth stage
    Deprecated, for removal: This API element is subject to removal in a future version.
    Second growth stage
    Deprecated, for removal: This API element is subject to removal in a future version.
    Almost ripe stage
  • Method Summary

    Modifier and Type
    Method
    Description
    getByData(byte data)
    Deprecated.
    Magic value
    byte
    Deprecated.
    Magic value
    static CropState
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns the enum constant of this class with the specified name.
    static CropState[]
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • SEEDED

      public static final CropState SEEDED
      Deprecated, for removal: This API element is subject to removal in a future version.
      State when first seeded
    • GERMINATED

      public static final CropState GERMINATED
      Deprecated, for removal: This API element is subject to removal in a future version.
      First growth stage
    • VERY_SMALL

      public static final CropState VERY_SMALL
      Deprecated, for removal: This API element is subject to removal in a future version.
      Second growth stage
    • SMALL

      public static final CropState SMALL
      Deprecated, for removal: This API element is subject to removal in a future version.
      Third growth stage
    • MEDIUM

      public static final CropState MEDIUM
      Deprecated, for removal: This API element is subject to removal in a future version.
      Fourth growth stage
    • TALL

      public static final CropState TALL
      Deprecated, for removal: This API element is subject to removal in a future version.
      Fifth growth stage
    • VERY_TALL

      public static final CropState VERY_TALL
      Deprecated, for removal: This API element is subject to removal in a future version.
      Almost ripe stage
    • RIPE

      public static final CropState RIPE
      Deprecated, for removal: This API element is subject to removal in a future version.
      Ripe stage
  • Method Details

    • values

      public static CropState[] values()
      Deprecated, for removal: This API element is subject to removal in a future version.
      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

      public static CropState valueOf(String name)
      Deprecated, for removal: This API element is subject to removal in a future version.
      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 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 @Nullable 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