Stay organized with collections
Save and categorize content based on your preferences.
ClassData
interface ClassData
Data about the class to be instrumented.
Summary
Public properties |
List<String> |
List of the annotations the class has.
|
String |
Fully qualified name of the class.
|
List<String> |
List of all the interfaces that this class or a superclass of this class implements.
|
List<String> |
List of all the super classes that this class or a super class of this class extends.
|
Public properties
interfaces
val interfaces: List<String>
List of all the interfaces that this class or a superclass of this class implements.
superClasses
val superClasses: List<String>
List of all the super classes that this class or a super class of this class extends.
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,["# ClassData\n=========\n\n\n```\ninterface ClassData\n```\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nData about the class to be instrumented.\n\nSummary\n-------\n\n| ### Public properties ||\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`\u003c`[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`\u003e` | [classAnnotations](/reference/tools/gradle-api/8.0/com/android/build/api/instrumentation/ClassData#classAnnotations()) List of the annotations the class has. |\n| [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | [className](/reference/tools/gradle-api/8.0/com/android/build/api/instrumentation/ClassData#className()) Fully qualified name of the class. |\n| [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`\u003c`[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`\u003e` | [interfaces](/reference/tools/gradle-api/8.0/com/android/build/api/instrumentation/ClassData#interfaces()) List of all the interfaces that this class or a superclass of this class implements. |\n| [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`\u003c`[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`\u003e` | [superClasses](/reference/tools/gradle-api/8.0/com/android/build/api/instrumentation/ClassData#superClasses()) List of all the super classes that this class or a super class of this class extends. |\n\nPublic properties\n-----------------\n\n### classAnnotations\n\n```\nval classAnnotations: List\u003cString\u003e\n```\n\nList of the annotations the class has. \n\n### className\n\n```\nval className: String\n```\n\nFully qualified name of the class. \n\n### interfaces\n\n```\nval interfaces: List\u003cString\u003e\n```\n\nList of all the interfaces that this class or a superclass of this class implements. \n\n### superClasses\n\n```\nval superClasses: List\u003cString\u003e\n```\n\nList of all the super classes that this class or a super class of this class extends."]]