Package dev. kotx. flylib. command. elements
          Types
Array Element
                          
                    Link copied to clipboard
                        Boolean Array Element
                          
                    Link copied to clipboard
                        class BooleanArrayElement(key: String, value: MutableList<Boolean>?) : ArrayElement<Boolean> 
Content copied to clipboard
Boolean Element
                          
                    Link copied to clipboard
                        class BooleanElement(key: String, value: Boolean?) : ConfigElement<Boolean> 
Content copied to clipboard
Double Array Element
                          
                    Link copied to clipboard
                        class DoubleArrayElement(key: String, value: MutableList<Double>?) : ArrayElement<Double> 
Content copied to clipboard
Double Element
                          
                    Link copied to clipboard
                        class DoubleElement(key: String, value: Double?, min: Double, max: Double) : ConfigElement<Double> 
Content copied to clipboard
Float Array Element
                          
                    Link copied to clipboard
                        class FloatArrayElement(key: String, value: MutableList<Float>?) : ArrayElement<Float> 
Content copied to clipboard
Float Element
                          
                    Link copied to clipboard
                        class FloatElement(key: String, value: Float?, min: Float, max: Float) : ConfigElement<Float> 
Content copied to clipboard
Integer Array Element
                          
                    Link copied to clipboard
                        class IntegerArrayElement(key: String, value: MutableList<Int>?) : ArrayElement<Int> 
Content copied to clipboard
Integer Element
                          
                    Link copied to clipboard
                        class IntegerElement(key: String, value: Int?, min: Int, max: Int) : ConfigElement<Int> 
Content copied to clipboard
Long Array Element
                          
                    Link copied to clipboard
                        class LongArrayElement(key: String, value: MutableList<Long>?) : ArrayElement<Long> 
Content copied to clipboard
Long Element
                          
                    Link copied to clipboard
                        class LongElement(key: String, value: Long?, min: Long, max: Long) : ConfigElement<Long> 
Content copied to clipboard
Object Element
                          
                    Link copied to clipboard
                        class ObjectElement(key: String, value: Config?) : ConfigElement<Config> 
Content copied to clipboard
String Array Element
                          
                    Link copied to clipboard
                        class StringArrayElement(key: String, value: MutableList<String>?) : ArrayElement<String> 
Content copied to clipboard
String Element
                          
                    Link copied to clipboard
                        class StringElement(key: String, value: String?) : ConfigElement<String> 
Content copied to clipboard