Enum AnonymizationMode
- java.lang.Object
-
- java.lang.Enum<AnonymizationMode>
-
- com.microblink.entities.recognizers.blinkid.generic.AnonymizationMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AnonymizationMode>
public enum AnonymizationMode extends java.lang.Enum<AnonymizationMode>
Defines level of anonymization performed on recognizer result.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FullResult
This mode is combination ofImageOnly
andResultFieldsOnly
modes.ImageOnly
Full document image is anonymized with black boxes covering sensitive data.None
Anonymization will not be performed.ResultFieldsOnly
Result fields containing sensitive data are removed from result.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AnonymizationMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AnonymizationMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final AnonymizationMode None
Anonymization will not be performed.
-
ImageOnly
public static final AnonymizationMode ImageOnly
Full document image is anonymized with black boxes covering sensitive data.
-
ResultFieldsOnly
public static final AnonymizationMode ResultFieldsOnly
Result fields containing sensitive data are removed from result.
-
FullResult
public static final AnonymizationMode FullResult
This mode is combination ofImageOnly
andResultFieldsOnly
modes.
-
-
Method Detail
-
values
public static AnonymizationMode[] 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 (AnonymizationMode c : AnonymizationMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnonymizationMode valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-