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