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