Enum JsonBarcodesExtensionFilter
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum JsonBarcodesExtensionFilter extends Enum<JsonBarcodesExtensionFilter>
A filter for extended EAN and UPC barcodes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_FILTER
EAN and UPC codes are not filtered. Both are returned regardless if they have an extension or not.
ONLY_WITH_EXTENSIONS
Only EAN and UPC codes with extensions are returned.
ONLY_WITHOUT_EXTENSIONS
Only EAN and UPC codes without extensions are returned.
-
Method Summary
Modifier and Type Method Description final JsonBarcodesExtensionFilter
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<JsonBarcodesExtensionFilter>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final JsonBarcodesExtensionFilter 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<JsonBarcodesExtensionFilter> 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.
-
-
-
-