it.sephiroth.android.library.asm.commons.vo.ClassFieldVo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asm-commons Show documentation
Show all versions of asm-commons Show documentation
Android gradle plugin which inject at compile time method logging (initially forked from Hunter-Debug)
The newest version!
package it.sephiroth.android.library.asm.commons.vo
/**
* AndroidDebugLog
*
* @author Alessandro Crugnola on 25.02.22 - 16:23
*/
data class ClassFieldVo(val className: String, val name: String, val descriptor: String) {
fun matches(name: String?, descriptor: String?): Boolean {
return this.name == name && this.descriptor == descriptor
}
override fun toString(): String {
return "$className.$name:$descriptor"
}
}