@Converter public enum ResponseConverter extends Enum<ResponseConverter>
Enum Constant and Description |
---|
INSTANCE |
Modifier and Type | Method and Description |
---|---|
static InputStream |
toInputStream(org.fusesource.camel.component.sap.model.rfc.impl.ResponseImpl structure) |
static OutputStream |
toOutputStream(org.fusesource.camel.component.sap.model.rfc.impl.ResponseImpl structure) |
static org.fusesource.camel.component.sap.model.rfc.Response |
toResponse(byte[] byteArray) |
static org.fusesource.camel.component.sap.model.rfc.Response |
toResponse(InputStream in) |
static org.fusesource.camel.component.sap.model.rfc.Response |
toResponse(String string) |
static String |
toString(org.fusesource.camel.component.sap.model.rfc.impl.ResponseImpl structure) |
static ResponseConverter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResponseConverter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseConverter INSTANCE
public static ResponseConverter[] values()
for (ResponseConverter c : ResponseConverter.values()) System.out.println(c);
public static ResponseConverter 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@Converter public static org.fusesource.camel.component.sap.model.rfc.Response toResponse(String string)
@Converter public static org.fusesource.camel.component.sap.model.rfc.Response toResponse(InputStream in)
@Converter public static org.fusesource.camel.component.sap.model.rfc.Response toResponse(byte[] byteArray)
@Converter public static String toString(org.fusesource.camel.component.sap.model.rfc.impl.ResponseImpl structure)
@Converter public static OutputStream toOutputStream(org.fusesource.camel.component.sap.model.rfc.impl.ResponseImpl structure)
@Converter public static InputStream toInputStream(org.fusesource.camel.component.sap.model.rfc.impl.ResponseImpl structure)
Apache Camel