AI-generated Key Takeaways
-
LabelValueis a Parcelable class representing a label and its corresponding value. -
It has a constructor that takes a String for the label name and a String for the value.
-
You can retrieve the label name using
getLabel()and the value usinggetValue(). -
The class includes a static final
CREATORfield for implementing theParcelableinterface.
Parcelable representing label value.
Inherited Constant Summary
Field Summary
| public static final Creator<LabelValue> | CREATOR |
Public Constructor Summary
|
LabelValue(String label,
String
value)
Constructs a label to describe wallet object's custom properties.
|
Public Method Summary
| String |
getLabel()
Returns the name of the label.
|
| String |
getValue()
Returns the value of the label.
|
| void |
writeToParcel(Parcel dest, int
flags)
|
Inherited Method Summary
Fields
public static final Creator<LabelValue> CREATOR
Public Constructors
Public Methods
public String getLabel ()
Returns the name of the label.
public String getValue ()
Returns the value of the label.