com.therouter.apt.FlowTaskItem.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 FlowTaskItem : Comparable {
var async = false
var className: String = ""
var methodName: String = ""
var taskName: String = ""
var dependencies: String = ""
override fun toString(): String {
return "FlowTaskItem(async=$async, className='$className', methodName='$methodName', taskName='$taskName', dependencies='$dependencies')"
}
override fun compareTo(other: FlowTaskItem): Int {
return toString().compareTo(other.toString())
}
}