public enum BarcodeShape extends Enum<BarcodeShape>
BarcodeShape class.
Modifier and Type | Method and Description |
---|---|
static BarcodeShape |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BarcodeShape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BarcodeShape NONE
public static final BarcodeShape SQUARE
public static final BarcodeShape RECTANGLE
public static BarcodeShape[] values()
for (BarcodeShape c : BarcodeShape.values()) System.out.println(c);
public static BarcodeShape valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2010–2021. All rights reserved.