BidirectionalTypeConverter
public abstract class BidirectionalTypeConverter<T, V> extends TypeConverter
| java.lang.Object | ||
| ↳ | androidx.core.animation.TypeConverter | |
| ↳ | androidx.core.animation.BidirectionalTypeConverter |
Abstract base class used convert type T to another type V and back again. This is necessary when the value types of in animation are different from the property type. BidirectionalTypeConverter is needed when only the final value for the animation is supplied to animators.
| Parameters | |
|---|---|
<T> |
type T. It can be converted from and to type V |
<V> |
type V. It can be converted from and to type T |
| See also | |
|---|---|
setConverter |
Summary
Public constructors |
|---|
BidirectionalTypeConverter(Constructor for creating a bidirectional type converter instance that can convert type T to another type V and back again. |
Public methods |
|
|---|---|
abstract @NonNull T |
convertBack(@NonNull V value)Does a conversion from the target type back to the source type. |
@NonNull BidirectionalTypeConverter<V, T> |
invert()Returns the inverse of this converter, where the from and to classes are reversed. |
Inherited methods |
|---|
Public constructors
BidirectionalTypeConverter
public BidirectionalTypeConverter(
@NonNull Class<T> fromClass,
@NonNull Class<V> toClass
)
Constructor for creating a bidirectional type converter instance that can convert type T to another type V and back again.
Public methods
convertBack
public abstract @NonNull T convertBack(@NonNull V value)
Does a conversion from the target type back to the source type. The subclass must implement this when a TypeConverter is used in animations and current values will need to be read for an animation.
| Parameters | |
|---|---|
@NonNull V value |
The Object to convert. |
| Returns | |
|---|---|
@NonNull T |
A value of type T, converted from |
invert
public @NonNull BidirectionalTypeConverter<V, T> invert()
Returns the inverse of this converter, where the from and to classes are reversed. The inverted converter uses this convert to call convertBack for convert calls and convert for convertBack calls.
| Returns | |
|---|---|
@NonNull BidirectionalTypeConverter<V, T> |
The inverse of this converter, where the from and to classes are reversed. |