Enum BarcodeDialogFormat
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum BarcodeDialogFormat extends Enum<BarcodeDialogFormat>
The barcode text format dialog.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CODE
Show the barcode value only.
TYPE_AND_CODE
Show the barcode format with value.
-
Method Summary
Modifier and Type Method Description final BarcodeDialogFormat
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<BarcodeDialogFormat>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final BarcodeDialogFormat 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<BarcodeDialogFormat> 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.
-
-
-
-