Enum Class EidSpecialStatus

java.lang.Object
java.lang.Enum<EidSpecialStatus>
be.gaudry.model.eid.EidSpecialStatus
All Implemented Interfaces:
Serializable, Comparable<EidSpecialStatus>, Constable

public enum EidSpecialStatus extends Enum<EidSpecialStatus>
EID version 4.3 Values present on existing cards, but not used anymore specialstatus="NO_STATUS" 0: No status 1 White cane (blind people) 2: Extended minority 3: White cane + extended minority 4: Yellow cane (partially sighted people) 5: Yellow cane + extended minority
Author:
Steph GAUDRY
  • Enum Constant Details

  • Method Details

    • values

      public static EidSpecialStatus[] 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 EidSpecialStatus 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
    • isWhitecane

      public boolean isWhitecane()
      Returns:
      the whitecane
    • isYellowcane

      public boolean isYellowcane()
      Returns:
      the yellowcane
    • isExtendedminority

      public boolean isExtendedminority()
      Returns:
      the extendedminority
    • get

      public static EidSpecialStatus get(boolean whitecane, boolean yellowcane, boolean extendedminority)
    • get

      public static EidSpecialStatus get(be.belgium.eid.objects.IDData beIDData)