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

com.therouter.apt.ActionInterceptorItem.kt Maven / Gradle / Ivy

There is a newer version: 1.2.3-rc17
Show newest version
package com.therouter.apt

class ActionInterceptorItem : Comparable {
    var className: String = ""
    var actionName: String = ""

    override fun compareTo(other: ActionInterceptorItem): Int {
        return toString().compareTo(other.toString())
    }

    override fun toString(): String {
        return "ActionInterceptorItem(className='$className', actionName='$actionName')"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy