Package smile.data.vector
Interface BooleanVector
- All Superinterfaces:
BaseVector<Boolean,
,Integer, IntStream> Serializable
An immutable boolean vector.
-
Method Summary
Modifier and TypeMethodDescriptionboolean[]
array()
Returns the array that backs this vector.get
(int... index) Returns a new vector with selected entries.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.default short
getShort
(int i) Returns the short value at position i.static BooleanVector
Creates a named boolean vector.static BooleanVector
of
(StructField field, boolean[] vector) Creates a named boolean 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, getBoolean, 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<Boolean,
Integer, IntStream> - Returns:
- the data type of elements.
-
array
boolean[] 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<Boolean,
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<Boolean,
Integer, IntStream> - Parameters:
index
- the index of selected entries.- Returns:
- the new vector of selected entries.
-
getChar
default char getChar(int i) Description copied from interface:BaseVector
Returns the character value at position i.- Specified by:
getChar
in interfaceBaseVector<Boolean,
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<Boolean,
Integer, IntStream> - Parameters:
i
- the index.- Returns:
- the value.
-
getShort
default short getShort(int i) Description copied from interface:BaseVector
Returns the short value at position i.- Specified by:
getShort
in interfaceBaseVector<Boolean,
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<Boolean,
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<Boolean,
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<Boolean,
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<Boolean,
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 boolean vector.- Parameters:
name
- the name of vector.vector
- the data of vector.- Returns:
- the vector.
-
of
Creates a named boolean vector.- Parameters:
field
- the struct field of vector.vector
- the data of vector.- Returns:
- the vector.
-