Package smile.data.vector
Interface ShortVector
- All Superinterfaces:
BaseVector<Short,
,Integer, IntStream> Serializable
An immutable short vector.
-
Method Summary
Modifier and TypeMethodDescriptionshort[]
array()
Returns the array that backs this vector.get
(int... index) Returns a new vector with selected entries.default boolean
getBoolean
(int i) Returns the boolean value at position i.default byte
getByte
(int i) Returns the byte value at position i.default char
getChar
(int i) Returns the character value at position i.default double
getDouble
(int i) Returns the double value at position i.default float
getFloat
(int i) Returns the float value at position i.default int
getInt
(int i) Returns the integer value at position i.default long
getLong
(int i) Returns the long value at position i.static ShortVector
Creates a named short integer vector.static ShortVector
of
(StructField field, short[] vector) Creates a named short integer vector.default String
toString
(int n) Returns the string representation of vector.default DataType
type()
Returns the data type of elements.Methods inherited from interface smile.data.vector.BaseVector
apply, apply, field, get, getShort, measure, name, size, stream, toDoubleArray, toDoubleArray, toIntArray, toIntArray, toStringArray, toStringArray
-
Method Details
-
type
Description copied from interface:BaseVector
Returns the data type of elements.- Specified by:
type
in interfaceBaseVector<Short,
Integer, IntStream> - Returns:
- the data type of elements.
-
array
short[] array()Description copied from interface:BaseVector
Returns the array that backs this vector. This is mostly for smile internal use for high performance. The application developers should not use this method.- Specified by:
array
in interfaceBaseVector<Short,
Integer, IntStream> - Returns:
- the array that backs this vector.
-
get
Description copied from interface:BaseVector
Returns a new vector with selected entries.- Specified by:
get
in interfaceBaseVector<Short,
Integer, IntStream> - Parameters:
index
- the index of selected entries.- Returns:
- the new vector of selected entries.
-
getBoolean
default boolean getBoolean(int i) Description copied from interface:BaseVector
Returns the boolean value at position i.- Specified by:
getBoolean
in interfaceBaseVector<Short,
Integer, IntStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getChar
default char getChar(int i) Description copied from interface:BaseVector
Returns the character value at position i.- Specified by:
getChar
in interfaceBaseVector<Short,
Integer, IntStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getByte
default byte getByte(int i) Description copied from interface:BaseVector
Returns the byte value at position i.- Specified by:
getByte
in interfaceBaseVector<Short,
Integer, IntStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getInt
default int getInt(int i) Description copied from interface:BaseVector
Returns the integer value at position i.- Specified by:
getInt
in interfaceBaseVector<Short,
Integer, IntStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getLong
default long getLong(int i) Description copied from interface:BaseVector
Returns the long value at position i.- Specified by:
getLong
in interfaceBaseVector<Short,
Integer, IntStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getFloat
default float getFloat(int i) Description copied from interface:BaseVector
Returns the float value at position i.- Specified by:
getFloat
in interfaceBaseVector<Short,
Integer, IntStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getDouble
default double getDouble(int i) Description copied from interface:BaseVector
Returns the double value at position i.- Specified by:
getDouble
in interfaceBaseVector<Short,
Integer, IntStream> - Parameters:
i
- the index.- Returns:
- the value.
-
toString
Returns the string representation of vector.- Parameters:
n
- the number of elements to show.- Returns:
- the string representation of vector.
-
of
Creates a named short integer vector.- Parameters:
name
- the name of vector.vector
- the data of vector.- Returns:
- the vector.
-
of
Creates a named short integer vector.- Parameters:
field
- the struct field of vector.vector
- the data of vector.- Returns:
- the vector.
-