Stay organized with collections
Save and categorize content based on your preferences.
ViewDebug.FlagToString
public
static
abstract
@interface
ViewDebug.FlagToString
implements
Annotation
android.view.ViewDebug.FlagToString
|
Defines a mapping from a flag to a String. Such a mapping can be used
in an @ExportedProperty to provide more meaningful values to the end user.
Summary
Public methods |
int
|
equals()
The value to compare to the result of:
original value & mask() .
|
int
|
mask()
The mask to apply to the original value.
|
String
|
name()
The String to use in place of the original int value.
|
boolean
|
outputIf()
Indicates whether to output the flag when the test is true,
or false.
|
Public methods
equals
public int equals ()
The value to compare to the result of:
original value & mask()
.
Returns |
int |
An arbitrary value. |
mask
public int mask ()
The mask to apply to the original value.
Returns |
int |
An arbitrary int value. |
name
public String name ()
The String to use in place of the original int value.
Returns |
String |
An arbitrary non-null String. |
outputIf
public boolean outputIf ()
Indicates whether to output the flag when the test is true,
or false. Defaults to true.
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."],[],[],null,["# ViewDebug.FlagToString\n\nAdded in [API level 4](/guide/topics/manifest/uses-sdk-element#ApiLevels) \nSummary: [Methods](#pubmethods) \\| [Inherited Methods](#inhmethods) \n\nViewDebug.FlagToString\n======================\n\n*** ** * ** ***\n\n[Kotlin](/reference/kotlin/android/view/ViewDebug.FlagToString \"View this page in Kotlin\") \\|Java\n\n\n`\npublic\nstatic\n\nabstract\n@interface\nViewDebug.FlagToString\n`\n\n\n`\n\n\nimplements\n\n`[Annotation](/reference/java/lang/annotation/Annotation)`\n\n\n`\n\n|-------------------------------------|\n| android.view.ViewDebug.FlagToString |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nDefines a mapping from a flag to a String. Such a mapping can be used\nin an @ExportedProperty to provide more meaningful values to the end user. \n**See also:**\n\n- [ViewDebug.ExportedProperty](/reference/android/view/ViewDebug.ExportedProperty)\n\nSummary\n-------\n\n| ### Public methods ||\n|------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` int` | ` `[equals](/reference/android/view/ViewDebug.FlagToString#equals())`() ` The value to compare to the result of: `original value & `[mask()](/reference/android/view/ViewDebug.FlagToString#mask()). |\n| ` int` | ` `[mask](/reference/android/view/ViewDebug.FlagToString#mask())`() ` The mask to apply to the original value. |\n| ` `[String](/reference/java/lang/String) | ` `[name](/reference/android/view/ViewDebug.FlagToString#name())`() ` The String to use in place of the original int value. |\n| ` boolean` | ` `[outputIf](/reference/android/view/ViewDebug.FlagToString#outputIf())`() ` Indicates whether to output the flag when the test is true, or false. |\n\n| ### Inherited methods |\n|-----------------------|---|\n| From interface ` `[java.lang.annotation.Annotation](/reference/java/lang/annotation/Annotation)` ` |-------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ` abstract `[Class](/reference/java/lang/Class)`\u003c? extends `[Annotation](/reference/java/lang/annotation/Annotation)`\u003e` | ` `[annotationType](/reference/java/lang/annotation/Annotation#annotationType())`() ` Returns the annotation interface of this annotation. | | ` abstract boolean` | ` `[equals](/reference/java/lang/annotation/Annotation#equals(java.lang.Object))`(`[Object](/reference/java/lang/Object)` obj) ` Returns true if the specified object represents an annotation that is logically equivalent to this one. | | ` abstract int` | ` `[hashCode](/reference/java/lang/annotation/Annotation#hashCode())`() ` Returns the hash code of this annotation. | | ` abstract `[String](/reference/java/lang/String) | ` `[toString](/reference/java/lang/annotation/Annotation#toString())`() ` Returns a string representation of this annotation. | ||\n\nPublic methods\n--------------\n\n### equals\n\nAdded in [API level 4](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic int equals ()\n```\n\nThe value to compare to the result of:\n`original value & `[mask()](/reference/android/view/ViewDebug.FlagToString#mask()).\n\n\u003cbr /\u003e\n\n| Returns ||\n|-------|----------------------------|\n| `int` | An arbitrary value. \u003cbr /\u003e |\n\n### mask\n\nAdded in [API level 4](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic int mask ()\n```\n\nThe mask to apply to the original value.\n\n\u003cbr /\u003e\n\n| Returns ||\n|-------|--------------------------------|\n| `int` | An arbitrary int value. \u003cbr /\u003e |\n\n### name\n\nAdded in [API level 4](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic String name ()\n```\n\nThe String to use in place of the original int value.\n\n\u003cbr /\u003e\n\n| Returns ||\n|---------------------------------------|--------------------------------------|\n| [String](/reference/java/lang/String) | An arbitrary non-null String. \u003cbr /\u003e |\n\n### outputIf\n\nAdded in [API level 4](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic boolean outputIf ()\n```\n\nIndicates whether to output the flag when the test is true,\nor false. Defaults to true.\n\n\u003cbr /\u003e\n\n| Returns ||\n|-----------|--------|\n| `boolean` | \u003cbr /\u003e |"]]