ExpStatRepViewData

data class ExpStatRepViewData(var exp_name: String = "", var stat_name: String = "", var rep_id: Int = -1, var rep_value: Double? = null) : TabularData

Constructors

Link copied to clipboard
constructor(exp_name: String = "", stat_name: String = "", rep_id: Int = -1, rep_value: Double? = null)

Properties

Link copied to clipboard
Link copied to clipboard

The number of columns of data. The number of public mutable properties including any auto-increment field

Link copied to clipboard
var rep_id: Int
Link copied to clipboard
Link copied to clipboard

The optional name of the schema holding the table for the related data. If supplied it cannot be empty/blank and any white space will be replaced with underscore characters.

Link copied to clipboard
Link copied to clipboard

White space in the string is replaced by an underscore

Functions

Link copied to clipboard

Extracts the value of the public mutable properties of a data class If the object is not an instance of a data class, then the returned map will be empty. The map contains the pairs of (name, value) where name is the name of the public, mutable property and value is the current value of the property

Link copied to clipboard

Extracts the property of the public mutable properties of a data class Classifies each property whether it can be converted to a numeric value via isNumericConvertable(). All non-numeric mutable properties are considered TEXT; otherwise, they are considered NUMERIC.

Link copied to clipboard

Extracts the property of the public mutable properties of a data class If the object is not an instance of a data class, then the returned map will be empty. The map contains the pairs of (name, property) where name is the name of the public property and property is the reflection property

Link copied to clipboard

Extracts the names of the public, mutable properties of a data class in the order in which they are declared in the primary constructor.

Link copied to clipboard

Extracts the values of the public, mutable properties of a data class in the order in which they are declared in the primary constructor.

Link copied to clipboard
fun setPropertyValues(values: List<Any?>)

Sets the values of the public mutable properties of a data class to the values supplied. If the object is not an instance of a data class then nothing happens. The size of the supplied list must be the same as the number of the mutable properties and the type of each element in the supplied list must match the type of the mutable property

Sets the values of the public mutable properties of a data class to the values supplied. If the object is not an instance of a data class then nothing happens. The row from a TabularFile must map to the property values