Added in API level 33
Dumpable
interface Dumpable
| android.util.Dumpable |
Represents an object whose state can be dumped into a PrintWriter.
Summary
| Public methods | |
|---|---|
| abstract Unit | dump(writer: PrintWriter, args: Array<String!>?)Dumps the internal state into the given |
| open String | Gets the name of the |
Public methods
dump
Added in API level 33
abstract fun dump(
writer: PrintWriter,
args: Array<String!>?
): Unit
Dumps the internal state into the given writer.
| Parameters | |
|---|---|
writer | PrintWriter: writer to be written to This value cannot be null. |
args | Array<String!>?: optional list of arguments This value may be null. |
getDumpableName
Added in API level 33
open fun getDumpableName(): String
Gets the name of the Dumpable.
| Return | |
|---|---|
String | class name, by default. This value cannot be null. |