| Enum Constant and Description |
|---|
DOCUMENT_BACK |
DOCUMENT_FRONT |
FACE_PHOTO |
FACE_VIDEO |
| Modifier and Type | Method and Description |
|---|---|
static FileName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="document_front") public static final FileName DOCUMENT_FRONT
@SerializedName(value="document_back") public static final FileName DOCUMENT_BACK
@SerializedName(value="face_photo") public static final FileName FACE_PHOTO
@SerializedName(value="face_video") public static final FileName FACE_VIDEO
public static FileName[] values()
for (FileName c : FileName.values()) System.out.println(c);
public static FileName 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 null