Enum Class Gender

java.lang.Object
java.lang.Enum<Gender>
org.emau.icmvc.ttp.epix.common.model.enums.Gender
All Implemented Interfaces:
Serializable, Comparable<Gender>, Constable

public enum Gender extends Enum<Gender>
Author:
geidell
  • Enum Constant Details

    • M

      public static final Gender M
    • F

      public static final Gender F
    • X

      public static final Gender X
    • O

      public static final Gender O
    • U

      public static final Gender U
  • Method Details

    • values

      public static Gender[] values()
      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 Gender valueOf(String name)
      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
    • getValue

      public char getValue()
    • fromValue

      public static Gender fromValue(String v)
    • fromValue

      public static Gender fromValue(Character v)
    • fromValue

      public static Gender fromValue(char v)