public static enum Jt400Configuration.Format extends Enum<Jt400Configuration.Format>
Enum Constant and Description |
---|
binary
Using
byte[] for transferring data |
text
Using
String for transferring data |
Modifier and Type | Method and Description |
---|---|
static Jt400Configuration.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Jt400Configuration.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Jt400Configuration.Format text
String
for transferring datapublic static final Jt400Configuration.Format binary
byte[]
for transferring datapublic static Jt400Configuration.Format[] values()
for (Jt400Configuration.Format c : Jt400Configuration.Format.values()) System.out.println(c);
public static Jt400Configuration.Format 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 nullApache Camel