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

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

There is a newer version: 1.3.0-rc1
Show newest version
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