public class Column extends VectorBase
Column
object.Constructor and Description |
---|
Column()
The default constructor.
|
Column(double[] items)
Constructs an numeric vector.
|
Column(int... items)
Constructs an integer vector.
|
Column(Item... items)
Constructor that accepts a variable list of items.
|
Column(java.lang.Object items,
java.lang.String name)
Constructor that accepts an array object and determines the type based on
the array's component type.
|
Column(java.lang.String... items)
Constructs an character vector.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getSubType()
Retrieves the column subtype.
|
void |
setSubType(java.lang.String subType)
Sets the column subtype.
|
getAsBooleanArray, getAsBooleanArray, getAsBooleanObjectArray, getAsDoubleArray, getAsDoubleArray, getAsDoubleObjectArray, getAsIntegerArray, getAsIntegerArray, getAsIntegerObjectArray, getAsStringArray, getAttrs, getItems, getLength, getName, getType, setAttrs, setItems, setLength, setName, setType
public Column(Item... items)
items
- public Column(int... items)
items
- public Column(double[] items)
items
- public Column(java.lang.String... items)
items
- public Column()
public Column(java.lang.Object items, java.lang.String name) throws java.lang.IllegalArgumentException
items
- An array of items to add to the column content.name
- The column name.java.lang.IllegalArgumentException
- If the object passed is not an array, or is not of supported
type.