public enum DataFormat extends Enum<DataFormat>
| Enum Constant and Description | 
|---|
| AsciiASCII data. | 
| HexHexadecimal data. Expressed as a 2-character ASCII hex sequence. Example: The word 'Zebra' would be expressed as "5A65627261" in Hex. | 
| Modifier and Type | Method and Description | 
|---|---|
| static DataFormat | fromString(String text)Returns the DataFormat enumeration for the specified text or null if no enumeration matches the specified text. | 
| static DataFormat | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static DataFormat[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DataFormat Ascii
public static final DataFormat Hex
Hex.public static DataFormat[] values()
for (DataFormat c : DataFormat.values()) System.out.println(c);
public static DataFormat 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 nullpublic static DataFormat fromString(String text)
text - text representation of the specified DataFormat enumeration member.
				© 2016 ZIH Corp. All Rights Reserved.