public static enum Identification.IdentificationType extends Enum<Identification.IdentificationType>
| Enum Constant and Description |
|---|
national_id |
passport |
visa_number |
| Modifier and Type | Method and Description |
|---|---|
static Identification.IdentificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Identification.IdentificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Identification.IdentificationType passport
public static final Identification.IdentificationType national_id
public static final Identification.IdentificationType visa_number
public static Identification.IdentificationType[] values()
for (Identification.IdentificationType c : Identification.IdentificationType.values()) System.out.println(c);
public static Identification.IdentificationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 Dapi. All rights reserved.