Enum Class Sex

java.lang.Object
java.lang.Enum<Sex>
org.gbif.api.vocabulary.Sex
All Implemented Interfaces:
Serializable, Comparable<Sex>, Constable

@Deprecated public enum Sex extends Enum<Sex>
Deprecated.
Vocabulary for the sex of an organism.
See Also:
  • 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.
     
    Deprecated.
    Being male and female at the same time.
    Deprecated.
     
    Deprecated.
    No sex determination ever has been observed, for example the Fungi Imperfecti: http://en.wikipedia.org/wiki/Fungi_Imperfecti
  • Method Summary

    Modifier and Type
    Method
    Description
    static Sex
    Deprecated.
    Returns the enum constant of this class with the specified name.
    static Sex[]
    Deprecated.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Enum

    compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

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

    • NONE

      public static final Sex NONE
      Deprecated.
      No sex determination ever has been observed, for example the Fungi Imperfecti: http://en.wikipedia.org/wiki/Fungi_Imperfecti
    • MALE

      public static final Sex MALE
      Deprecated.
    • FEMALE

      public static final Sex FEMALE
      Deprecated.
    • HERMAPHRODITE

      public static final Sex HERMAPHRODITE
      Deprecated.
      Being male and female at the same time.
  • Method Details

    • values

      public static Sex[] values()
      Deprecated.
      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 Sex valueOf(String name)
      Deprecated.
      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