Show / Hide Table of Contents

Class ComparisonRowBase<TProperty>

Class used for displaying comparison statistics within a table. This should also be used to update the values of the specific statistics type to compare.

Inheritance
java.lang.Object
ComparisonRowBase<TProperty>
Inherited Members
java.lang.Object.clone()
java.lang.Object.equals(java.lang.Object)
java.lang.Object.finalize()
java.lang.Object.getClass()
java.lang.Object.hashCode()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.toString()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)
Namespace:
Assembly: .dll
Syntax
public abstract class ComparisonRowBase<TProperty>
Type Parameters
Name Description
TProperty

Constructors

ComparisonRowBase(String rowDescription)

Declaration
public ComparisonRowBase(String rowDescription)
Parameters
Type Name Description
java.lang.String rowDescription

The description of the comparison row

Fields

playerSeries

Declaration
protected ObservableMap<String,XYChart.Series<Integer,Number>> playerSeries
Field Value
Type Description
javafx.collections.ObservableMap<java.lang.String,javafx.scene.chart.XYChart.Series<java.lang.Integer,java.lang.Number>>

playerValues

Declaration
protected ObservableMap<String,TProperty> playerValues
Field Value
Type Description
javafx.collections.ObservableMap<java.lang.String,TProperty>

rowDescription

Declaration
protected String rowDescription
Field Value
Type Description
java.lang.String

Methods

getPlayerProperties()

The player properties

Declaration
public Map<String,TProperty> getPlayerProperties()
Returns
Type Description
java.util.Map<java.lang.String,TProperty>

getPlayerSeries()

The player series

Declaration
public Map<String,XYChart.Series<Integer,Number>> getPlayerSeries()
Returns
Type Description
java.util.Map<java.lang.String,javafx.scene.chart.XYChart.Series<java.lang.Integer,java.lang.Number>>

getRowDescription()

The description of the comparison row.

Declaration
public String getRowDescription()
Returns
Type Description
java.lang.String

updateSeries(IVISABFile file)

Updates the data of the series of the statistics type.

Declaration
public abstract void updateSeries(IVISABFile file)
Parameters
Type Name Description
IVISABFile file

The file using which the series data is updated

updateValues(IVISABFile file)

Updates the values of the properties of the statistics type.

Declaration
public abstract void updateValues(IVISABFile file)
Parameters
Type Name Description
IVISABFile file

The file using which the values are updated

In This Article
Back to top Generated by DocFX