Package dev.kotx.flylib.command.elements

Types

ArrayElement
Link copied to clipboard
interface ArrayElement<T> : ConfigElement<MutableList<T>>
BooleanArrayElement
Link copied to clipboard
class BooleanArrayElement(key: String, value: MutableList<Boolean>?) : ArrayElement<Boolean>
BooleanElement
Link copied to clipboard
class BooleanElement(key: String, value: Boolean?) : ConfigElement<Boolean>
DoubleArrayElement
Link copied to clipboard
class DoubleArrayElement(key: String, value: MutableList<Double>?) : ArrayElement<Double>
DoubleElement
Link copied to clipboard
class DoubleElement(key: String, value: Double?, min: Double, max: Double) : ConfigElement<Double>
FloatArrayElement
Link copied to clipboard
class FloatArrayElement(key: String, value: MutableList<Float>?) : ArrayElement<Float>
FloatElement
Link copied to clipboard
class FloatElement(key: String, value: Float?, min: Float, max: Float) : ConfigElement<Float>
IntegerArrayElement
Link copied to clipboard
class IntegerArrayElement(key: String, value: MutableList<Int>?) : ArrayElement<Int>
IntegerElement
Link copied to clipboard
class IntegerElement(key: String, value: Int?, min: Int, max: Int) : ConfigElement<Int>
LongArrayElement
Link copied to clipboard
class LongArrayElement(key: String, value: MutableList<Long>?) : ArrayElement<Long>
LongElement
Link copied to clipboard
class LongElement(key: String, value: Long?, min: Long, max: Long) : ConfigElement<Long>
ObjectElement
Link copied to clipboard
class ObjectElement(key: String, value: Config?) : ConfigElement<Config>
StringArrayElement
Link copied to clipboard
class StringArrayElement(key: String, value: MutableList<String>?) : ArrayElement<String>
StringElement
Link copied to clipboard
class StringElement(key: String, value: String?) : ConfigElement<String>