| Package | Description |
|---|---|
| org.mule.api.transformer |
Contains the interfaces for transformers and exceptions for the Transformer API.
|
| org.mule.transformer |
Provides the default transformer base implementations for Mule including compression and encryption support.
|
| org.mule.transformer.graph | |
| org.mule.transformer.simple |
Basic transformer implementations.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DiscoverableTransformer
A interface to denote that a transformer is discoverable.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDiscoverableTransformer |
class |
CompositeConverter
Composes many converters to behave as a single one.
|
| Modifier and Type | Method and Description |
|---|---|
LinkedList<Converter> |
CompositeConverter.getConverters() |
| Constructor and Description |
|---|
CompositeConverter(Converter... converters)
Create a new conversion chain using the specified converters
|
| Modifier and Type | Method and Description |
|---|---|
List<Converter> |
CompositeConverterFilter.filter(List<Converter> converters,
DataType<?> source,
DataType<?> result) |
List<Converter> |
ConverterFilter.filter(List<Converter> converters,
DataType<?> source,
DataType<?> result)
Filters a list of converters
|
List<Converter> |
TransformationLengthConverterFilter.filter(List<Converter> converters,
DataType<?> source,
DataType<?> result) |
List<Converter> |
PriorityWeightingConverterFilter.filter(List<Converter> converters,
DataType<?> source,
DataType<?> result) |
List<Converter> |
NameConverterFilter.filter(List<Converter> converters,
DataType<?> source,
DataType<?> result) |
List<Converter> |
TransformationGraphLookupStrategy.lookupConverters(DataType<?> source,
DataType<?> target)
Looks for
Converter to convert from the source to the target
data types. |
| Modifier and Type | Method and Description |
|---|---|
void |
TransformationGraph.addConverter(Converter converter) |
void |
TransformationGraph.removeConverter(Converter converter) |
| Modifier and Type | Method and Description |
|---|---|
List<Converter> |
CompositeConverterFilter.filter(List<Converter> converters,
DataType<?> source,
DataType<?> result) |
List<Converter> |
ConverterFilter.filter(List<Converter> converters,
DataType<?> source,
DataType<?> result)
Filters a list of converters
|
List<Converter> |
TransformationLengthConverterFilter.filter(List<Converter> converters,
DataType<?> source,
DataType<?> result) |
List<Converter> |
PriorityWeightingConverterFilter.filter(List<Converter> converters,
DataType<?> source,
DataType<?> result) |
List<Converter> |
NameConverterFilter.filter(List<Converter> converters,
DataType<?> source,
DataType<?> result) |
| Modifier and Type | Class and Description |
|---|---|
class |
BeanToMap
Conversts a simple bean object to a Map.
|
class |
ByteArrayToMuleMessage
TODO
|
class |
ByteArrayToObject
ByteArrayToObject works in the same way as
ByteArrayToSerializable but checks if the byte array is a
serialised object and if not will return a String created from the bytes as the
returnType on the transformer. |
class |
ByteArrayToSerializable
ByteArrayToSerializable converts a serialized object to its object
representation |
class |
DataHandlerToInputStreamTransformer |
class |
MapToBean
Creates and object of type
AbstractTransformer.getReturnClass() and populates values of a
Map as bean properties on the object. |
class |
NumberToString
NumberToString converts a Number to a String. |
class |
ObjectArrayToString
ObjectArrayToString transformer is the opposite of
StringToObjectArray - it simply converts Object[] to a String in which each
element is separated by a configurable delimiter (default is a space). |
class |
ObjectToByteArray
ObjectToByteArray converts serilaizable object to a byte array but
treats java.lang.String differently by converting to bytes using
the String.getBytrs() method. |
class |
ObjectToInputStream
ObjectToInputStream converts Serializable objects to an InputStream
but treats java.lang.String, byte[] and
org.mule.api.transport.OutputHandler differently by using their
byte[] content rather thqn Serializing them. |
class |
ObjectToOutputHandler
ObjectToOutputHandler converts a byte array into a String. |
class |
ObjectToString
ObjectToString transformer is useful for debugging. |
class |
PropertyEditorTextToValueTransformer
PropertyEditorTextToValueTransformer adapts a PropertyEditor
instance allowing it to be used to transform from a String to another type in Mule |
class |
PropertyEditorValueToTextTransformer
PropertyEditorValueToTextTransformer adapts a PropertyEditor
instance allowing it to be used to transform from a specific type to a String. |
class |
SerializableToByteArray
SerializableToByteArray converts a serializable object or a String
to a byte array. |
class |
StringToBoolean
ByteArrayToSerializable converts a serialized object to its object
representation |
class |
StringToNumber
StringToNumber converts a String to a Number. |
Copyright © 2003–2015 MuleSoft, Inc.. All rights reserved.