TypeConverter
public
abstract
class
TypeConverter
extends Object
java.lang.Object
|
↳ |
androidx.core.animation.TypeConverter<T, V>
|
Abstract base class used convert type T to another type V. This
is necessary when the value types of in animation are different
from the property type.
Summary
Public constructors |
TypeConverter(Class<T> fromClass, Class<V> toClass)
Constructor for creating a type converter instance that converts type T to another type V.
|
Public methods |
abstract
V
|
convert(T value)
Converts a value from one type to another.
|
Inherited methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public constructors
TypeConverter
public TypeConverter (Class<T> fromClass,
Class<V> toClass)
Constructor for creating a type converter instance that converts type T to another type V.
Parameters |
fromClass |
Class : class of the value type that feeds into the converter |
toClass |
Class : class of the value type expected out of the converter
|
Public methods
convert
public abstract V convert (T value)
Converts a value from one type to another.
Parameters |
value |
T : The Object to convert. |
Returns |
V |
A value of type V, converted from value .
|