All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.sephiroth.android.library.asm.commons.vo.ClassFieldVo.kt Maven / Gradle / Ivy

Go to download

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"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy