protected class

DynamicTimeSeriesCollection.ValueSequence

extends Object
java.lang.Object
   ↳ org.jfree.data.time.DynamicTimeSeriesCollection.ValueSequence

Class Overview

A wrapper for a fixed array of float values.

Summary

Public Constructors
DynamicTimeSeriesCollection.ValueSequence()
Default constructor:
DynamicTimeSeriesCollection.ValueSequence(int length)
Creates a sequence with the specified length.
Public Methods
void enterData(int index, float value)
Enters data into the storage array.
float getData(int index)
Returns a value from the storage array.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public DynamicTimeSeriesCollection.ValueSequence ()

Default constructor:

public DynamicTimeSeriesCollection.ValueSequence (int length)

Creates a sequence with the specified length.

Parameters
length the length.

Public Methods

public void enterData (int index, float value)

Enters data into the storage array.

Parameters
index the index.
value the value.

public float getData (int index)

Returns a value from the storage array.

Parameters
index the index.
Returns
  • The value.