Enum Gs1Handling
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum Gs1Handling extends Enum<Gs1Handling>
GS1 handling mode.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONENo special handling for GS1-formatted results. Special (FNC1) characters are stripped. Equivalent to
assumeGS1=falsein ZXing for Code128 results.PARSEGS1 messages are converted to machine-readable format per the GS1 spec (the special character is converted to ASCII
\x1D). Message is not validated. This is the default. The implied 01 AI key is prepended to DataBar results. Equivalent toassumeGS1=truein ZXing for Code128 results.VALIDATE_STRUCTURESame as PARSE. Additionally, messages containing unknown AI keys, or containing values of incorrect format for known keys, are not returned.
DECODE_STRUCTURESame as VALIDATE_STRUCTURE, except that GS1 strings are converted to the human-readable format, instead (with parentheses used to wrap AI keys, e.g.
(01)123456789). The\x1Dcharacter is never used in this representation.VALIDATE_FULLFull validation including linting and checksums. This is the most strict mode.
DECODE_FULLSame as DECODE_STRUCTURE, but with full validation.
-
Method Summary
Modifier and Type Method Description final Gs1HandlingvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<Gs1Handling>values()Returns an array containing the constants of this enum type, in the order they're declared. final IntegergetValue()-
-
Method Detail
-
valueOf
final Gs1Handling valueOf(String value)
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.)
-
values
final Array<Gs1Handling> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-