
com.therouter.apt.AutowiredItem.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apt Show documentation
Show all versions of apt Show documentation
Android 动态路由库-移动端模块化解决方案
package com.therouter.apt
class AutowiredItem : Comparable {
var type = ""
var key = ""
var id = 0
var args = ""
var className = ""
var classNameAndTypeParameters = ""
var fieldName = ""
var required = false
var description = ""
override fun toString(): String {
return "AutowiredItem(type='$type', key='$key', id=$id, args='$args', className='$className', fieldName='$fieldName', required=$required, description='$description')"
}
override fun compareTo(other: AutowiredItem): Int {
return toString().compareTo(other.toString())
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy