public enum AttachmentValidationType extends java.lang.Enum<AttachmentValidationType>
| Enum Constant and Description |
|---|
FACE_CLARITY_VALIDATION |
FACE_DETECTION_VALIDATION |
OCR_VALIDATION |
| Modifier and Type | Method and Description |
|---|---|
static AttachmentValidationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttachmentValidationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="ocr-validation") public static final AttachmentValidationType OCR_VALIDATION
@SerializedName(value="face-detection-validation") public static final AttachmentValidationType FACE_DETECTION_VALIDATION
@SerializedName(value="face-clarity-validation") public static final AttachmentValidationType FACE_CLARITY_VALIDATION
public static AttachmentValidationType[] values()
for (AttachmentValidationType c : AttachmentValidationType.values()) System.out.println(c);
public static AttachmentValidationType 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