public enum DocumentType extends java.lang.Enum<DocumentType>
| Modifier and Type | Method and Description |
|---|---|
static DocumentType |
toEnum(java.lang.String value)
Converts a string to a match type enum.
|
static DocumentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DocumentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentType PASSPORT
public static final DocumentType SSN
public static DocumentType[] values()
for (DocumentType c : DocumentType.values()) System.out.println(c);
public static DocumentType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static DocumentType toEnum(java.lang.String value)
value - the value to convert to an enum