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