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

com.flyjingfish.android_aop_plugin.beans.AopCollectCut.kt Maven / Gradle / Ivy

Go to download

Lightweight Aop for Android platform, you deserve it, action is worse than your heartbeat

There is a newer version: 2.2.8
Show newest version
package com.flyjingfish.android_aop_plugin.beans

data class AopCollectCut(
    val collectClassName: String,
    val invokeClassName: String,
    val invokeMethod: String,
    val isClazz:Boolean,
    val regex : String,
    val collectType : String
){
    enum class CollectType{
        EXTENDS,DIRECT_EXTENDS,LEAF_EXTENDS
    }
    fun getKey():String{
        return invokeClassName + invokeMethod + collectClassName+isClazz+regex+collectType
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy