InverseMethod
public
abstract
@interface
InverseMethod
implements
Annotation
android.databinding.InverseMethod |
The InverseMethod annotation may be applied to any method used in two-way data binding to declare the method used to invert the call when going from the View's attribute value to the bound data value. The inverse method must take the same number of parameters and only the final parameter type may differ. The final parameter of this method must match the return value of its inverse and the return value of this method must match the final parameter of the its inverse.
@InverseMethod("convertIntToString")
public static int convertStringToInt(String value) {
try {
return Integer.parseInt(value);
} catch (NumberFormatException e) {
return -1;
}
}
public static String convertIntToString(int value) {
return String.valueOf(value);
}
Summary
Inherited methods | |
---|---|
From
interface
java.lang.annotation.Annotation
|
Public methods
Annotations
Interfaces
Classes
- BaseObservable
- CallbackRegistry
- CallbackRegistry.NotifierCallback
- DataBindingUtil
- ListChangeRegistry
- MapChangeRegistry
- MergedDataBinderMapper
- Observable.OnPropertyChangedCallback
- ObservableArrayList
- ObservableArrayMap
- ObservableBoolean
- ObservableByte
- ObservableChar
- ObservableDouble
- ObservableField
- ObservableFloat
- ObservableInt
- ObservableList.OnListChangedCallback
- ObservableLong
- ObservableMap.OnMapChangedCallback
- ObservableParcelable
- ObservableShort
- OnRebindCallback
- PropertyChangeRegistry
- ViewDataBinding
- ViewStubProxy