@Deprecated public static enum ProfileConfig.BOOKLAND_FORMAT extends java.lang.Enum<ProfileConfig.BOOKLAND_FORMAT>
Example Usage: BOOKLAND_FORMAT.DEFAULT;
| Enum Constant and Description |
|---|
DEFAULT
Deprecated.
Default bookland format configured on device
|
ISBN_10
Deprecated.
978 reported in 10 digit mode
|
ISBN_13
Deprecated.
978/979 transmitted as EAN13 as per 2007 ISBN-13 protocol
|
| Modifier and Type | Method and Description |
|---|---|
static ProfileConfig.BOOKLAND_FORMAT |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.BOOKLAND_FORMAT[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.BOOKLAND_FORMAT DEFAULT
public static final ProfileConfig.BOOKLAND_FORMAT ISBN_10
public static final ProfileConfig.BOOKLAND_FORMAT ISBN_13
public static ProfileConfig.BOOKLAND_FORMAT[] values()
for (ProfileConfig.BOOKLAND_FORMAT c : ProfileConfig.BOOKLAND_FORMAT.values()) System.out.println(c);
public static ProfileConfig.BOOKLAND_FORMAT valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null