| Package | Description |
|---|---|
| metdetection.time |
| Modifier and Type | Field and Description |
|---|---|
private java.util.LinkedList<TimeTrackerNode> |
TimeTracker.nodes
The LInkedList of TimeTrackerNodes of this TimeTracker, ordered by time.
|
| Modifier and Type | Method and Description |
|---|---|
private TimeTrackerNode |
TimeTracker.getNodeAtTick(long tick)
Get the TimeTrackerNode which is valid at the given tick.
|
TimeTrackerNode |
TimeTracker.getNodeAtTime(long time)
Get the TimeTrackerNode which is valid at the given time.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.LinkedList<TimeTrackerNode> |
TimeTracker.getNodes()
Get a list of the
TimeTrackerNodes tracked by this object. |
| Constructor and Description |
|---|
TimeTrackerNode(TimeTrackerNode prev,
long tick,
double ppq)
Create a new TimeTrackerNode with the given previous TimeTrackerNode at the given tick.
|