Stay organized with collections Save and categorize content based on your preferences. 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
Public methods
value
String value ()
| Returns |
String | The name of the method on this class to use as the inverse. |
Annotations
Interfaces
Classes
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[]]