MatrixData

csw.params.core.models.MatrixData
See theMatrixData companion object
case class MatrixData[T]

A top level key for a parameter set representing an matrix like collection.

Value parameters

data

input array of array

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def apply(row: Int, col: Int): T

Returns a value stored at position represented by [row][col]

Returns a value stored at position represented by [row][col]

Attributes

Returns

a value represented by T

def jValues: List[List[T]]

A Java helper that returns an Array of values this parameter holds

A Java helper that returns an Array of values this parameter holds

Attributes

override def toString: String

A comma separated string representation of all values this MatrixData holds

A comma separated string representation of all values this MatrixData holds

Attributes

Definition Classes
Any

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product

Concrete fields

val values: Array[Array[T]]