public enum AFPBasicDataType extends java.lang.Enum<AFPBasicDataType>
| Enum Constant and Description |
|---|
BITS
Bit string.
|
CHAR
Character string, which may consist of any code points
|
CODE
Architected constant.
|
SBIN
Signed binary.
|
UBIN
Unsigned binary.
|
UNDF
Undefined type.
|
| Modifier and Type | Method and Description |
|---|---|
static AFPBasicDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AFPBasicDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AFPBasicDataType CODE
public static final AFPBasicDataType CHAR
public static final AFPBasicDataType BITS
public static final AFPBasicDataType UBIN
public static final AFPBasicDataType SBIN
public static final AFPBasicDataType UNDF
public static AFPBasicDataType[] values()
for (AFPBasicDataType c : AFPBasicDataType.values()) System.out.println(c);
public static AFPBasicDataType 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