Package com.onfido.model
Enum ReportName
- java.lang.Object
-
- java.lang.Enum<ReportName>
-
- com.onfido.model.ReportName
-
- All Implemented Interfaces:
Serializable,Comparable<ReportName>
public enum ReportName extends Enum<ReportName>
Gets or Sets report_name
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classReportName.Adapter
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReportNamefromValue(String value)StringgetValue()StringtoString()static voidvalidateJsonElement(com.google.gson.JsonElement jsonElement)static ReportNamevalueOf(String name)Returns the enum constant of this type with the specified name.static ReportName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENT
public static final ReportName DOCUMENT
-
DOCUMENT_VIDEO
public static final ReportName DOCUMENT_VIDEO
-
DOCUMENT_VIDEO_WITH_ADDRESS_INFORMATION
public static final ReportName DOCUMENT_VIDEO_WITH_ADDRESS_INFORMATION
-
DOCUMENT_WITH_ADDRESS_INFORMATION
public static final ReportName DOCUMENT_WITH_ADDRESS_INFORMATION
-
DOCUMENT_WITH_DRIVING_LICENCE_INFORMATION
public static final ReportName DOCUMENT_WITH_DRIVING_LICENCE_INFORMATION
-
DOCUMENT_WITH_DRIVER_VERIFICATION
public static final ReportName DOCUMENT_WITH_DRIVER_VERIFICATION
-
FACIAL_SIMILARITY_PHOTO
public static final ReportName FACIAL_SIMILARITY_PHOTO
-
FACIAL_SIMILARITY_PHOTO_FULLY_AUTO
public static final ReportName FACIAL_SIMILARITY_PHOTO_FULLY_AUTO
-
FACIAL_SIMILARITY_VIDEO
public static final ReportName FACIAL_SIMILARITY_VIDEO
-
FACIAL_SIMILARITY_MOTION
public static final ReportName FACIAL_SIMILARITY_MOTION
-
KNOWN_FACES
public static final ReportName KNOWN_FACES
-
IDENTITY_ENHANCED
public static final ReportName IDENTITY_ENHANCED
-
WATCHLIST_AML
public static final ReportName WATCHLIST_AML
-
WATCHLIST_ENHANCED
public static final ReportName WATCHLIST_ENHANCED
-
WATCHLIST_STANDARD
public static final ReportName WATCHLIST_STANDARD
-
WATCHLIST_PEPS_ONLY
public static final ReportName WATCHLIST_PEPS_ONLY
-
WATCHLIST_SANCTIONS_ONLY
public static final ReportName WATCHLIST_SANCTIONS_ONLY
-
PROOF_OF_ADDRESS
public static final ReportName PROOF_OF_ADDRESS
-
US_DRIVING_LICENCE
public static final ReportName US_DRIVING_LICENCE
-
DEVICE_INTELLIGENCE
public static final ReportName DEVICE_INTELLIGENCE
-
INDIA_PAN
public static final ReportName INDIA_PAN
-
UNKNOWN_DEFAULT_OPEN_API
public static final ReportName UNKNOWN_DEFAULT_OPEN_API
-
-
Method Detail
-
values
public static ReportName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ReportName c : ReportName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReportName valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ReportName>
-
fromValue
public static ReportName fromValue(String value)
-
validateJsonElement
public static void validateJsonElement(com.google.gson.JsonElement jsonElement) throws IOException- Throws:
IOException
-
-