public final class TimestampLongMap extends TimestampMap<Long>
| Constructor and Description |
|---|
TimestampLongMap()
Default constructor.
|
TimestampLongMap(double[] keys,
long[] vals)
Constructor with an initial timestamp map.
|
TimestampLongMap(int capacity)
Constructor with capacity.
|
| Modifier and Type | Method and Description |
|---|---|
long |
getLong(double timestamp)
Get the value for the given timestamp.
|
long |
getLong(double timestamp,
long defaultValue)
Get the value for the given timestamp.
|
Class<Long> |
getTypeClass()
Returns the value type class.
|
boolean |
isSupported(Estimator estimator)
Returns whether
estimator is supported. |
long[] |
toLongArray()
Returns an array of all values in this map.
|
clear, contains, equals, get, get, getTimestamps, hashCode, isEmpty, put, remove, size, toKeysArray, toString, toString, toString, toValuesArraypublic TimestampLongMap()
The map is empty with zero capacity.
public TimestampLongMap(int capacity)
Using this constructor can improve performances if the number of timestamps is known in advance as it minimizes array resizes.
capacity - timestamp capacitypublic TimestampLongMap(double[] keys,
long[] vals)
The keys array must be sorted and contain no duplicates.
keys - initial keys contentvals - initial values contentpublic long getLong(double timestamp)
timestamp - timestampIllegalArgumentException - if the element doesn't existpublic long getLong(double timestamp,
long defaultValue)
Return defaultValue if the value is not found.
timestamp - timestampdefaultValue - default valuepublic Class<Long> getTypeClass()
TimeMapgetTypeClass in interface TimeMap<Double,Long>getTypeClass in class TimestampMap<Long>public long[] toLongArray()
This method may return a reference to the underlying array so clients should make a copy if the array is written to.
public boolean isSupported(Estimator estimator)
TimeMapestimator is supported.isSupported in interface TimeMap<Double,Long>isSupported in class TimestampMap<Long>estimator - estimatorestimatorCopyright © 2007–2015 Gephi Consortium. All rights reserved.