Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -503,8 +503,8 @@ public enum DocumentType {
/** Passport card */
PASSPORT_CARD(172),

/** Passport resident card */
PASSPORT_RESIDENT_CARD(173),
/** Permanent resident card */
PERMANENT_RESIDENT_CARD(173),

/** Personal identification verification */
PERSONAL_IDENTIFICATION_VERIFICATION(174),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
import com.google.gson.stream.JsonWriter;
import java.io.IOException;

/** Gets or Sets GraphicFieldType */
/**
* Enumeration contains identifiers determining the logical type of the graphic data obtained while
* reading document filling fields or barcodes
*/
@JsonAdapter(GraphicFieldType.Adapter.class)
public enum GraphicFieldType {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import com.google.gson.stream.JsonWriter;
import java.io.IOException;

/** Gets or Sets LogLevel */
/** Enumeration contains identificators which determinate the level of logs detalization */
@JsonAdapter(LogLevel.Adapter.class)
public enum LogLevel {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import com.google.gson.stream.JsonWriter;
import java.io.IOException;

/** Gets or Sets MDLDeviceEngagement */
/** Enumeration contains possible data engagement methods with mDL */
@JsonAdapter(MDLDeviceEngagement.Adapter.class)
public enum MDLDeviceEngagement {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import com.google.gson.stream.JsonWriter;
import java.io.IOException;

/** Gets or Sets MDLDeviceRetrieval */
/** Enumeration contains possible data retrieval methods from mDL */
@JsonAdapter(MDLDeviceRetrieval.Adapter.class)
public enum MDLDeviceRetrieval {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
import com.google.gson.stream.JsonWriter;
import java.io.IOException;

/** Gets or Sets MeasureSystem */
/**
* Enumeration contains a pool of constants that identify the system for measuring distances and
* weight
*/
@JsonAdapter(MeasureSystem.Adapter.class)
public enum MeasureSystem {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import com.google.gson.stream.JsonWriter;
import java.io.IOException;

/** Gets or Sets ProcessingStatus */
/** Enumeration contains a set of constants that define scanning process completion status */
@JsonAdapter(ProcessingStatus.Adapter.class)
public enum ProcessingStatus {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
import com.google.gson.stream.JsonWriter;
import java.io.IOException;

/** Gets or Sets Result */
/**
* Enumeration contains a pool of constants which determine the type of resulting data formed during
* the data scanning and processing cycle and passed to the user application
*/
@JsonAdapter(Result.Adapter.class)
public enum Result {

Expand Down