public enum CdrFileType extends Enum<CdrFileType>
| Enum Constant and Description |
|---|
Binary
CDR file is in binary format.
|
Text
CDR file is in text format.
|
| Modifier and Type | Method and Description |
|---|---|
static CdrFileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CdrFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CdrFileType Text
public static final CdrFileType Binary
public static CdrFileType[] values()
for (CdrFileType c : CdrFileType.values()) System.out.println(c);
public static CdrFileType 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 null