Uses of Class
org.apache.camel.spi.DataType
-
Packages that use DataType Package Description org.apache.camel The core Camel API.org.apache.camel.spi Service Provider Interfaces used by the Camel runtime which are plugin strategies. -
-
Uses of DataType in org.apache.camel
Methods in org.apache.camel with parameters of type DataType Modifier and Type Method Description TransformerCamelContext. resolveTransformer(DataType from, DataType to)Resolve a transformer given from/to data type.ValidatorCamelContext. resolveValidator(DataType type)Resolve a validator given from/to data type. -
Uses of DataType in org.apache.camel.spi
Methods in org.apache.camel.spi that return DataType Modifier and Type Method Description DataTypeDataTypeAware. getDataType()Get the data type of the message.DataTypeTransformer. getFrom()Get 'from' data type.DataTypeContract. getInputType()DataTypeContract. getOutputType()DataTypeTransformer. getTo()Get 'to' data type.DataTypeValidator. getType()Get 'from' data type.Methods in org.apache.camel.spi with parameters of type DataType Modifier and Type Method Description booleanTransformerRegistry. isDynamic(DataType from, DataType to)Whether the givenTransformeris stored in the dynamic cachebooleanValidatorRegistry. isDynamic(DataType type)Whether the givenValidatoris stored in the dynamic cachebooleanTransformerRegistry. isStatic(DataType from, DataType to)Whether the given transformer is stored in the static cachebooleanValidatorRegistry. isStatic(DataType type)Whether the givenValidatoris stored in the static cachevoidDataTypeAware. setBody(Object body, DataType type)Set the message body with data type.voidDataTypeAware. setDataType(DataType type)Set the data type of the message.abstract voidTransformer. transform(Message message, DataType from, DataType to)Perform data transformation with specified from/to type.abstract voidValidator. validate(Message message, DataType type)Perform data validation with specified type.
-