|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object infovis.utils.ChangeManager infovis.column.AbstractColumn infovis.column.BasicColumn infovis.column.LiteralColumn infovis.column.LongColumn
public class LongColumn
A Column of longs.
Field Summary |
---|
Fields inherited from class infovis.column.AbstractColumn |
---|
MODIFIED_ALL, MODIFIED_NONE |
Fields inherited from interface infovis.metadata.Constants |
---|
CONTRIBUTOR, COVERAGE, CREATOR, DATE, DESCRITION, FORMAT, IDENTIFIER, LANGUAGE, PUBLISHER, RELATION, RIGHTS, SOURCE, SUBJECT, TITLE, TYPE |
Constructor Summary | |
---|---|
LongColumn(String name)
Creates a new LongColumn object. |
|
LongColumn(String name,
int reserve)
Creates a new LongColumn object. |
Method Summary | |
---|---|
void |
add(long element)
Adds a new element in the column. |
int |
capacity()
Returns the current capacity of this column. |
void |
clear()
Removes all of the elements from this column. |
void |
ensureCapacity(int minCapacity)
Increases the capacity of this column, if necessary, to ensure that it can hold at least the number of values specified by the minimum capacity argument. |
void |
fill(long val)
Fills the column with the specified value |
static LongColumn |
findColumn(Table t,
String name)
Returns a column as a LongColumn from a table,
creating it if needed. |
String |
format(double value)
Returns the specified value formatted according to this column's format. |
String |
format(long v)
Returns the string representation of a value according to the current format. |
long |
get(int index)
Returns the element at the specified position in this column. |
static LongColumn |
getColumn(Table t,
int index)
Returns a column as a LongColumn from a
Table . |
static LongColumn |
getColumn(Table t,
String name)
Returns a column as a LongColumn from a
Table . |
double |
getDoubleAt(int row)
Returns the value as a double |
float |
getFloatAt(int row)
Returns the value as a float |
int |
getIntAt(int row)
Returns the value as an int |
long |
getLongAt(int row)
Returns the value as a long |
long |
getMax()
|
long |
getMin()
|
String |
getValueAt(int i)
Returns the String representation of the element at the specified position in this column or null if
the element is undefined. |
Class |
getValueClass()
Returns the class of the elements. |
LongArrayList |
getValueReference()
|
long |
parse(String v)
Parse a string and return the value for the column. |
double |
round(double value)
Returns the rounded value according to the semantics of this number value. |
void |
set(int index,
long element)
Replaces the element at the specified position in this column with the specified element. |
void |
setDoubleAt(int row,
double v)
Sets the value as a double |
void |
setExtend(int index,
long element)
Replaces the element at the specified position in this column with the specified element, growing the column if necessary. |
void |
setLongAt(int row,
long v)
Sets the value as a long |
void |
setSize(int newSize)
Sets the sizeColumn of this column. |
void |
setValueAt(int i,
String v)
Replaces the element at the specified position in this column with the element specified in its String representation or sets if undefined if the element is null
It will be read and translated using the Format. |
int |
size()
Returns the number of elements in this column. |
Methods inherited from class infovis.column.LiteralColumn |
---|
compare, compareValues, getDoubleMax, getDoubleMin, getNumberColumn, hasUndefinedValue, isValueUndefined, setFloatAt, setIntAt, setValueUndefined, trimUndefined |
Methods inherited from class infovis.column.BasicColumn |
---|
addValue, addValueOrNull, firstValidRow, getClientProperty, getFormat, getMaxIndex, getMetadata, getMinIndex, getName, isEmpty, isInternal, iterator, lastValidRow, setFormat, setName, setValueOrNullAt, toString |
Methods inherited from class infovis.column.AbstractColumn |
---|
addChangeListener, computeValueMap, computeValueMap, equalObj, equals, getLastModifiedRow |
Methods inherited from class infovis.utils.ChangeManager |
---|
disableNotify, enableNotify, getModCount, removeChangeListener |
Methods inherited from class java.lang.Object |
---|
getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface infovis.Column |
---|
addChangeListener, addValue, addValueOrNull, disableNotify, enableNotify, getFormat, getMaxIndex, getMinIndex, getName, isEmpty, isInternal, iterator, removeChangeListener, setFormat, setName, setValueOrNullAt |
Methods inherited from interface infovis.Metadata |
---|
getClientProperty, getMetadata |
Methods inherited from interface cern.colt.function.IntComparator |
---|
equals |
Constructor Detail |
---|
public LongColumn(String name)
name
- the column name.public LongColumn(String name, int reserve)
name
- the column name.reserve
- the initial capacity.Method Detail |
---|
public void clear()
BasicColumn
CategoricalFormat
, it
is not cleared so results may not be what you expected. The
CategoricalFormat
can be cleared explicitely if
needed.
clear
in interface Column
clear
in class LiteralColumn
Call clear after clearing the subclass contents since this method fires
the notifications.
public long get(int index)
index
- index of element to return.
public void set(int index, long element)
index
- index of element to replace.element
- element to be stored at the specified position.public void setExtend(int index, long element)
index
- index of element to replace.element
- element to be stored at the specified position.public long getMin()
public long getMax()
public final void add(long element)
element
- the element.public void fill(long val)
val
- the valuepublic long parse(String v) throws ParseException
v
- the string representation of the value
ParseException
- if the value cannot be parsedpublic String format(long v)
v
- the value
public String getValueAt(int i)
Column
null
if
the element is undefined. The representation is
generated by the current format.
i
- index of element representation to return.
null
if the element is undefined.Column.getValueAt(int)
public void setValueAt(int i, String v) throws ParseException
Column
null
It will be read and translated using the Format. A null value
sets the value to undefined. The column is extended if
needed.
i
- index of element to replace.v
- element to be stored at the specified position.
ParseException
- if the specified string cannot be parsed.Column.setValueAt(int, String)
public static LongColumn getColumn(Table t, int index)
LongColumn
from a
Table
.
t
- the Table
index
- index in the Table
LongColumn
or null if no such column
exists or the column is not a
LongColumn
.public static LongColumn getColumn(Table t, String name)
LongColumn
from a
Table
.
t
- the Table
name
- the column name.
LongColumn
or null if no such column
exists or the column is not a
LongColumn
.public static LongColumn findColumn(Table t, String name)
LongColumn
from a table,
creating it if needed.
t
- the Table
name
- the column name.
LongColumn
from a table,public Class getValueClass()
BasicColumn
getValueClass
in interface Column
getValueClass
in class BasicColumn
Column.getValueClass()
public double getDoubleAt(int row)
LiteralColumn
getDoubleAt
in interface NumberColumn
getDoubleAt
in class LiteralColumn
row
- the row
NumberColumn.getDoubleAt(int)
public float getFloatAt(int row)
LiteralColumn
getFloatAt
in interface NumberColumn
getFloatAt
in class LiteralColumn
row
- the row
NumberColumn.getFloatAt(int)
public int getIntAt(int row)
LiteralColumn
getIntAt
in interface NumberColumn
getIntAt
in class LiteralColumn
row
- the row
NumberColumn.getIntAt(int)
public long getLongAt(int row)
LiteralColumn
getLongAt
in interface NumberColumn
getLongAt
in class LiteralColumn
row
- the row
NumberColumn.getLongAt(int)
public void setDoubleAt(int row, double v)
LiteralColumn
setDoubleAt
in interface NumberColumn
setDoubleAt
in class LiteralColumn
row
- the rowv
- the value as a doubleNumberColumn.setDoubleAt(int, double)
public void setLongAt(int row, long v)
LiteralColumn
setLongAt
in interface NumberColumn
setLongAt
in class LiteralColumn
row
- the rowv
- the value as a longNumberColumn.setLongAt(int, long)
public double round(double value)
NumberColumn
round
in interface NumberColumn
round
in class LiteralColumn
value
- the value to round
NumberColumn.round(double)
public String format(double value)
NumberColumn
value
- the value to format
public int capacity()
Column
public void ensureCapacity(int minCapacity)
Column
minCapacity
- the desired minimum capacity.public int size()
Column
public void setSize(int newSize)
BasicColumn
0
items
are added to the end of the column. If the new sizeColumn is
less than the current sizeColumn, all components at index
newSize
and greater are discarded.
setSize
in interface Column
setSize
in class LiteralColumn
newSize
- the new sizeColumn of this column.public LongArrayList getValueReference()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |