Modifier and Type | Method and Description |
---|---|
<S,T> Converter<S,T> |
SearchableBinder.findConverter(Class<S> source,
Class<T> target)
Resolve a Converter with the given input and output classes.
|
<S,T> Converter<S,T> |
BasicBinder.findConverter(Class<S> input,
Class<T> output)
Resolve a Converter with the given input and output classes.
|
<S,T> Converter<S,T> |
SearchableBinder.findConverter(Class<S> source,
Class<T> target,
Class<? extends Annotation> qualifier)
Resolve a Converter with the given input and output classes.
|
<S,T> Converter<S,T> |
BasicBinder.findConverter(Class<S> source,
Class<T> target,
Class<? extends Annotation> qualifier)
Resolve a Converter with the given input and output classes.
|
<S,T> Converter<S,T> |
SearchableBinder.findConverter(ConverterKey<S,T> key)
Resolve a Converter with the given input and output classes.
|
<S,T> Converter<S,T> |
BasicBinder.findConverter(ConverterKey<S,T> key)
Resolve a Converter with the given input and output classes.
|
Modifier and Type | Method and Description |
---|---|
<S,T> void |
RegisterableBinder.registerConverter(Class<S> sourceClass,
Class<T> targetClass,
Converter<S,T> converter)
Register a Converter with the given input and output classes.
|
<S,T> void |
BasicBinder.registerConverter(Class<S> input,
Class<T> output,
Converter<S,T> converter)
Register a Converter with the given input and output classes.
|
<S,T> void |
RegisterableBinder.registerConverter(Class<S> sourceClass,
Class<T> targetClass,
Converter<S,T> converter,
Class<? extends Annotation> qualifier)
Register a Converter with the given input and output classes.
|
<S,T> void |
BasicBinder.registerConverter(Class<S> input,
Class<T> output,
Converter<S,T> converter,
Class<? extends Annotation> qualifier)
Register a Converter with the given input and output classes.
|
<S,T> void |
RegisterableBinder.registerConverter(ConverterKey<S,T> key,
Converter<S,T> converter)
Register a Converter with the given input and output classes.
|
<S,T> void |
BasicBinder.registerConverter(ConverterKey<S,T> key,
Converter<S,T> converter)
Register a Converter with the given input and output classes.
|
Modifier and Type | Method and Description |
---|---|
<S,T> Converter<S,T> |
BinderExtension.findConverter(Class<S> source,
Class<T> target)
Resolve a Converter with the given input and output classes.
|
<S,T> Converter<S,T> |
BinderExtension.findConverter(Class<S> source,
Class<T> target,
Class<? extends Annotation> qualifier)
Resolve a Converter with the given input and output classes.
|
<S,T> Converter<S,T> |
BinderExtension.findConverter(ConverterKey<S,T> key)
Resolve a Converter with the given input and output classes.
|
Modifier and Type | Method and Description |
---|---|
<S,T> void |
BinderExtension.registerConverter(Class<S> sourceClass,
Class<T> targetClass,
Converter<S,T> converter)
Register a Converter with the given input and output classes.
|
<S,T> void |
BinderExtension.registerConverter(Class<S> sourceClass,
Class<T> targetClass,
Converter<S,T> converter,
Class<? extends Annotation> qualifier)
Register a Converter with the given input and output classes.
|
<S,T> void |
BinderExtension.registerConverter(ConverterKey<S,T> key,
Converter<S,T> converter)
Register a Converter with the given input and output classes.
|
Modifier and Type | Class and Description |
---|---|
class |
FromUnmarshallerConverter<S,T>
A converter that wraps an unmarshaller to convert the unmarshaller for type S into a converter for type T to type S
|
class |
ToMarshallerConverter<S,T>
A converter that wraps a marshaller to convert the marshaller for type S into a converter for type S to type S
|
Constructor and Description |
---|
ConverterToMarshaller(Converter<S,T> converter)
Create a new instance for the given converter
|
Constructor and Description |
---|
ConverterFromUnmarshaller(Converter<T,S> converter)
Create a new instance for the given converter
|
Copyright © 2010–2018 Jadira Systems. All rights reserved.