Interface CommonSteps.ConvertToStep<F>
- Type Parameters:
F
- type of the from-end observable
- All Superinterfaces:
Step
- All Known Subinterfaces:
ListOneWaySteps.ListOneWayConvertStep<F,
,THIS> ListTwoWaySteps.ListTwoWayConvertToStep<F,
,THIS> SetOneWaySteps.SetOneWayConvertStep<F,
,THIS> SetTwoWaySteps.SetTwoWayConvertToStep<F,
,THIS> ValueOneWaySteps.ValueOneWayConvertStep<F,
,THIS> ValueTwoWaySteps.ValueTwoWayConvertToStep<F,
THIS>
- Enclosing class:
- CommonSteps
Step for converting between from- and to-types.
- Restriction:
-
Method Summary
Modifier and TypeMethodDescription<T> Step
convertTo
(IConverter<? super F, ? extends T> converter) Sets the from-to direction converter on the resulting binding.Makes the resulting binding use default converters between the two observables.
-
Method Details
-
convertTo
Sets the from-to direction converter on the resulting binding. The defines the type of the to-end observable.- Type Parameters:
T
- type of the to-end observable- Parameters:
converter
- the converter to set- Returns:
- next step
- See Also:
-
defaultConvert
Step defaultConvert()Makes the resulting binding use default converters between the two observables. Because of this an observable of any type may be used.For example, converters to and from strings and numeric types are available.
However, the
IObservableValue.getValueType()
orIObservableCollection.getElementType()
of both the observables must be non-null.See
DataBindingContext
for information about types that have default converters and how they work.- Returns:
- next step
- See Also:
-