パッケージ jp.co.osstech.libjeid

Enum Class CardType

java.lang.Object
java.lang.Enum<CardType>
jp.co.osstech.libjeid.CardType
すべての実装されたインタフェース:
Serializable, Comparable<CardType>, Constable

public enum CardType extends Enum<CardType>
カード種別
  • ネストされたクラスの概要

    クラスから継承されたネストされたクラス/インタフェース java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • 列挙型定数の概要

    列挙定数
    列挙型定数
    説明
    運転免許証
    パスポート
    個人番号カード
    住基カード
    在留カード
    不明なカード
  • フィールドの概要

    フィールド
    修飾子とタイプ
    フィールド
    説明
    final int
     
  • メソッドの概要

    修飾子とタイプ
    メソッド
    説明
    static CardType
    Returns the enum constant of this class with the specified name.
    static CardType[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    クラスから継承されたメソッド java.lang.Enum

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

    クラスから継承されたメソッド java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • 列挙型定数の詳細

    • UNKNOWN

      public static final CardType UNKNOWN
      不明なカード
    • IN

      public static final CardType IN
      個人番号カード
    • JUKI

      public static final CardType JUKI
      住基カード
    • DL

      public static final CardType DL
      運転免許証
    • EP

      public static final CardType EP
      パスポート
    • RC

      public static final CardType RC
      在留カード
  • フィールド詳細

    • code

      public final int code
  • メソッドの詳細

    • values

      public static CardType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      戻り値:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CardType 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.)
      パラメータ:
      name - 返される列挙型定数の名前。
      戻り値:
      指定した名前の列挙型定数
      例外:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 引数がnullの場合