DecimalScheme
data class DecimalScheme(myName: String, minValue: Double, maxValue: Double, decimalCount: Int, showTrailingZeroes: Boolean, groupingSeparator: String, decimalSeparator: String, prefix: String, suffix: String) : Scheme<DecimalScheme>
Content copied to clipboard
Contains settings for generating random decimals.
See also
Constructors
DecimalScheme
Link copied to clipboard
fun DecimalScheme(myName: String = DEFAULT_NAME, minValue: Double = DEFAULT_MIN_VALUE, maxValue: Double = DEFAULT_MAX_VALUE, decimalCount: Int = DEFAULT_DECIMAL_COUNT, showTrailingZeroes: Boolean = DEFAULT_SHOW_TRAILING_ZEROES, groupingSeparator: String = DEFAULT_GROUPING_SEPARATOR, decimalSeparator: String = DEFAULT_DECIMAL_SEPARATOR, prefix: String = DEFAULT_PREFIX, suffix: String = DEFAULT_SUFFIX)
Content copied to clipboard
Types
Functions
copyAs
Link copied to clipboard
copyFrom
Link copied to clipboard
getDisplayName
Link copied to clipboard
safeSetDecimalSeparator
Link copied to clipboard
safeSetGroupingSeparator
Link copied to clipboard
Properties
decimalCount
Link copied to clipboard
decimalSeparator
Link copied to clipboard
groupingSeparator
Link copied to clipboard
showTrailingZeroes
Link copied to clipboard
Sources
jvm source
Link copied to clipboard