A B C D E F G H I L M N O P R S T U V W
All Classes All Packages
All Classes All Packages
All Classes All Packages
A
- adapt(Table, Table, Tables.ColumnHandling, Tables.DictionaryHandling) - Static method in class com.rapidminer.belt.table.Tables
-
Adapts the table to the schema.
- add(int, String) - Method in class com.rapidminer.belt.column.type.StringList
- add(String) - Method in class com.rapidminer.belt.column.type.StringList
- add(String) - Method in class com.rapidminer.belt.column.type.StringSet
- add(String, Column) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds the given column.
- addAll(int, Collection<? extends String>) - Method in class com.rapidminer.belt.column.type.StringList
- addAll(Collection<? extends String>) - Method in class com.rapidminer.belt.column.type.StringList
- addAll(Collection<? extends String>) - Method in class com.rapidminer.belt.column.type.StringSet
- addBoolean(String, IntFunction<String>, String) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds a nominal boolean column with the given positive value and type that is filled as specified by the generator.
- addDateTime(String, IntFunction<Instant>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds a date-time column that is filled as specified by the generator.
- addInt53Bit(String, IntToDoubleFunction) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds an
Column.TypeId.INTEGER_53_BIT
column that is filled as specified by the generator. - addMetaData(String, ColumnMetaData) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds the given meta data to the column with the given label.
- addMetaData(String, List<ColumnMetaData>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds the given meta data to the column with the given label.
- addNominal(String, IntFunction<String>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds a nominal column that is filled as specified by the generator.
- addNominal(String, IntFunction<String>, int) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds a nominal column that is filled as specified by the generator.
- addReal(String, IntToDoubleFunction) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds a real column that is filled as specified by the generator.
- addText(String, IntFunction<String>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds an object column with type
Column.TypeId.TEXT
that is filled as specified by the generator. - addTextlist(String, IntFunction<StringList>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds an object column with type
Column.TypeId.TEXT_LIST
that is filled as specified by the generator. - addTextset(String, IntFunction<StringSet>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds an object column with type
Column.TypeId.TEXT_SET
that is filled as specified by the generator. - addTime(String, IntFunction<LocalTime>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Adds a time column that is filled as specified by the generator.
- ALLOW_INT_FOR_REAL - com.rapidminer.belt.table.Tables.TypeRequirement
-
If the reference column in the schema is real the table column may be integer.
- and(DoubleBinaryPredicate) - Method in interface com.rapidminer.belt.function.DoubleBinaryPredicate
-
Returns a composed predicate that represents a logical AND of this and the given predicate (see
DoublePredicate.and(DoublePredicate)
). - and(IntBinaryPredicate) - Method in interface com.rapidminer.belt.function.IntBinaryPredicate
-
Returns a composed predicate that represents a logical AND of this and the given predicate (see
IntPredicate.and(IntPredicate)
). - annotation() - Method in class com.rapidminer.belt.util.ColumnAnnotation
-
Returns the column annotation.
- append(List<Column>, int, DoubleConsumer, Context) - Static method in class com.rapidminer.belt.table.Appender
-
Appends the given columns list into one column if possible.
- append(List<Table>, DoubleConsumer, Context) - Static method in class com.rapidminer.belt.table.Appender
-
Appends the given tables into a new table if possible.
- Appender - Class in com.rapidminer.belt.table
- Appender.IncompatibleColumnsException - Exception in com.rapidminer.belt.table
-
Exception for the case that the table with tableIndex out of a list of tables does not contain a certain column name.
- Appender.IncompatibleTableWidthException - Exception in com.rapidminer.belt.table
-
Exception for the case that the table with tableIndex out of a list of tables has incompatible width.
- Appender.IncompatibleTypesException - Exception in com.rapidminer.belt.table
-
Exception for the case that the column with index out of a list of columns has the actual type that does not match the desired type.
- Appender.TableTooLongException - Exception in com.rapidminer.belt.table
-
Exception for appending more than
Integer.MAX_VALUE
rows. - apply(double[], int[]) - Static method in class com.rapidminer.belt.util.Mapping
-
Applies the given mapping to the given data set creating a deep copy.
- apply(int[], int[]) - Static method in class com.rapidminer.belt.util.Mapping
-
Applies the given mapping to the given data set creating a deep copy.
- apply(long[], int[], long) - Static method in class com.rapidminer.belt.util.Mapping
-
Applies the given mapping to the given data set creating a deep copy.
- apply(short[], int[]) - Static method in class com.rapidminer.belt.util.Mapping
-
Applies the given mapping to the given data set creating a deep copy.
- apply(IntegerFormats.PackedIntegers, int[]) - Static method in class com.rapidminer.belt.util.Mapping
-
Applies the given mapping to the given data set creating a deep copy.
- apply(Object[], int[]) - Static method in class com.rapidminer.belt.util.Mapping
-
Applies the given mapping to the given data set creating a deep copy.
- applyCategoricalToDateTime(Function<CategoricalRow, Instant>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the categorical transformation columns returning the result in a new
DateTimeBuffer
. - applyCategoricalToDateTime(IntFunction<Instant>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the categorical transformation column returning the result in a new
DateTimeBuffer
. - applyCategoricalToInteger53Bit(IntToDoubleFunction, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the categorical transformation column returning the result in a new integer
NumericBuffer
of typeColumn.TypeId.INTEGER_53_BIT
. - applyCategoricalToInteger53Bit(ToDoubleFunction<CategoricalRow>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the categorical transformation columns returning the result in a new
NumericBuffer
of typeColumn.TypeId.INTEGER_53_BIT
. - applyCategoricalToNominal(Function<CategoricalRow, String>, int, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the categorical transformation columns returning the result in a new
NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyCategoricalToNominal(Function<CategoricalRow, String>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the categorical transformation columns returning the result in a new
Int32NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyCategoricalToNominal(IntFunction<String>, int, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the categorical transformation column returning the result in a new
NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyCategoricalToNominal(IntFunction<String>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the categorical transformation column returning the result in a new
NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyCategoricalToReal(IntToDoubleFunction, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the categorical transformation column returning the result in a new real
NumericBuffer
. - applyCategoricalToReal(ToDoubleFunction<CategoricalRow>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the categorical transformation columns returning the result in a new real
NumericBuffer
. - applyCategoricalToText(Function<CategoricalRow, String>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the categorical transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT
. - applyCategoricalToText(IntFunction<String>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the categorical transformation column returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT
. - applyCategoricalToTextlist(Function<CategoricalRow, StringList>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the categorical transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_LIST
. - applyCategoricalToTextlist(IntFunction<StringList>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the categorical transformation column returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_LIST
. - applyCategoricalToTextset(Function<CategoricalRow, StringSet>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the categorical transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_SET
. - applyCategoricalToTextset(IntFunction<StringSet>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the categorical transformation column returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_SET
. - applyCategoricalToTime(Function<CategoricalRow, LocalTime>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the categorical transformation columns returning the result in a new
TimeBuffer
. - applyCategoricalToTime(IntFunction<LocalTime>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the categorical transformation column returning the result in a new
TimeBuffer
. - applyMixedToDateTime(Function<MixedRow, Instant>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the transformation columns returning the result in a new
DateTimeBuffer
. - applyMixedToInteger53Bit(ToDoubleFunction<MixedRow>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the transformation columns returning the result in a new
NumericBuffer
of typeColumn.TypeId.INTEGER_53_BIT
. - applyMixedToNominal(Function<MixedRow, String>, int, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the transformation columns returning the result in a new
NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyMixedToNominal(Function<MixedRow, String>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the transformation columns returning the result in a new
Int32NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyMixedToReal(ToDoubleFunction<MixedRow>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the transformation columns returning the result in a new real
NumericBuffer
. - applyMixedToText(Function<MixedRow, String>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT
. - applyMixedToTextlist(Function<MixedRow, StringList>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_LIST
. - applyMixedToTextset(Function<MixedRow, StringSet>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_SET
. - applyMixedToTime(Function<MixedRow, LocalTime>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the transformation columns returning the result in a new
TimeBuffer
. - applyNumericToDateTime(DoubleFunction<Instant>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the numeric-readable transformation column returning the result in a new
DateTimeBuffer
. - applyNumericToDateTime(Function<NumericRow, Instant>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the numeric-readable transformation columns returning the result in a new
DateTimeBuffer
. - applyNumericToInteger53Bit(DoubleUnaryOperator, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given unary operator to the numeric readable column returning the result in a new
NumericBuffer
of typeColumn.TypeId.INTEGER_53_BIT
. - applyNumericToInteger53Bit(ToDoubleFunction<NumericRow>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the numeric-readable transformation columns returning the result in a new
NumericBuffer
of typeColumn.TypeId.INTEGER_53_BIT
. - applyNumericToNominal(DoubleFunction<String>, int, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the numeric-readable transformation column returning the result in a new
NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyNumericToNominal(DoubleFunction<String>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the numeric-readable transformation column returning the result in a new
NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyNumericToNominal(Function<NumericRow, String>, int, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the numeric-readable transformation columns returning the result in a new
NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyNumericToNominal(Function<NumericRow, String>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the numeric-readable transformation columns returning the result in a new
Int32NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyNumericToReal(DoubleBinaryOperator, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given binary operator to the numeric-readable transformation column pair returning the result in a new
NumericBuffer
. - applyNumericToReal(DoubleUnaryOperator, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given unary operator to the numeric-readable transformation column returning the result in a new real
NumericBuffer
. - applyNumericToReal(ToDoubleFunction<NumericRow>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the numeric readable transformation columns returning the result in a new real
NumericBuffer
. - applyNumericToText(DoubleFunction<String>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the numeric-readable transformation column returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT
. - applyNumericToText(Function<NumericRow, String>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the numeric-readable transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT
. - applyNumericToTextlist(DoubleFunction<StringList>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the numeric-readable transformation column returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_LIST
. - applyNumericToTextlist(Function<NumericRow, StringList>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the numeric-readable transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_LIST
. - applyNumericToTextset(DoubleFunction<StringSet>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the numeric-readable transformation column returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_SET
. - applyNumericToTextset(Function<NumericRow, StringSet>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the numeric-readable transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_SET
. - applyNumericToTime(DoubleFunction<LocalTime>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the numeric-readable transformation column returning the result in a new
TimeBuffer
. - applyNumericToTime(Function<NumericRow, LocalTime>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the numeric-readable transformation columns returning the result in a new
TimeBuffer
. - applyObjectToDateTime(Class<R>, Function<ObjectRow<R>, Instant>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the object-readable transformation columns returning the result in a new
DateTimeBuffer
. - applyObjectToDateTime(Class<R>, Function<R, Instant>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the object-readable transformation column returning the result in a new
DateTimeBuffer
. - applyObjectToInteger53Bit(Class<T>, ToDoubleFunction<ObjectRow<T>>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the object-readable transformation columns returning the result in a new
NumericBuffer
of typeColumn.TypeId.INTEGER_53_BIT
.. - applyObjectToInteger53Bit(Class<T>, ToDoubleFunction<T>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the object-readable transformation column returning the result in a new integer
NumericBuffer
of typeColumn.TypeId.INTEGER_53_BIT
. - applyObjectToNominal(Class<R>, Function<ObjectRow<R>, String>, int, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the object-readable transformation columns returning the result in a new
NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyObjectToNominal(Class<R>, Function<ObjectRow<R>, String>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the object-readable transformation columns returning the result in a new
Int32NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyObjectToNominal(Class<R>, Function<R, String>, int, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the object-readable transformation column returning the result in a new
NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyObjectToNominal(Class<R>, Function<R, String>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the object-readable transformation column returning the result in a new
NominalBuffer
of typeColumn.TypeId.NOMINAL
. - applyObjectToReal(Class<T>, ToDoubleFunction<ObjectRow<T>>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the object-readable transformation columns returning the result in a new real
NumericBuffer
. - applyObjectToReal(Class<T>, ToDoubleFunction<T>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the object-readable column returning the result in a new
NumericBuffer
. - applyObjectToText(Class<R>, Function<ObjectRow<R>, String>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the object-readable transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT
. - applyObjectToText(Class<R>, Function<R, String>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the object-readable transformation column returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT
. - applyObjectToTextlist(Class<R>, Function<ObjectRow<R>, StringList>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the object-readable transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_LIST
. - applyObjectToTextlist(Class<R>, Function<R, StringList>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the object-readable transformation column returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_LIST
. - applyObjectToTextset(Class<R>, Function<ObjectRow<R>, StringSet>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the object-readable transformation columns returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_SET
. - applyObjectToTextset(Class<R>, Function<R, StringSet>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the object-readable transformation column returning the result in a new
ObjectBuffer
of typeColumn.TypeId.TEXT_SET
. - applyObjectToTime(Class<R>, Function<ObjectRow<R>, LocalTime>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Applies the given operator of arbitrary arity to the object-readable transformation columns returning the result in a new
TimeBuffer
. - applyObjectToTime(Class<R>, Function<R, LocalTime>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Applies the given operator to the object-readable transformation column returning the result in a new
TimeBuffer
. - ArrayBuilderConfiguration - Class in com.rapidminer.belt.util
-
A configuration for the double, integer, short, byte and long array builder classes.
- ArrayBuilderConfiguration(Integer, Double, Integer) - Constructor for class com.rapidminer.belt.util.ArrayBuilderConfiguration
-
Creates a new configuration for the array builder classes.
- ASCENDING - com.rapidminer.belt.util.Order
-
Standard order, e.g., 1, 2, 3, ... for positive integers.
B
- BATCH - com.rapidminer.belt.util.ColumnRole
- BEFORE_FIRST_ROW - Static variable in class com.rapidminer.belt.reader.Readers
-
The position of a row reader before the first invocation of
move()
. - Belt - Class in com.rapidminer.belt.util
-
Utility class for default implementations and registries.
- BooleanDictionary - Class in com.rapidminer.belt.column
-
A
Dictionary
that is boolean (seeBooleanDictionary.isBoolean()
. - BUFFER_FROZEN_MESSAGE - Static variable in class com.rapidminer.belt.buffer.NumericBuffer
-
Error message when trying to change frozen buffer
- Buffers - Class in com.rapidminer.belt.buffer
-
Utility methods for creating mutable temporary buffers.
- Buffers.InternalBuffers - Class in com.rapidminer.belt.buffer
-
Buffer creation methods for internal access.
- build(Context) - Method in class com.rapidminer.belt.table.TableBuilder
-
Builds the table with the given execution context.
- Builders - Class in com.rapidminer.belt.table
-
Utility methods for creating table builders.
- BYTE_BACKED_FORMATS - Static variable in class com.rapidminer.belt.util.IntegerFormats
-
Formats packed into
byte
primitives. - ByteArrayBuilder - Class in com.rapidminer.belt.util
-
Memory and time efficient builder for byte arrays that can be used if the length of the byte array is unknown while building it.
- ByteArrayBuilder() - Constructor for class com.rapidminer.belt.util.ByteArrayBuilder
-
Creates a new builder with the default initial chunk size, default growth factor and default maximum chunk size.
- ByteArrayBuilder(ArrayBuilderConfiguration) - Constructor for class com.rapidminer.belt.util.ByteArrayBuilder
-
Creates a new builder.
C
- CacheMappedColumn - Interface in com.rapidminer.belt.column
-
Interface for an extra map method for mapped columns that supports caching.
- call(List<Callable<T>>) - Method in interface com.rapidminer.belt.execution.Context
-
Executes the given
Callable
s in parallel, returning their results upon completion. - call(List<Callable<T>>) - Method in class com.rapidminer.belt.execution.SequentialContext
- callback(DoubleConsumer) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Specifies a progress callback function.
- callback(DoubleConsumer) - Method in class com.rapidminer.belt.transform.Transformer
-
Specifies a progress callback function.
- CATEGORICAL - com.rapidminer.belt.column.Column.Category
-
Columns of non-unique integer indices paired with an index mapping to a complex type.
- CategoricalColumn - Class in com.rapidminer.belt.column
-
Column with data associated to integer categories.
- categoricalReader(Column) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new categorical column reader.
- categoricalReader(Column, int) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new categorical column reader.
- CategoricalReader - Class in com.rapidminer.belt.reader
-
Buffered reader for
Column
s of with underlying int categories. - CategoricalRow - Interface in com.rapidminer.belt.reader
-
A row of a
Table
withColumn.Category.CATEGORICAL
columns that allows to read entries as category indices. - categoricalRowReader(List<Column>) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new reader for row-wise categorical reads of the given categorical columns.
- CategoricalRowReader - Class in com.rapidminer.belt.reader
-
Buffered row-oriented reader for multiple
Column
s of column categoryColumn.Category.CATEGORICAL
. - category() - Method in class com.rapidminer.belt.column.ColumnType
-
Returns the category to which this column type belongs.
- CHANGE - com.rapidminer.belt.table.Tables.DictionaryHandling
-
If both columns are categorical of the same type, the dictionary is changed to the one in the schema.
- changeDictionary(Column, Column) - Static method in class com.rapidminer.belt.column.Columns
-
Creates a column that replaces the from-column's dictionary with the one of the to-column.
- clear() - Method in class com.rapidminer.belt.column.type.StringList
- clear() - Method in class com.rapidminer.belt.column.type.StringSet
- clearMetaData(String) - Method in class com.rapidminer.belt.table.TableBuilder
-
Removes all meta data from the column with the given label.
- CLUSTER - com.rapidminer.belt.util.ColumnRole
- column(int) - Method in class com.rapidminer.belt.table.Table
-
Returns the column specified by the index.
- column(String) - Method in class com.rapidminer.belt.table.Table
-
Returns the column column specified by the label.
- Column - Class in com.rapidminer.belt.column
-
An immutable column for use in a
Table
. - COLUMN - com.rapidminer.belt.util.ColumnMetaData.Uniqueness
-
Multiple instances of a single column meta data type can be attached to a table but at most one per column.
- Column.Capability - Enum in com.rapidminer.belt.column
- Column.Category - Enum in com.rapidminer.belt.column
- Column.TypeId - Enum in com.rapidminer.belt.column
-
Types of columns.
- ColumnAnnotation - Class in com.rapidminer.belt.util
-
A column annotation in the form of a single
String
. - ColumnAnnotation(String) - Constructor for class com.rapidminer.belt.util.ColumnAnnotation
- ColumnIO - Class in com.rapidminer.belt.column
-
Allows to put column data into
ByteBuffer
s and create columns fromByteBuffer
data. - columnList() - Method in class com.rapidminer.belt.table.Table
-
Returns an immutable list of all table columns of this table.
- ColumnMetaData - Interface in com.rapidminer.belt.util
-
Meta data for a single column.
- ColumnMetaData.Uniqueness - Enum in com.rapidminer.belt.util
-
The uniqueness level of a column data type.
- ColumnReference - Class in com.rapidminer.belt.util
-
References another column in the table, e.g., to represent the relation between a prediction and a score column.
- ColumnReference(String) - Constructor for class com.rapidminer.belt.util.ColumnReference
- ColumnReference(String, String) - Constructor for class com.rapidminer.belt.util.ColumnReference
- ColumnRole - Enum in com.rapidminer.belt.util
-
Marks a column as having a special role such as being an identifier (
ColumnRole.ID
. - columns() - Method in class com.rapidminer.belt.table.ColumnSelector
-
Returns the columns which have the specified properties.
- columns(int[]) - Method in class com.rapidminer.belt.table.Table
-
Creates a new table consisting of the given columns.
- columns(List<String>) - Method in class com.rapidminer.belt.table.Table
-
Creates a new table consisting of the given columns.
- Columns - Class in com.rapidminer.belt.column
-
Utility functions for columns.
- Columns.CleanupOption - Enum in com.rapidminer.belt.column
-
The possible cleanup options for
Columns.removeUnusedDictionaryValues(Column, CleanupOption, Context)
- Columns.IllegalReplacementException - Exception in com.rapidminer.belt.column
-
Exception thrown when a replacement in a dictionary is not possible since otherwise the same value would be at two indices.
- Columns.InternalColumns - Class in com.rapidminer.belt.column
-
Column methods for internal access.
- ColumnSelector - Class in com.rapidminer.belt.table
-
Allows to select columns that satisfy certain properties.
- ColumnType<T> - Class in com.rapidminer.belt.column
-
Describes the type of a column but does not hold any data.
- columnTypeId(String) - Method in class com.rapidminer.belt.table.TableBuilder
-
Returns the
Column.TypeId
of the column specified by the given label. - ColumnUtils - Class in com.rapidminer.belt.column
-
This class is used for some internal computations that are mostly used by columns or for column creation.
- com.rapidminer.belt.buffer - package com.rapidminer.belt.buffer
- com.rapidminer.belt.column - package com.rapidminer.belt.column
- com.rapidminer.belt.column.io - package com.rapidminer.belt.column.io
- com.rapidminer.belt.column.type - package com.rapidminer.belt.column.type
- com.rapidminer.belt.execution - package com.rapidminer.belt.execution
- com.rapidminer.belt.function - package com.rapidminer.belt.function
- com.rapidminer.belt.reader - package com.rapidminer.belt.reader
- com.rapidminer.belt.table - package com.rapidminer.belt.table
- com.rapidminer.belt.transform - package com.rapidminer.belt.transform
- com.rapidminer.belt.util - package com.rapidminer.belt.util
- COMPACT - com.rapidminer.belt.column.Columns.CleanupOption
-
Creates a new dictionary containing only the used dictionary values and remaps the data.
- compactDictionaries(Table) - Static method in class com.rapidminer.belt.table.Tables
-
Compacts all nominal dictionaries with gaps.
- compactDictionary(Column) - Static method in class com.rapidminer.belt.column.Columns
-
Creates a new column with a dictionary that contains the same object values as the input but with continuous category indices.
- comparator() - Method in class com.rapidminer.belt.column.ColumnType
-
Returns a comparator for complex elements types.
- compareTo(StringList) - Method in class com.rapidminer.belt.column.type.StringList
- compareTo(StringSet) - Method in class com.rapidminer.belt.column.type.StringSet
- compute(Column, Statistics.Statistic, Context) - Static method in class com.rapidminer.belt.column.Statistics
-
Computes a single statistic for the given column.
- compute(Column, Set<Statistics.Statistic>, Context) - Static method in class com.rapidminer.belt.column.Statistics
-
Computes one or more statistics for the given column.
- contains(Object) - Method in class com.rapidminer.belt.column.type.StringList
- contains(Object) - Method in class com.rapidminer.belt.column.type.StringSet
- contains(String) - Method in class com.rapidminer.belt.table.Table
-
Checks whether the table contains a column using the given label.
- contains(String) - Method in class com.rapidminer.belt.table.TableBuilder
-
Checks whether the builder currently contains a column using the given label.
- containsAll(Collection<?>) - Method in class com.rapidminer.belt.column.type.StringList
- containsAll(Collection<?>) - Method in class com.rapidminer.belt.column.type.StringSet
- Context - Interface in com.rapidminer.belt.execution
-
Execution context for arbitrary, concurrent background jobs.
- COUNT - com.rapidminer.belt.column.Statistics.Statistic
-
The number of values (not counting missing values) in the column.
- countForIndex(int) - Method in class com.rapidminer.belt.column.Statistics.CategoricalIndexCounts
-
Returns how often a certain category index appears in the column this statistics was calculated for.
- create() - Method in class com.rapidminer.belt.table.MixedRowWriter
-
Creates a
Table
from the data inside the row writer. - create() - Method in class com.rapidminer.belt.table.NumericRowWriter
-
Creates a
Table
from the data inside the row writer. - createInverse() - Method in class com.rapidminer.belt.column.Dictionary
-
Creates a new map from object value to category index.
D
- data() - Method in class com.rapidminer.belt.util.IntegerFormats.PackedIntegers
-
Returns the array holding the (packed) data.
- DATE_TIME - com.rapidminer.belt.column.Column.TypeId
-
64 bit UTC timestamps (seconds), and 32 bit fraction of a second (nanoseconds, optional).
- DATETIME - Static variable in class com.rapidminer.belt.column.ColumnType
-
Complex id for columns holding 64 bit UTC timestamps (seconds), and 32Bit fraction of a second (nanoseconds, optional).
- dateTimeBuffer(int, boolean) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given size to create a
Column
of type idColumn.TypeId.DATE_TIME
. - dateTimeBuffer(int, boolean, boolean) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given size to create a
Column
of type idColumn.TypeId.DATE_TIME
. - dateTimeBuffer(Column) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer to create a
Column
of typeColumn.TypeId.DATE_TIME
by copying the data from the given column. - DateTimeBuffer - Class in com.rapidminer.belt.buffer
-
Abstract super-class of buffers for date-time instances
- DateTimeBuffer() - Constructor for class com.rapidminer.belt.buffer.DateTimeBuffer
- DateTimeBufferSparse - Class in com.rapidminer.belt.buffer
-
Abstract super class of sparse date time buffers.
- DateTimeBufferSparse(long, int, boolean) - Constructor for class com.rapidminer.belt.buffer.DateTimeBufferSparse
-
Creates a sparse buffer of the given length to create a sparse
Column
of type idColumn.TypeId.DATE_TIME
. - DateTimeBufferSparse(Instant, int, boolean) - Constructor for class com.rapidminer.belt.buffer.DateTimeBufferSparse
-
Creates a sparse buffer of the given length to create a sparse
Column
of type idColumn.TypeId.DATE_TIME
. - DateTimeColumnBuilder - Class in com.rapidminer.belt.column.io
-
Builder for date-time columns out of
ByteBuffer
s. - DateTimeColumnBuilder(int) - Constructor for class com.rapidminer.belt.column.io.DateTimeColumnBuilder
-
Creates a column builder for a
Column.TypeId.DATE_TIME
column of the given length. - DEFAULT - com.rapidminer.belt.execution.Workload
-
Use the default configuration.
- DEFAULT_GROWTH_FACTOR - Static variable in class com.rapidminer.belt.util.ArrayBuilderConfiguration
-
The default growth factor.
- DEFAULT_INITIAL_CHUNK_SIZE - Static variable in class com.rapidminer.belt.util.ArrayBuilderConfiguration
-
The default initial chunk size.
- DEFAULT_MAX_CHUNK_SIZE - Static variable in class com.rapidminer.belt.util.ArrayBuilderConfiguration
-
The default maximum chunk size.
- defaultContext() - Static method in class com.rapidminer.belt.util.Belt
-
Returns the default execution context.
- defaultValue - Variable in class com.rapidminer.belt.buffer.RealBufferSparse
-
The buffer's (usually most common) default value.
- DESCENDING - com.rapidminer.belt.util.Order
-
Reversed standard order, e.g., -1, -2, -3, ... for negative integers.
- Dictionary - Class in com.rapidminer.belt.column
-
A dictionary is a one-to-one mapping of category indices to distinct String values.
- Dictionary.Entry - Class in com.rapidminer.belt.column
-
An entry of a
Dictionary
, consisting of a category index and the associated object value. - differentValues() - Method in class com.rapidminer.belt.buffer.Int32NominalBuffer
- differentValues() - Method in class com.rapidminer.belt.buffer.Int32NominalBufferSparse
- differentValues() - Method in class com.rapidminer.belt.buffer.NominalBuffer
-
Returns the number of different values that were fed into this buffer.
- differentValues() - Method in class com.rapidminer.belt.buffer.NominalBufferSparse
-
Returns the number of different values that were fed into this buffer.
- differentValues() - Method in class com.rapidminer.belt.buffer.UInt16NominalBuffer
- differentValues() - Method in class com.rapidminer.belt.buffer.UInt16NominalBufferSparse
- differentValues() - Method in class com.rapidminer.belt.buffer.UInt2NominalBuffer
- differentValues() - Method in class com.rapidminer.belt.buffer.UInt4NominalBuffer
- differentValues() - Method in class com.rapidminer.belt.buffer.UInt8NominalBuffer
- differentValues() - Method in class com.rapidminer.belt.buffer.UInt8NominalBufferSparse
- DoubleArrayBuilder - Class in com.rapidminer.belt.util
-
Memory and time efficient builder for double arrays that can be used if the length of the double array is unknown while building it.
- DoubleArrayBuilder() - Constructor for class com.rapidminer.belt.util.DoubleArrayBuilder
-
Creates a new builder with the default initial chunk size, default growth factor and default maximum chunk size.
- DoubleArrayBuilder(ArrayBuilderConfiguration) - Constructor for class com.rapidminer.belt.util.DoubleArrayBuilder
-
Creates a new builder.
- DoubleBinaryPredicate - Interface in com.rapidminer.belt.function
-
Predicate that tests a pair of double values.
E
- elementType() - Method in class com.rapidminer.belt.column.ColumnType
-
Returns the complex type of the column elements.
- ENCODING - com.rapidminer.belt.util.ColumnRole
- Entry() - Constructor for class com.rapidminer.belt.column.Dictionary.Entry
- EQUAL - com.rapidminer.belt.table.Tables.ColumnSetRequirement
-
The column set of the table must be equal to the one of the schema.
- equals(Object) - Method in class com.rapidminer.belt.column.BooleanDictionary
- equals(Object) - Method in class com.rapidminer.belt.column.ColumnType
- equals(Object) - Method in class com.rapidminer.belt.column.Dictionary
- equals(Object) - Method in class com.rapidminer.belt.column.Statistics.CategoricalIndexCounts
- equals(Object) - Method in class com.rapidminer.belt.column.Statistics.Result
- equals(Object) - Method in class com.rapidminer.belt.column.type.StringList
- equals(Object) - Method in class com.rapidminer.belt.column.type.StringSet
- equals(Object) - Method in class com.rapidminer.belt.util.ColumnAnnotation
- equals(Object) - Method in class com.rapidminer.belt.util.ColumnReference
- estimateDefaultValue(double[], double) - Static method in class com.rapidminer.belt.column.ColumnUtils
-
This method takes a uniformly distributed sample of some data and calculates an estimate of the original data's sparsity.
- estimateDefaultValue(int[], double) - Static method in class com.rapidminer.belt.column.ColumnUtils
-
This method takes a uniformly distributed sample of some data and calculates an estimate of the original data's sparsity.
- estimateDefaultValue(int, double, byte[], SplittableRandom) - Static method in class com.rapidminer.belt.column.ColumnUtils
-
This method takes data and samples from it (uniformly distributed) to calculate an estimate of the original data's sparsity.
- estimateDefaultValue(int, double, double[], SplittableRandom) - Static method in class com.rapidminer.belt.column.ColumnUtils
-
This method takes data and samples from it (uniformly distributed) to calculate an estimate of the original data's sparsity.
- estimateDefaultValue(int, double, int[], SplittableRandom) - Static method in class com.rapidminer.belt.column.ColumnUtils
-
This method takes data and samples from it (uniformly distributed) to calculate an estimate of the original data's sparsity.
- estimateDefaultValue(int, double, long[], SplittableRandom) - Static method in class com.rapidminer.belt.column.ColumnUtils
-
This method takes data and samples from it (uniformly distributed) to calculate an estimate of the original data's sparsity.
- estimateDefaultValue(int, double, short[], SplittableRandom) - Static method in class com.rapidminer.belt.column.ColumnUtils
-
This method takes data and samples from it (uniformly distributed) to calculate an estimate of the original data's sparsity.
- estimateDefaultValue(long[], double) - Static method in class com.rapidminer.belt.column.ColumnUtils
-
This method takes a uniformly distributed sample of some data and calculates an estimate of the original data's sparsity.
- ExecutionAbortedException - Exception in com.rapidminer.belt.execution
-
Runtime exception to indicate that the execution of a job has been aborted.
- ExecutionAbortedException(String) - Constructor for exception com.rapidminer.belt.execution.ExecutionAbortedException
-
Constructs a new exception with the given detail message.
- ExecutionAbortedException(String, Throwable) - Constructor for exception com.rapidminer.belt.execution.ExecutionAbortedException
-
Constructs a new exception with the given detail message and cause.
- ExecutionUtils - Class in com.rapidminer.belt.execution
-
Utility functions for executing
Callable
s in aContext
.
F
- fill(double[]) - Method in interface com.rapidminer.belt.reader.NumericRow
-
Fills the given values array with the numeric row's values.
- fill(double[]) - Method in class com.rapidminer.belt.reader.NumericRowReader
- fill(double[], int) - Method in class com.rapidminer.belt.column.CategoricalColumn
- fill(double[], int) - Method in class com.rapidminer.belt.column.Column
-
Fills the given array with column data starting with the given row index.
- fill(double[], int, int, int) - Method in class com.rapidminer.belt.column.CategoricalColumn
- fill(double[], int, int, int) - Method in class com.rapidminer.belt.column.Column
-
Fills the given array with column data starting with the given row index and using the given array offset and step size.
- fill(int[], int) - Method in class com.rapidminer.belt.column.CategoricalColumn
- fill(int[], int) - Method in class com.rapidminer.belt.column.Column
-
Fills the given array with column data starting with the given row index.
- fill(int[], int, int, int) - Method in class com.rapidminer.belt.column.CategoricalColumn
- fill(int[], int, int, int) - Method in class com.rapidminer.belt.column.Column
-
Fills the given array with column data starting with the given row index and using the given array offset and step size.
- fill(Object[], int) - Method in class com.rapidminer.belt.column.CategoricalColumn
- fill(Object[], int) - Method in class com.rapidminer.belt.column.Column
-
Fills the given array with column data starting with the given row index.
- fill(Object[], int, int, int) - Method in class com.rapidminer.belt.column.CategoricalColumn
- fill(Object[], int, int, int) - Method in class com.rapidminer.belt.column.Column
-
Fills the given array with column data starting with the given row index and using the given array offset and step size.
- filterCategorical(int[], Predicate<CategoricalRow>, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterCategorical(int, IntPredicate, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterCategorical(String, String, IntBinaryPredicate, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterCategorical(String, IntPredicate, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterCategorical(IntPredicate, Context) - Method in class com.rapidminer.belt.transform.Filterer
-
Filters the categorical filter column with respect to the predicate returning as result the accepted rows rows indices.
- filterCategorical(Predicate<CategoricalRow>, Context) - Method in class com.rapidminer.belt.transform.RowFilterer
-
Filters the categorical filter columns with respect to the predicate returning as result the accepted rows indices.
- filterCategorical(List<String>, Predicate<CategoricalRow>, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- Filterer - Class in com.rapidminer.belt.transform
-
Supplies filter methods starting from the given
Filterer.filterColumn
. - Filterer(Column) - Constructor for class com.rapidminer.belt.transform.Filterer
-
Creates a new transform for transformations of the given column.
- filterMixed(int[], Predicate<MixedRow>, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterMixed(Predicate<MixedRow>, Context) - Method in class com.rapidminer.belt.transform.RowFilterer
-
Filters the filter columns with respect to the predicate returning as result the accepted rows indices.
- filterMixed(List<String>, Predicate<MixedRow>, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterNumeric(int[], Predicate<NumericRow>, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterNumeric(int, DoublePredicate, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterNumeric(String, String, DoubleBinaryPredicate, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterNumeric(String, DoublePredicate, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterNumeric(DoublePredicate, Context) - Method in class com.rapidminer.belt.transform.Filterer
-
Filters the numeric-readable filter column with respect to the predicate returning as result the accepted rows indices.
- filterNumeric(Predicate<NumericRow>, Context) - Method in class com.rapidminer.belt.transform.RowFilterer
-
Filters the numeric-readable filter columns with respect to the predicate returning as result the accepted rows indices.
- filterNumeric(List<String>, Predicate<NumericRow>, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterObject(Class<T>, Predicate<T>, Context) - Method in class com.rapidminer.belt.transform.Filterer
-
Filters the object-readable filter column with respect to the predicate returning as result the accepted rows indices.
- filterObjects(int[], Class<T>, Predicate<ObjectRow<T>>, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterObjects(int, Class<T>, Predicate<T>, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterObjects(Class<T>, Predicate<ObjectRow<T>>, Context) - Method in class com.rapidminer.belt.transform.RowFilterer
-
Filters the object-readable filter columns with respect to the predicate returning as result the accepted rows indices.
- filterObjects(String, Class<T>, Predicate<T>, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterObjects(String, String, Class<T>, BiPredicate<T, T>, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- filterObjects(List<String>, Class<T>, Predicate<ObjectRow<T>>, Workload, Context) - Method in class com.rapidminer.belt.table.Table
-
Filters the table by the given filter predicate.
- findIncompatible(Table, Table, Tables.ColumnSetRequirement, Tables.TypeRequirement...) - Static method in class com.rapidminer.belt.table.Tables
-
Finds the columns in the table that are incompatible with the schema according to the further parameters.
- findMinimal(int) - Static method in enum com.rapidminer.belt.util.IntegerFormats.Format
-
Finds the smallest
IntegerFormats.Format
with maximal supported value greater or equal the parameter. - forEach(Consumer<? super String>) - Method in class com.rapidminer.belt.column.type.StringList
- forEach(Consumer<? super String>) - Method in class com.rapidminer.belt.column.type.StringSet
- forId(Column.TypeId) - Static method in class com.rapidminer.belt.column.ColumnType
-
Returns the unique
ColumnType
with this id. - format() - Method in class com.rapidminer.belt.util.IntegerFormats.PackedIntegers
-
Return the format of the (packed) data.
- freeze() - Method in class com.rapidminer.belt.buffer.NumericBuffer
-
Freezes the current state of the buffer.
- freeze() - Method in class com.rapidminer.belt.buffer.ObjectBuffer
-
Freezes the current state of the buffer.
G
- get(int) - Method in class com.rapidminer.belt.buffer.DateTimeBuffer
-
Retrieves the value at the given index.
- get(int) - Method in class com.rapidminer.belt.buffer.Int32NominalBuffer
- get(int) - Method in class com.rapidminer.belt.buffer.NominalBuffer
-
Retrieves the value at the given index.
- get(int) - Method in class com.rapidminer.belt.buffer.NumericBuffer
-
Retrieves the value at the given index.
- get(int) - Method in class com.rapidminer.belt.buffer.ObjectBuffer
-
Retrieves the value at the given index.
- get(int) - Method in class com.rapidminer.belt.buffer.TimeBuffer
-
Retrieves the value at the given index.
- get(int) - Method in class com.rapidminer.belt.buffer.UInt16NominalBuffer
- get(int) - Method in class com.rapidminer.belt.buffer.UInt2NominalBuffer
- get(int) - Method in class com.rapidminer.belt.buffer.UInt4NominalBuffer
- get(int) - Method in class com.rapidminer.belt.buffer.UInt8NominalBuffer
- get(int) - Method in class com.rapidminer.belt.column.Dictionary
-
Returns the object value associated to the given category index.
- get(int) - Method in class com.rapidminer.belt.column.type.StringList
- get(int) - Method in interface com.rapidminer.belt.reader.CategoricalRow
-
Returns the value of the this row at the given index.
- get(int) - Method in class com.rapidminer.belt.reader.CategoricalRowReader
-
Returns the value of the current row at the given index.
- get(int) - Method in interface com.rapidminer.belt.reader.NumericRow
-
Returns the value of the this row at the given index.
- get(int) - Method in class com.rapidminer.belt.reader.NumericRowReader
-
Returns the value of the current row at the given index.
- get(int) - Method in interface com.rapidminer.belt.reader.ObjectRow
-
Returns the value of the this row at the given index.
- get(int) - Method in class com.rapidminer.belt.reader.ObjectRowReader
-
Returns the value of the current row at the given index.
- getActualType() - Method in exception com.rapidminer.belt.table.Appender.IncompatibleTypesException
- getByteData() - Method in class com.rapidminer.belt.column.CategoricalColumn
-
Returns the underlying
byte
category indices of this column. - getByteDataCopy(CategoricalColumn) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Returns a copy of the byte data of a categorical column.
- getCategorical() - Method in class com.rapidminer.belt.column.Statistics.Result
-
Returns the categorical index of the result (if any).
- getColumn() - Method in class com.rapidminer.belt.util.ColumnReference
-
Returns the label of the referenced column.
- getColumnName() - Method in exception com.rapidminer.belt.table.Appender.IncompatibleColumnsException
- getColumnName() - Method in exception com.rapidminer.belt.table.Appender.IncompatibleTypesException
- getData() - Method in class com.rapidminer.belt.buffer.NumericBuffer
- getData() - Method in class com.rapidminer.belt.buffer.ObjectBuffer
- getData() - Method in class com.rapidminer.belt.util.ByteArrayBuilder
-
Returns the stored byte data in a newly created byte array.
- getData() - Method in class com.rapidminer.belt.util.DoubleArrayBuilder
-
Returns the stored double data in a newly created double array.
- getData() - Method in class com.rapidminer.belt.util.IntegerArrayBuilder
-
Returns the stored integer data in a newly created integer array.
- getData() - Method in class com.rapidminer.belt.util.LongArrayBuilder
-
Returns the stored long data in a newly created long array.
- getData() - Method in class com.rapidminer.belt.util.ShortArrayBuilder
-
Returns the stored short data in a newly created short array.
- getDefault() - Static method in class com.rapidminer.belt.util.ArrayBuilderConfiguration
-
Returns the default configuration.
- getDesiredType() - Method in exception com.rapidminer.belt.table.Appender.IncompatibleTypesException
- getDictionary() - Method in class com.rapidminer.belt.column.Column
-
Returns the dictionary of the categorical column.
- getDictionaryList(Dictionary) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Returns the internal list of dictionary values.
- getFirstMetaData(String, Class<T>) - Method in class com.rapidminer.belt.table.Table
-
Returns the first meta datum with the given type attached to the column with the given label (if any).
- getFirstMetaData(String, Class<T>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Returns the first meta datum with the given type attached to the column with the given label (if any).
- getFormat() - Method in class com.rapidminer.belt.column.CategoricalColumn
-
Returns the format of the underlying category indices.
- getIndex() - Method in class com.rapidminer.belt.column.Dictionary.Entry
-
Returns the category index.
- getIndex() - Method in exception com.rapidminer.belt.table.Appender.IncompatibleTypesException
- getIndex(int) - Method in interface com.rapidminer.belt.reader.MixedRow
-
Returns the category index value of the this row at the given index if the entry is part of a
Column.Category.CATEGORICAL
column. - getIndex(int) - Method in class com.rapidminer.belt.reader.MixedRowReader
-
Returns the category index value of the this row at the given index if the entry is part of a
Column.Category.CATEGORICAL
column. - getIntData() - Method in class com.rapidminer.belt.column.CategoricalColumn
-
Returns the underlying
int
category indices of this column. - getMetaData(String) - Method in class com.rapidminer.belt.table.Table
-
Returns the meta data attached to the column with the given label (if any).
- getMetaData(String) - Method in class com.rapidminer.belt.table.TableBuilder
-
Returns the meta data attached to the column with the given label (if any).
- getMetaData(String, Class<T>) - Method in class com.rapidminer.belt.table.Table
-
Returns the meta data with the given type attached to the column with the given label (if any).
- getMetaData(String, Class<T>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Returns the meta data with the given type attached to the column with the given label (if any).
- getNegativeIndex() - Method in class com.rapidminer.belt.column.BooleanDictionary
- getNegativeIndex() - Method in class com.rapidminer.belt.column.Dictionary
-
Returns the negative index if this dictionary
Dictionary.hasNegative()
orBooleanDictionary.NO_ENTRY
. - getNumeric() - Method in class com.rapidminer.belt.column.Statistics.Result
-
Returns the numeric value of the result (if any).
- getNumeric(int) - Method in interface com.rapidminer.belt.reader.MixedRow
-
Returns the numeric value of the this row at the given index.
- getNumeric(int) - Method in class com.rapidminer.belt.reader.MixedRowReader
-
Returns the numeric value of the this row at the given index.
- getObject() - Method in class com.rapidminer.belt.column.Statistics.Result
-
Returns the complex value of the result (if any).
- getObject(int) - Method in interface com.rapidminer.belt.reader.MixedRow
-
Returns the object value of the this row at the given index.
- getObject(int) - Method in class com.rapidminer.belt.reader.MixedRowReader
-
Returns the object value of the this row at the given index.
- getObject(int, Class<T>) - Method in interface com.rapidminer.belt.reader.MixedRow
-
Returns the object value of the this row at the given index.
- getObject(int, Class<T>) - Method in class com.rapidminer.belt.reader.MixedRowReader
-
Returns the object value of the this row at the given index.
- getObject(Class<T>) - Method in class com.rapidminer.belt.column.Statistics.Result
-
Returns the complex value of the result (if any).
- getParallelism() - Method in interface com.rapidminer.belt.execution.Context
-
Returns the targeted parallelism level of this execution context.
- getParallelism() - Method in class com.rapidminer.belt.execution.SequentialContext
- getPositiveIndex() - Method in class com.rapidminer.belt.column.BooleanDictionary
- getPositiveIndex() - Method in class com.rapidminer.belt.column.Dictionary
-
Returns the positive index if this dictionary
Dictionary.hasPositive()
orBooleanDictionary.NO_ENTRY
. - getShortData() - Method in class com.rapidminer.belt.column.CategoricalColumn
-
Returns the underlying unsigned
short
category indices of this column. - getShortDataCopy(CategoricalColumn) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Returns a copy of the short data of a categorical column.
- getTableIndex() - Method in exception com.rapidminer.belt.table.Appender.IncompatibleColumnsException
- getTableIndex() - Method in exception com.rapidminer.belt.table.Appender.IncompatibleTableWidthException
- getValue() - Method in class com.rapidminer.belt.column.Dictionary.Entry
-
Returns the dictionary value at the category index.
- getValue() - Method in class com.rapidminer.belt.util.ColumnReference
-
Returns an optional referenced value.
H
- hasCapability(Column.Capability) - Method in class com.rapidminer.belt.column.ColumnType
-
Returns whether the column to which this column type belongs has the capability.
- hashCode() - Method in class com.rapidminer.belt.column.BooleanDictionary
- hashCode() - Method in class com.rapidminer.belt.column.ColumnType
- hashCode() - Method in class com.rapidminer.belt.column.Dictionary
- hashCode() - Method in class com.rapidminer.belt.column.Statistics.CategoricalIndexCounts
- hashCode() - Method in class com.rapidminer.belt.column.Statistics.Result
- hashCode() - Method in class com.rapidminer.belt.column.type.StringList
- hashCode() - Method in class com.rapidminer.belt.column.type.StringSet
- hashCode() - Method in class com.rapidminer.belt.util.ColumnAnnotation
- hashCode() - Method in class com.rapidminer.belt.util.ColumnReference
- hasNegative() - Method in class com.rapidminer.belt.column.BooleanDictionary
- hasNegative() - Method in class com.rapidminer.belt.column.Dictionary
-
Returns
true
if the boolean dictionary has a negative index. - hasPositive() - Method in class com.rapidminer.belt.column.BooleanDictionary
- hasPositive() - Method in class com.rapidminer.belt.column.Dictionary
-
Returns
true
if the boolean dictionary has a positive index. - hasRemaining() - Method in class com.rapidminer.belt.reader.CategoricalReader
- hasRemaining() - Method in class com.rapidminer.belt.reader.CategoricalRowReader
- hasRemaining() - Method in class com.rapidminer.belt.reader.MixedRowReader
- hasRemaining() - Method in class com.rapidminer.belt.reader.NumericReader
- hasRemaining() - Method in class com.rapidminer.belt.reader.NumericRowReader
- hasRemaining() - Method in class com.rapidminer.belt.reader.ObjectReader
- hasRemaining() - Method in class com.rapidminer.belt.reader.ObjectRowReader
- height() - Method in class com.rapidminer.belt.table.Table
- HUGE - com.rapidminer.belt.execution.Workload
-
Huge workload per data point, i.e., a workload so high that there is no benefit in batch-processing the data.
I
- id() - Method in class com.rapidminer.belt.column.ColumnType
-
Identifies the column type as one of the builtin types, e.g.,
Column.TypeId.NOMINAL
. - ID - com.rapidminer.belt.util.ColumnRole
- index(String) - Method in class com.rapidminer.belt.table.Table
-
Returns the index of the column with the given label.
- INDEX_COUNTS - com.rapidminer.belt.column.Statistics.Statistic
-
How often each category index appears in a categorical column.
- indexFormat() - Method in class com.rapidminer.belt.buffer.Int32NominalBuffer
- indexFormat() - Method in class com.rapidminer.belt.buffer.Int32NominalBufferSparse
- indexFormat() - Method in class com.rapidminer.belt.buffer.NominalBuffer
- indexFormat() - Method in class com.rapidminer.belt.buffer.NominalBufferSparse
- indexFormat() - Method in class com.rapidminer.belt.buffer.UInt16NominalBuffer
- indexFormat() - Method in class com.rapidminer.belt.buffer.UInt16NominalBufferSparse
- indexFormat() - Method in class com.rapidminer.belt.buffer.UInt2NominalBuffer
- indexFormat() - Method in class com.rapidminer.belt.buffer.UInt4NominalBuffer
- indexFormat() - Method in class com.rapidminer.belt.buffer.UInt8NominalBuffer
- indexFormat() - Method in class com.rapidminer.belt.buffer.UInt8NominalBufferSparse
- indexOf(Object) - Method in class com.rapidminer.belt.column.type.StringList
- Int32NominalBuffer - Class in com.rapidminer.belt.buffer
-
Implementation of a
NominalBuffer
with category index formatIntegerFormats.Format.SIGNED_INT32
that can holdInteger.MAX_VALUE
many different categories. - Int32NominalBufferSparse - Class in com.rapidminer.belt.buffer
-
Implementation of a
NominalBufferSparse
with category index formatIntegerFormats.Format.SIGNED_INT32
that can holdInteger.MAX_VALUE
many different categories. - IntBinaryPredicate - Interface in com.rapidminer.belt.function
-
Predicate that tests a pair of int values.
- INTEGER_53_BIT - com.rapidminer.belt.column.Column.TypeId
-
64 bit double values with no fractional digits.
- INTEGER_53_BIT - Static variable in class com.rapidminer.belt.column.ColumnType
-
Complex id for columns holding 64 bit double values with no fractional digits.
- integer53BitBuffer(int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given length to create a
Column
of typeColumn.TypeId.INTEGER_53_BIT
. - integer53BitBuffer(int, boolean) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given length to create a
Column
of typeColumn.TypeId.INTEGER_53_BIT
. - integer53BitBuffer(Column) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer to create a
Column
of typeColumn.TypeId.INTEGER_53_BIT
by copying the data from the given column. - Integer53BitBufferSparse - Class in com.rapidminer.belt.buffer
-
Sparse integer buffer implementation with fixed length, internally storing double values.
- IntegerArrayBuilder - Class in com.rapidminer.belt.util
-
Memory and time efficient builder for integer arrays that can be used if the length of the integer array is unknown while building it.
- IntegerArrayBuilder() - Constructor for class com.rapidminer.belt.util.IntegerArrayBuilder
-
Creates a new builder with the default initial chunk size, default growth factor and default maximum chunk size.
- IntegerArrayBuilder(ArrayBuilderConfiguration) - Constructor for class com.rapidminer.belt.util.IntegerArrayBuilder
-
Creates a new builder.
- IntegerFormats - Class in com.rapidminer.belt.util
-
Utility functions for the different integer formats used by Belt.
- IntegerFormats.Format - Enum in com.rapidminer.belt.util
-
Integer formats used by Belt.
- IntegerFormats.PackedIntegers - Class in com.rapidminer.belt.util
-
Container for byte arrays containing packed integer values.
- INTERPRETATION - com.rapidminer.belt.util.ColumnRole
- isActive() - Method in interface com.rapidminer.belt.execution.Context
-
Returns
true
if the execution context is active. - isActive() - Method in class com.rapidminer.belt.execution.SequentialContext
- isAtMostBicategorical(Column) - Static method in class com.rapidminer.belt.column.Columns
-
Checks if the column is categorical with at most two non-null values.
- isBicategorical(Column) - Static method in class com.rapidminer.belt.column.Columns
-
Checks if the column is categorical with exactly two non-null values.
- isBicategoricalAndBoolean(Column) - Static method in class com.rapidminer.belt.column.Columns
-
Checks if the column is categorical and boolean with exactly two non-null values, one positive and one negative.
- isBoolean() - Method in class com.rapidminer.belt.column.BooleanDictionary
- isBoolean() - Method in class com.rapidminer.belt.column.Dictionary
-
Whether this dictionary knows about positive and negative values.
- isEmpty() - Method in class com.rapidminer.belt.column.type.StringList
- isEmpty() - Method in class com.rapidminer.belt.column.type.StringSet
- iterator() - Method in class com.rapidminer.belt.column.Dictionary
-
Iterator for the non-null object values and their category indices in this dictionary in order of the category indices.
- iterator() - Method in class com.rapidminer.belt.column.type.StringList
- iterator() - Method in class com.rapidminer.belt.column.type.StringSet
L
- label(int) - Method in class com.rapidminer.belt.table.Table
-
Looks up the label of the column with the given index.
- LABEL - com.rapidminer.belt.util.ColumnRole
- labels() - Method in class com.rapidminer.belt.table.ColumnSelector
-
Returns the labels of the columns which have the specified properties.
- labels() - Method in class com.rapidminer.belt.table.Table
- labels() - Method in class com.rapidminer.belt.table.TableBuilder
-
Returns the currently existing column labels as unmodifiable set.
- LARGE - com.rapidminer.belt.execution.Workload
-
Large workload per data point, e.g., computation of complex metrics between multiple data points.
- lastIndexOf(Object) - Method in class com.rapidminer.belt.column.type.StringList
- LEAST - com.rapidminer.belt.column.Statistics.Statistic
-
(On of) the least frequent items in the column (if any).
- listIterator() - Method in class com.rapidminer.belt.column.type.StringList
- listIterator(int) - Method in class com.rapidminer.belt.column.type.StringList
- LongArrayBuilder - Class in com.rapidminer.belt.util
-
Memory and time efficient builder for long arrays that can be used if the length of the long array is unknown while building it.
- LongArrayBuilder() - Constructor for class com.rapidminer.belt.util.LongArrayBuilder
-
Creates a new builder with the default initial chunk size, default growth factor and default maximum chunk size.
- LongArrayBuilder(ArrayBuilderConfiguration) - Constructor for class com.rapidminer.belt.util.LongArrayBuilder
-
Creates a new builder.
M
- map(int[], boolean, ConcurrentHashMap<int[], CompletableFuture<int[]>>) - Method in interface com.rapidminer.belt.column.CacheMappedColumn
-
Specialized implementation of
Column.map(int[], boolean)
that checks the given cache for previously computed merges of the current and the given mapping. - map(Column, int[], boolean) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Maps a column wrt. to a mapping, see
Column.map(int[], boolean)
. - Mapping - Class in com.rapidminer.belt.util
-
Utility class for mapping methods.
- matchesPredicate(BiPredicate<Column, String>) - Method in class com.rapidminer.belt.table.ColumnSelector
-
Adds the requirement to the selector that all selected columns must match the given predicate.
- MAX - com.rapidminer.belt.column.Statistics.Statistic
-
The maximum value in the column (if any).
- MAX_DENSITY_DOUBLE_SPARSE_COLUMN - Static variable in class com.rapidminer.belt.column.ColumnUtils
-
DoubleSparseColumn falls back to a dense column if its density is above this value.
- MAX_SECOND - Static variable in class com.rapidminer.belt.buffer.DateTimeBuffer
- MAXIMAL_RAW_SIZE - Static variable in class com.rapidminer.belt.column.BooleanDictionary
-
The maximal size of the list underlying a boolean dictionary.
- maximalIndex() - Method in class com.rapidminer.belt.column.Dictionary
-
Returns the maximal category index that is associated to an object or
0
. - maxValue() - Method in enum com.rapidminer.belt.util.IntegerFormats.Format
-
Returns the maximum value supported by this format.
- MEAN - com.rapidminer.belt.column.Statistics.Statistic
-
The arithmetic mean of the column values (if the count is non-zero).
- MEDIAN - com.rapidminer.belt.column.Statistics.Statistic
-
The same as the 50% percentile (
Statistics.Statistic.P50
). - MEDIUM - com.rapidminer.belt.execution.Workload
-
Medium workload per data point, e.g., string manipulations.
- merge(int[], int[]) - Static method in class com.rapidminer.belt.util.Mapping
-
Merges (composes) the given mappings
f: X -> Y
andg: Y -> Z
into a single mappingh: X -> Z
. - MERGE - com.rapidminer.belt.table.Tables.DictionaryHandling
-
If both columns are categorical of the same type, the dictionaries are merged, starting with the one of the schema.
- mergeDictionary(Column, Column) - Static method in class com.rapidminer.belt.column.Columns
-
Merges the dictionary of the from-column with the one of the to-column.
- METADATA - com.rapidminer.belt.util.ColumnRole
- MIN - com.rapidminer.belt.column.Statistics.Statistic
-
The minimum value in the column (if any).
- MIN_SECOND - Static variable in class com.rapidminer.belt.buffer.DateTimeBuffer
- MISSING_CATEGORY - Static variable in class com.rapidminer.belt.reader.CategoricalReader
-
The category for missing value.
- MISSING_COLUMN - com.rapidminer.belt.table.Tables.Incompatibility
-
The column is in the schema but missing from the table.
- MixedRow - Interface in com.rapidminer.belt.reader
-
A row of a
Table
that supports reading different formats. - mixedRowReader(Column, Column, Column...) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new reader for row-wise reads of the given columns.
- mixedRowReader(Table) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new reader for row-wise reads of the given columns.
- mixedRowReader(List<Column>) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new reader for row-wise reads of the given columns.
- MixedRowReader - Class in com.rapidminer.belt.reader
-
Buffered row-oriented reader for multiple
Column
s of different capabilities. - mixedRowWriter(List<String>, List<Column.TypeId>, boolean) - Static method in class com.rapidminer.belt.table.Writers
-
Writer for a new
Table
consisting of non-numeric columns with the given column labels and types and an unknown number of rows. - mixedRowWriter(List<String>, List<Column.TypeId>, int, boolean) - Static method in class com.rapidminer.belt.table.Writers
-
Writer for a new
Table
with the given column labels and the given expected number of rows. - MixedRowWriter - Class in com.rapidminer.belt.table
-
Writer to create a
Table
from row-wise data. - MODE - com.rapidminer.belt.column.Statistics.Statistic
-
(One of) the most frequent items in the column (if any).
- move() - Method in class com.rapidminer.belt.reader.CategoricalRowReader
-
Moves the reader to the next row.
- move() - Method in class com.rapidminer.belt.reader.MixedRowReader
-
Moves the reader to the next row.
- move() - Method in class com.rapidminer.belt.reader.NumericRowReader
-
Moves the reader to the next row.
- move() - Method in class com.rapidminer.belt.reader.ObjectRowReader
-
Moves the reader to the next row.
- move() - Method in class com.rapidminer.belt.table.MixedRowWriter
-
Moves the reader to the next row.
- move() - Method in class com.rapidminer.belt.table.NumericRowWriter
-
Moves the reader to the next row.
N
- nanoPosition() - Method in class com.rapidminer.belt.column.io.DateTimeColumnBuilder
-
Returns the current position until which the nanosecond data has been written.
- negate() - Method in interface com.rapidminer.belt.function.DoubleBinaryPredicate
-
Negates this predicate.
- negate() - Method in interface com.rapidminer.belt.function.IntBinaryPredicate
-
Negates this predicate.
- newCategoricalColumn(ColumnType<String>, int[], List<String>) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new categorical column from the given data.
- newCategoricalColumn(ColumnType<String>, int[], List<String>, int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new categorical column from the given data.
- newCategoricalColumn(ColumnType<String>, short[], List<String>) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new categorical column from the given data.
- newCategoricalColumn(ColumnType<String>, short[], List<String>, int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new categorical column from the given data.
- newCategoricalColumn(ColumnType<String>, IntegerFormats.PackedIntegers, List<String>) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new categorical column from the given data.
- newCategoricalColumn(ColumnType<String>, IntegerFormats.PackedIntegers, List<String>, int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new categorical column from the given data.
- newDateTimeColumn(long[], int[]) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new date-time column from the given data.
- newInt32Buffer(ColumnType<String>, int) - Method in class com.rapidminer.belt.buffer.Buffers.InternalBuffers
-
Creates a new int32 categorical buffer of the given length.
- newNumericColumn(Column.TypeId, double[]) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new numeric column from the given data.
- newObjectBuffer(ColumnType<T>, int) - Method in class com.rapidminer.belt.buffer.Buffers.InternalBuffers
-
Creates a new object buffer of the given length.
- newObjectColumn(ColumnType<T>, Object[]) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new categorical column from the given data.
- newSingleValueCategoricalColumn(ColumnType<String>, String, int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new categorical column of the given size that is constantly one value, represented as sparse column.
- newSparseCategoricalColumn(ColumnType<String>, int[], byte[], List<String>, byte, int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new sparse categorical column from the given data.
- newSparseCategoricalColumn(ColumnType<String>, int[], byte[], List<String>, byte, int, int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new sparse categorical column from the given data.
- newSparseCategoricalColumn(ColumnType<String>, int[], int[], List<String>, int, int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new sparse categorical column from the given data.
- newSparseCategoricalColumn(ColumnType<String>, int[], int[], List<String>, int, int, int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new sparse categorical column from the given data.
- newSparseCategoricalColumn(ColumnType<String>, int[], short[], List<String>, short, int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new sparse categorical column from the given data.
- newSparseCategoricalColumn(ColumnType<String>, int[], short[], List<String>, short, int, int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new sparse categorical column from the given data.
- newSparseDateTimeColumn(long, int[], long[], int[], int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new sparse date-time column from the given data.
- newSparseNumericColumn(Column.TypeId, double, int[], double[], int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new sparse numeric column from the given sparse data.
- newSparseTimeColumn(long, int[], long[], int) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new sparse numeric column from the given sparse data.
- newTableBuilder(int) - Static method in class com.rapidminer.belt.table.Builders
-
Creates a builder for a new
Table
with the given number of rows. - newTableBuilder(Table) - Static method in class com.rapidminer.belt.table.Builders
-
Creates a builder for a new
Table
derived from the given table. - newTimeColumn(long[]) - Method in class com.rapidminer.belt.column.Columns.InternalColumns
-
Creates a new time column from the given data.
- newUInt16Buffer(ColumnType<String>, int) - Method in class com.rapidminer.belt.buffer.Buffers.InternalBuffers
-
Creates a new uint16 categorical buffer of the given length.
- newUInt2Buffer(ColumnType<String>, int) - Method in class com.rapidminer.belt.buffer.Buffers.InternalBuffers
-
Creates a new uint2 categorical buffer of the given length.
- newUInt4Buffer(ColumnType<String>, int) - Method in class com.rapidminer.belt.buffer.Buffers.InternalBuffers
-
Creates a new uint4 categorical buffer of the given length.
- newUInt8Buffer(ColumnType<String>, int) - Method in class com.rapidminer.belt.buffer.Buffers.InternalBuffers
-
Creates a new uint8 categorical buffer of the given length.
- newUInt8Buffer(ColumnType<String>, int, IntegerFormats.Format) - Method in class com.rapidminer.belt.buffer.Buffers.InternalBuffers
-
Creates a new uint8 categorical buffer of the given length with the given target format.
- NO_ENTRY - Static variable in class com.rapidminer.belt.column.BooleanDictionary
-
The placeholder for the category index when there is no positive or negative index.
- NOMINAL - com.rapidminer.belt.column.Column.TypeId
-
Categorical strings.
- NOMINAL - Static variable in class com.rapidminer.belt.column.ColumnType
-
Complex id for columns holding categorical strings.
- nominalBuffer(int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given length to create a
Column
of typeColumn.TypeId.NOMINAL
. - nominalBuffer(int, int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given length to create a
Column
of typeColumn.TypeId.NOMINAL
with at most the given number of categories. - nominalBuffer(Column) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer to create a
Column
of typeColumn.TypeId.NOMINAL
by copying the data from the given column. - nominalBuffer(Column, int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer to create a
Column
of typeColumn.TypeId.NOMINAL
with at most the given number of categories by copying the data from the given column. - NominalBuffer - Class in com.rapidminer.belt.buffer
-
Temporary random access buffer that can be used to define a
CategoricalColumn
. - NominalBuffer(ColumnType<String>) - Constructor for class com.rapidminer.belt.buffer.NominalBuffer
- NominalBufferSparse - Class in com.rapidminer.belt.buffer
-
Temporary random access buffer that can be used to define a
CategoricalColumn
. - NominalBufferSparse(ColumnType<String>) - Constructor for class com.rapidminer.belt.buffer.NominalBufferSparse
- NominalColumnBuilder - Class in com.rapidminer.belt.column.io
-
Builder for nominal columns out of
ByteBuffer
s. - NominalColumnBuilder(LinkedHashSet<String>, int) - Constructor for class com.rapidminer.belt.column.io.NominalColumnBuilder
-
Creates a column builder for a
Column.TypeId.NOMINAL
column of the given length. - NONE - com.rapidminer.belt.util.ColumnMetaData.Uniqueness
-
No limitations.
- NOT_SUB_DICTIONARY - com.rapidminer.belt.table.Tables.Incompatibility
-
The dictionary of the table column is not a subset of the dictionary of the schema column.
- notOfCategory(Column.Category) - Method in class com.rapidminer.belt.table.ColumnSelector
-
Adds the requirement to the selector that all selected columns must not have the given category.
- notOfTypeId(Column.TypeId) - Method in class com.rapidminer.belt.table.ColumnSelector
-
Adds the requirement to the selector that all selected columns must not have the given type id.
- NUMERIC - com.rapidminer.belt.column.Column.Category
-
Columns of numeric data, such as real or integer.
- NUMERIC_READABLE - com.rapidminer.belt.column.Column.Capability
-
Can be read as double values, via row or column reader.
- NumericBuffer - Class in com.rapidminer.belt.buffer
-
Temporary random access buffer that can be used to define a
Column
. - NumericBuffer() - Constructor for class com.rapidminer.belt.buffer.NumericBuffer
- NumericColumnBuilder - Class in com.rapidminer.belt.column.io
-
Builder for numeric columns out of
ByteBuffer
s. - NumericColumnBuilder(int, Column.TypeId) - Constructor for class com.rapidminer.belt.column.io.NumericColumnBuilder
-
Creates a column builder for a
Column.TypeId.REAL
orColumn.TypeId.INTEGER_53_BIT
column of the given length where the data can be put viaByteBuffer
s containing double values. - numericReader(Column) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new numeric column reader.
- numericReader(Column, int) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new numerical column reader.
- NumericReader - Class in com.rapidminer.belt.reader
-
Buffered reader for
Column
s of double precision values. - NumericRow - Interface in com.rapidminer.belt.reader
-
A row of a
Table
that allows to read entries as numbers. - numericRowReader(Column, Column, Column...) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new reader for row-wise numeric reads of the given columns.
- numericRowReader(Table) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new reader for row-wise numeric reads of all the columns in the given table.
- numericRowReader(List<Column>) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new reader for row-wise numeric reads of the given columns.
- NumericRowReader - Class in com.rapidminer.belt.reader
-
Buffered row-oriented reader for multiple
Column
s of double precision values. - numericRowWriter(List<String>, List<Column.TypeId>, boolean) - Static method in class com.rapidminer.belt.table.Writers
-
Writer for a new
Table
consisting of numeric columns with the given column labels and types and an unknown number of rows. - numericRowWriter(List<String>, List<Column.TypeId>, int, boolean) - Static method in class com.rapidminer.belt.table.Writers
-
Writer for a new
Table
consisting of numeric columns with the given column labels and the given expected number of rows. - NumericRowWriter - Class in com.rapidminer.belt.table
-
Writer to create a
Table
from row-wise numeric data.
O
- OBJECT - com.rapidminer.belt.column.Column.Category
-
Columns of complex types such as instants of time.
- OBJECT_READABLE - com.rapidminer.belt.column.Column.Capability
-
Can be read as objects, via row or column reader.
- ObjectBuffer<T> - Class in com.rapidminer.belt.buffer
-
Temporary random access buffer that can be used to define a
Column
of categoryColumn.Category.OBJECT
. - objectReader(Column, Class<T>) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new object column reader of the given type.
- objectReader(Column, Class<T>, int) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new object column reader of the given type.
- ObjectReader<T> - Class in com.rapidminer.belt.reader
-
Buffered reader for
Column
s with capabilityColumn.Capability.OBJECT_READABLE
. - ObjectRow<T> - Interface in com.rapidminer.belt.reader
-
A row of a
Table
that allows to read entries as objects. - objectRowReader(List<Column>, Class<T>) - Static method in class com.rapidminer.belt.reader.Readers
-
Creates a new reader for row-wise object reads of the given categorical columns.
- ObjectRowReader<T> - Class in com.rapidminer.belt.reader
-
Buffered row-oriented reader for multiple
Column
s with capabilityColumn.Capability.OBJECT_READABLE
. - ofCategory(Column.Category) - Method in class com.rapidminer.belt.table.ColumnSelector
-
Adds the requirement to the selector that all selected columns must have the given category.
- ofTypeId(Column.TypeId) - Method in class com.rapidminer.belt.table.ColumnSelector
-
Adds the requirement to the selector that all selected columns must have the given type id.
- or(DoubleBinaryPredicate) - Method in interface com.rapidminer.belt.function.DoubleBinaryPredicate
-
Returns a composed predicate that represents a logical OR of this and the given predicate (see
DoublePredicate.or(DoublePredicate)
). - or(IntBinaryPredicate) - Method in interface com.rapidminer.belt.function.IntBinaryPredicate
-
Returns a composed predicate that represents a logical OR of this and the given predicate (see
IntPredicate.or(IntPredicate)
). - Order - Enum in com.rapidminer.belt.util
-
Standard sorting orders.
- OUTLIER - com.rapidminer.belt.util.ColumnRole
P
- P25 - com.rapidminer.belt.column.Statistics.Statistic
-
The 25% percentile of the column values (if any) according to the linear interpolation method proposed by the National Institute for Standards and Technology (NIST).
- P50 - com.rapidminer.belt.column.Statistics.Statistic
-
The 50% percentile of the column values (if any) according to the linear interpolation method proposed by the National Institute for Standards and Technology (NIST).
- P75 - com.rapidminer.belt.column.Statistics.Statistic
-
The 75% percentile of the column values (if any) according to the linear interpolation method proposed by the National Institute for Standards and Technology (NIST).
- PackedIntegers(byte[], IntegerFormats.Format, int) - Constructor for class com.rapidminer.belt.util.IntegerFormats.PackedIntegers
- parallel(int, int, IntConsumer, Context) - Static method in class com.rapidminer.belt.execution.ExecutionUtils
-
Can be used to execute multiple tasks in parallel.
- parallelStream() - Method in class com.rapidminer.belt.column.type.StringList
- parallelStream() - Method in class com.rapidminer.belt.column.type.StringSet
- position() - Method in class com.rapidminer.belt.column.io.DateTimeColumnBuilder
-
Returns the current position until which the second data has been written.
- position() - Method in class com.rapidminer.belt.column.io.NominalColumnBuilder
-
Returns the current position until which the data has been written.
- position() - Method in class com.rapidminer.belt.column.io.NumericColumnBuilder
-
Returns the current position until which the second data has been written.
- position() - Method in class com.rapidminer.belt.column.io.TimeColumnBuilder
-
Returns the current position until which the second data has been written.
- position() - Method in class com.rapidminer.belt.reader.CategoricalReader
-
Returns current position in the column (0-based).
- position() - Method in interface com.rapidminer.belt.reader.CategoricalRow
-
Returns the position of the row in the table (0-based).
- position() - Method in class com.rapidminer.belt.reader.CategoricalRowReader
-
Returns the position of the row in the table (0-based).
- position() - Method in interface com.rapidminer.belt.reader.MixedRow
-
Returns the position of the row in the table (0-based).
- position() - Method in class com.rapidminer.belt.reader.MixedRowReader
-
Returns the position of the row in the table (0-based).
- position() - Method in class com.rapidminer.belt.reader.NumericReader
-
Returns current position in the column (0-based).
- position() - Method in interface com.rapidminer.belt.reader.NumericRow
-
Returns the position of the row in the table (0-based).
- position() - Method in class com.rapidminer.belt.reader.NumericRowReader
-
Returns the position of the row in the table (0-based).
- position() - Method in class com.rapidminer.belt.reader.ObjectReader
-
Returns current position in the column (0-based).
- position() - Method in interface com.rapidminer.belt.reader.ObjectRow
-
Returns the position of the row in the table (0-based).
- position() - Method in class com.rapidminer.belt.reader.ObjectRowReader
-
Returns the position of the row in the table (0-based).
- PREDICTION - com.rapidminer.belt.util.ColumnRole
- put(ByteBuffer) - Method in class com.rapidminer.belt.column.io.NumericColumnBuilder
-
Puts the double values in the buffer into the column starting at the current
NumericColumnBuilder.position()
. - put(ByteBuffer) - Method in class com.rapidminer.belt.column.io.TimeColumnBuilder
-
Puts the long values in the buffer as nanoseconds of the day data into the column starting at the current
TimeColumnBuilder.position()
. - putBytes(ByteBuffer) - Method in class com.rapidminer.belt.column.io.NominalColumnBuilder
-
Puts the (signed) byte values in the buffer as category indices into the column starting at the current
NominalColumnBuilder.position()
. - putCategoricalBytes(Column, int, ByteBuffer) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Puts the category indices of the categorical column as (signed) byte values into the buffer.
- putCategoricalIntegers(Column, int, ByteBuffer) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Puts the category indices of the categorical column as int values into the buffer.
- putCategoricalShorts(Column, int, ByteBuffer) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Puts the category indices of the categorical column as (signed) short values into the buffer.
- putDateTimeLongs(Column, int, ByteBuffer) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Puts the seconds since epoch of the date-time column as long values into the buffer.
- putDateTimeNanoInts(Column, int, ByteBuffer) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Puts the subsecond part of the date-time column as nanosecond int values into the buffer.
- putIntegers(ByteBuffer) - Method in class com.rapidminer.belt.column.io.NominalColumnBuilder
-
Puts the integer values in the buffer as category indices into the column starting at the current
NominalColumnBuilder.position()
. - putNanos(ByteBuffer) - Method in class com.rapidminer.belt.column.io.DateTimeColumnBuilder
-
Puts the int values in the buffer as optional subsecond data into the column starting at the current
DateTimeColumnBuilder.position()
. - putNumericDoubles(Column, int, ByteBuffer) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Puts the values of the numeric-readable column as double values into the buffer.
- putSeconds(ByteBuffer) - Method in class com.rapidminer.belt.column.io.DateTimeColumnBuilder
-
Puts the long values in the buffer as seconds data into the column starting at the current
DateTimeColumnBuilder.position()
. - putShorts(ByteBuffer) - Method in class com.rapidminer.belt.column.io.NominalColumnBuilder
-
Puts the (signed) short values in the buffer as category indices into the column starting at the current
NominalColumnBuilder.position()
. - putTimeLongs(Column, int, ByteBuffer) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Puts the values of the time column as long values representing the nanoseconds of day into the buffer.
R
- read() - Method in class com.rapidminer.belt.reader.CategoricalReader
- read() - Method in class com.rapidminer.belt.reader.NumericReader
- read() - Method in class com.rapidminer.belt.reader.ObjectReader
- readDateTime(int) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Creates a column builder for a
Column.TypeId.DATE_TIME
column of the given length. - Readers - Class in com.rapidminer.belt.reader
-
Utility methods for reading one or more
Column
s. - readInteger53Bit(int) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Creates a column builder for a
Column.TypeId.INTEGER_53_BIT
column of the given length where the data can be put viaByteBuffer
s containing double values. - readNominal(LinkedHashSet<String>, int) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Creates a column builder for a
Column.TypeId.NOMINAL
column of the given length. - readReal(int) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Creates a column builder for a
Column.TypeId.REAL
column of the given length where the data can be put viaByteBuffer
s containing double values. - readTime(int) - Static method in class com.rapidminer.belt.column.ColumnIO
-
Creates a column builder for a
Column.TypeId.TIME
column of the given length where the data can be put viaByteBuffer
s containing long values representing nanoseconds of the day. - readUInt2(byte[], int) - Static method in class com.rapidminer.belt.util.IntegerFormats
-
Reads the ith unsigned 2Bit integer from the given byte array.
- readUInt4(byte[], int) - Static method in class com.rapidminer.belt.util.IntegerFormats
-
Reads the ith unsigned 4Bit integer from the given byte array.
- REAL - com.rapidminer.belt.column.Column.TypeId
-
64 bit double values.
- REAL - Static variable in class com.rapidminer.belt.column.ColumnType
-
Complex id for columns holding 64 bit double values.
- realBuffer(int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given length to create a
Column
of typeColumn.TypeId.REAL
. - realBuffer(int, boolean) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given length to create a
Column
of typeColumn.TypeId.REAL
. - realBuffer(Column) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer to create a
Column
of typeColumn.TypeId.REAL
by copying the data from the given column. - RealBufferSparse - Class in com.rapidminer.belt.buffer
-
Sparse real buffer implementation with fixed length, storing double values.
- realRowWriter(List<String>, boolean) - Static method in class com.rapidminer.belt.table.Writers
-
Writer for a new
Table
consisting of real columns with the given column labels and an unknown number of rows. - realRowWriter(List<String>, int, boolean) - Static method in class com.rapidminer.belt.table.Writers
-
Writer for a new
Table
consisting of real columns with the given column labels and the given expected number of rows. - reduceCategorical(int, IntBinaryOperator, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Performs a reduction on the category indices of the
Column.Category.CATEGORICAL
transformation column, using the provided identity value and an associative reduction function, and returns the reduced value. - reduceCategorical(int, IntBinaryOperator, IntBinaryOperator, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Performs a reduction on the elements of the
Column.Category.CATEGORICAL
transformation column, using the provided identity, reduction and combining functions. - reduceCategorical(Supplier<T>, BiConsumer<T, CategoricalRow>, BiConsumer<T, T>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Performs a mutable reduction operation on the rows of the
Column.Category.CATEGORICAL
transformation columns. - reduceCategorical(Supplier<T>, ObjIntConsumer<T>, BiConsumer<T, T>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Performs a mutable reduction operation on the category indices of the
Column.Category.CATEGORICAL
transformation column. - reduceMixed(Supplier<T>, BiConsumer<T, MixedRow>, BiConsumer<T, T>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Performs a mutable reduction operation on the rows of the transformation columns.
- reduceNumeric(double, DoubleBinaryOperator, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Performs a reduction on the elements of the transformation column, using the provided identity value and an associative reduction function, and returns the reduced value.
- reduceNumeric(double, DoubleBinaryOperator, DoubleBinaryOperator, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Performs a reduction on the elements of the transformation column, using the provided identity, reduction and combining functions.
- reduceNumeric(Supplier<T>, BiConsumer<T, NumericRow>, BiConsumer<T, T>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Performs a mutable reduction operation on the rows of the numeric-readable transformation columns.
- reduceNumeric(Supplier<T>, ObjDoubleConsumer<T>, BiConsumer<T, T>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Performs a mutable reduction operation on the elements of the transformation column.
- reduceObjects(Class<R>, Supplier<T>, BiConsumer<T, ObjectRow<R>>, BiConsumer<T, T>, Context) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Performs a mutable reduction operation on the rows of the object-readable transformation columns.
- reduceObjects(Class<R>, Supplier<T>, BiConsumer<T, R>, BiConsumer<T, T>, Context) - Method in class com.rapidminer.belt.transform.Transformer
-
Performs a mutable reduction operation on the type objects of the transformation column.
- remaining() - Method in class com.rapidminer.belt.reader.CategoricalReader
- remaining() - Method in class com.rapidminer.belt.reader.CategoricalRowReader
- remaining() - Method in class com.rapidminer.belt.reader.MixedRowReader
- remaining() - Method in class com.rapidminer.belt.reader.NumericReader
- remaining() - Method in class com.rapidminer.belt.reader.NumericRowReader
- remaining() - Method in class com.rapidminer.belt.reader.ObjectReader
- remaining() - Method in class com.rapidminer.belt.reader.ObjectRowReader
- remove(int) - Method in class com.rapidminer.belt.column.type.StringList
- remove(Object) - Method in class com.rapidminer.belt.column.type.StringList
- remove(Object) - Method in class com.rapidminer.belt.column.type.StringSet
- remove(String) - Method in class com.rapidminer.belt.table.TableBuilder
-
Removes the given column from the table.
- REMOVE - com.rapidminer.belt.column.Columns.CleanupOption
-
Removes unused values from the dictionary so that only used values are part of
Dictionary.iterator()
. - removeAll(Collection<?>) - Method in class com.rapidminer.belt.column.type.StringList
- removeAll(Collection<?>) - Method in class com.rapidminer.belt.column.type.StringSet
- removeIf(Predicate<? super String>) - Method in class com.rapidminer.belt.column.type.StringList
- removeIf(Predicate<? super String>) - Method in class com.rapidminer.belt.column.type.StringSet
- removeMetaData(String, ColumnMetaData) - Method in class com.rapidminer.belt.table.TableBuilder
-
Removes the given meta data from the column with the given label.
- removeMetaData(String, Class<T>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Removes all meta data of the given type from the column with the given label.
- removeUnusedDictionaryValues(Column, Columns.CleanupOption, Context) - Static method in class com.rapidminer.belt.column.Columns
-
Removes unused dictionary values from categorical column following the cleanup option.
- rename(String, String) - Method in class com.rapidminer.belt.table.TableBuilder
-
Renames the column with the given label to the new label without changing the order of the columns.
- rename(Map<String, String>) - Method in class com.rapidminer.belt.table.Table
-
Creates a new table with old names replaced by those specified by the renaming map.
- REORDER - com.rapidminer.belt.table.Tables.ColumnHandling
-
The columns are reordered in the order of their appearance in the schema.
- REORDER_KEEP_ADDITIONAL - com.rapidminer.belt.table.Tables.ColumnHandling
-
The columns are reordered in the order of their appearance in the schema.
- replace(String, Column) - Method in class com.rapidminer.belt.table.TableBuilder
-
Replaces the column with the given label by the given column.
- replaceBoolean(String, IntFunction<String>, String) - Method in class com.rapidminer.belt.table.TableBuilder
-
Replaces the column with the given label by a nominal boolean column with the given positive value of the given type filled by the given generator.
- replaceDateTime(String, IntFunction<Instant>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Replaces the column with the given label by a date-time column filled by the given generator.
- replaceInDictionary(Column, Map<String, String>) - Static method in class com.rapidminer.belt.column.Columns
-
Creates a new column with the values in the dictionary replaced as specified by the map.
- replaceInt53Bit(String, IntToDoubleFunction) - Method in class com.rapidminer.belt.table.TableBuilder
-
Replaces the column with the given label by an
Column.TypeId.INTEGER_53_BIT
column filled by the given generator. - replaceNominal(String, IntFunction<String>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Replaces the column with the given label by a nominal column filled by the given generator.
- replaceNominal(String, IntFunction<String>, int) - Method in class com.rapidminer.belt.table.TableBuilder
-
Replaces the column with the given label by a nominal column filled by the given generator.
- replaceReal(String, IntToDoubleFunction) - Method in class com.rapidminer.belt.table.TableBuilder
-
Replaces the column with the given label by a real column filled by the given generator.
- replaceSingleInDictionary(Column, String, String) - Static method in class com.rapidminer.belt.column.Columns
-
Creates a new column with the oldValue replaced by the newValue in the dictionary.
- replaceText(String, IntFunction<String>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Replaces the column with the given label by an object column of type
Column.TypeId.TEXT
filled by the given generator. - replaceTextlist(String, IntFunction<StringList>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Replaces the column with the given label by an object column of type
Column.TypeId.TEXT_LIST
filled by the given generator. - replaceTextset(String, IntFunction<StringSet>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Replaces the column with the given label by an object column of type
Column.TypeId.TEXT_SET
filled by the given generator. - replaceTime(String, IntFunction<LocalTime>) - Method in class com.rapidminer.belt.table.TableBuilder
-
Replaces the column with the given label by a time column filled by the given generator.
- REQUIRE_MATCHING_TYPES - com.rapidminer.belt.table.Tables.TypeRequirement
-
The types of the columns in the table must be the same as the columns with the same name in the schema.
- REQUIRE_SUB_DICTIONARIES - com.rapidminer.belt.table.Tables.TypeRequirement
-
The dictionaries of the nominal columns in the table must be a subset of the reference columns in the schema.
- requireActive() - Method in interface com.rapidminer.belt.execution.Context
-
Checks if the context
Context.isActive()
and throws aExecutionAbortedException
if it is not. - retainAll(Collection<?>) - Method in class com.rapidminer.belt.column.type.StringList
- retainAll(Collection<?>) - Method in class com.rapidminer.belt.column.type.StringSet
- RowFilterer - Class in com.rapidminer.belt.transform
-
Supplies filter methods starting from the given
RowFilterer.filterColumns
. - RowFilterer(List<Column>) - Constructor for class com.rapidminer.belt.transform.RowFilterer
-
Creates a new starting point for a filter based on the given columns
- RowFilterer(List<Column>, boolean) - Constructor for class com.rapidminer.belt.transform.RowFilterer
-
Creates a new starting point for a filter based on the given columns
- rows(int[], boolean) - Method in class com.rapidminer.belt.column.Column
-
Creates a new column with rows reordered according to the given row selection.
- rows(int[], boolean, Context) - Method in class com.rapidminer.belt.table.Table
-
Creates a new table with rows reordered according to the given row set using the given execution context.
- rows(int[], Context) - Method in class com.rapidminer.belt.table.Table
-
Creates a new table with rows reordered according to the given row set using the given execution context.
- rows(int, int, Context) - Method in class com.rapidminer.belt.table.Table
-
Selects the rows from the given range
[from, to)
. - RowTransformer - Class in com.rapidminer.belt.transform
-
Supplies transformation methods (different kinds of apply and reduce methods) starting from the given
RowTransformer.transformationColumns
. - RowTransformer(List<Column>) - Constructor for class com.rapidminer.belt.transform.RowTransformer
-
Creates a new starting point for a transformation based on the given columns
- RowTransformer(List<Column>, boolean) - Constructor for class com.rapidminer.belt.transform.RowTransformer
-
Creates a new starting point for a transformation based on the given columns
- run(Callable<T>, Context) - Static method in class com.rapidminer.belt.execution.ExecutionUtils
-
Runs the given callable in the given context and handles the exceptions under the assumption, that no checked exceptions come from the callable.
- run(List<Callable<T>>, Context) - Static method in class com.rapidminer.belt.execution.ExecutionUtils
-
Runs the given callables in the given context and handles the exceptions under the assumption, that no checked exceptions come from the callables.
S
- SCORE - com.rapidminer.belt.util.ColumnRole
- SD - com.rapidminer.belt.column.Statistics.Statistic
-
The standard deviation of the column values (based on the sample variance).
- select() - Method in class com.rapidminer.belt.table.Table
-
Creates a
ColumnSelector
for this table as a starting point for different column selection methods. - SequentialContext - Class in com.rapidminer.belt.execution
-
A simple
Context
to use for belt calculations. - SequentialContext() - Constructor for class com.rapidminer.belt.execution.SequentialContext
- set(int, double) - Method in class com.rapidminer.belt.buffer.NumericBuffer
-
Sets the data at the given index to the given value.
- set(int, double) - Method in class com.rapidminer.belt.table.MixedRowWriter
-
Sets the value at the given column index for a numeric column.
- set(int, double) - Method in class com.rapidminer.belt.table.NumericRowWriter
-
Sets the value at the given column index.
- set(int, long) - Method in class com.rapidminer.belt.buffer.DateTimeBuffer
-
Sets the data at the given index to the given value.
- set(int, long) - Method in class com.rapidminer.belt.buffer.TimeBuffer
-
Sets the data at the given index to the given value.
- set(int, long, int) - Method in class com.rapidminer.belt.buffer.DateTimeBuffer
-
Sets the data at the given index to a
Instant
value by providing the epoch seconds and nanoseconds separately. - set(int, Object) - Method in class com.rapidminer.belt.table.MixedRowWriter
-
Sets the value at the given column index for a non-numeric column.
- set(int, String) - Method in class com.rapidminer.belt.buffer.Int32NominalBuffer
-
Sets the data at the given index to the given value.
- set(int, String) - Method in class com.rapidminer.belt.buffer.NominalBuffer
-
Sets the data at the given index to the given value.
- set(int, String) - Method in class com.rapidminer.belt.buffer.UInt16NominalBuffer
-
Sets the data at the given index to the given value.
- set(int, String) - Method in class com.rapidminer.belt.buffer.UInt2NominalBuffer
-
Sets the data at the given index to the given value.
- set(int, String) - Method in class com.rapidminer.belt.buffer.UInt4NominalBuffer
-
Sets the data at the given index to the given value.
- set(int, String) - Method in class com.rapidminer.belt.buffer.UInt8NominalBuffer
-
Sets the data at the given index to the given value.
- set(int, String) - Method in class com.rapidminer.belt.column.type.StringList
- set(int, Instant) - Method in class com.rapidminer.belt.buffer.DateTimeBuffer
-
Sets the data at the given index to the given value.
- set(int, LocalTime) - Method in class com.rapidminer.belt.buffer.TimeBuffer
-
Sets the data at the given index to the given time.
- set(int, T) - Method in class com.rapidminer.belt.buffer.ObjectBuffer
-
Sets the data at the given index to the given value.
- setNext(byte) - Method in class com.rapidminer.belt.util.ByteArrayBuilder
-
Adds the given value to the end of the array.
- setNext(double) - Method in class com.rapidminer.belt.buffer.RealBufferSparse
-
Sets the value at the next buffer position to the given value.
- setNext(double) - Method in class com.rapidminer.belt.util.DoubleArrayBuilder
-
Adds the given value to the end of the array.
- setNext(int) - Method in class com.rapidminer.belt.util.IntegerArrayBuilder
-
Adds the given value to the end of the array.
- setNext(int, double) - Method in class com.rapidminer.belt.buffer.Integer53BitBufferSparse
- setNext(int, double) - Method in class com.rapidminer.belt.buffer.RealBufferSparse
-
Sets the value at the given index to the given value.
- setNext(int, long) - Method in class com.rapidminer.belt.buffer.DateTimeBufferSparse
-
Sets the value at the given index to the given value.
- setNext(int, long) - Method in class com.rapidminer.belt.buffer.TimeBufferSparse
-
Sets the value at the given index to the given value.
- setNext(int, long, int) - Method in class com.rapidminer.belt.buffer.DateTimeBufferSparse
-
Sets the value at the given index to the given value.
- setNext(int, String) - Method in class com.rapidminer.belt.buffer.Int32NominalBufferSparse
- setNext(int, String) - Method in class com.rapidminer.belt.buffer.NominalBufferSparse
-
Sets the value at the given index to the given value.
- setNext(int, String) - Method in class com.rapidminer.belt.buffer.UInt16NominalBufferSparse
- setNext(int, String) - Method in class com.rapidminer.belt.buffer.UInt8NominalBufferSparse
- setNext(int, Instant) - Method in class com.rapidminer.belt.buffer.DateTimeBufferSparse
-
Sets the value at the given index to the given value.
- setNext(int, LocalTime) - Method in class com.rapidminer.belt.buffer.TimeBufferSparse
-
Sets the value at the given index to the given
LocalTime
. - setNext(long) - Method in class com.rapidminer.belt.buffer.DateTimeBufferSparse
-
Sets the value at the next index to the given value.
- setNext(long) - Method in class com.rapidminer.belt.buffer.TimeBufferSparse
-
Sets the value at the next index to the given value.
- setNext(long) - Method in class com.rapidminer.belt.util.LongArrayBuilder
-
Adds the given value to the end of the array.
- setNext(long, int) - Method in class com.rapidminer.belt.buffer.DateTimeBufferSparse
-
Sets the values at the next position to the given values.
- setNext(short) - Method in class com.rapidminer.belt.util.ShortArrayBuilder
-
Adds the given value to the end of the array.
- setNext(String) - Method in class com.rapidminer.belt.buffer.Int32NominalBufferSparse
- setNext(String) - Method in class com.rapidminer.belt.buffer.NominalBufferSparse
-
Sets the value at the next index to the given value.
- setNext(String) - Method in class com.rapidminer.belt.buffer.UInt16NominalBufferSparse
- setNext(String) - Method in class com.rapidminer.belt.buffer.UInt8NominalBufferSparse
- setNext(Instant) - Method in class com.rapidminer.belt.buffer.DateTimeBufferSparse
-
Sets the time value at the next index to the given value.
- setNext(LocalTime) - Method in class com.rapidminer.belt.buffer.TimeBufferSparse
-
Sets the value at the next index to the given value.
- setNextSave(int, String) - Method in class com.rapidminer.belt.buffer.Int32NominalBufferSparse
- setNextSave(int, String) - Method in class com.rapidminer.belt.buffer.NominalBufferSparse
-
Tries to set the data at the given index to the given value.
- setNextSave(int, String) - Method in class com.rapidminer.belt.buffer.UInt16NominalBufferSparse
- setNextSave(int, String) - Method in class com.rapidminer.belt.buffer.UInt8NominalBufferSparse
- setPosition(int) - Method in class com.rapidminer.belt.reader.CategoricalReader
-
Sets the reader position to the given row but without loading the data.
- setPosition(int) - Method in class com.rapidminer.belt.reader.CategoricalRowReader
-
Sets the reader position to the given row but without loading the data.
- setPosition(int) - Method in class com.rapidminer.belt.reader.MixedRowReader
-
Sets the reader position to the given row but without loading the data.
- setPosition(int) - Method in class com.rapidminer.belt.reader.NumericReader
-
Sets the reader position to the given row but without loading the data.
- setPosition(int) - Method in class com.rapidminer.belt.reader.NumericRowReader
-
Sets the reader position to the given row but without loading the data.
- setPosition(int) - Method in class com.rapidminer.belt.reader.ObjectReader
-
Sets the reader position to the given row but without loading the data.
- setPosition(int) - Method in class com.rapidminer.belt.reader.ObjectRowReader
-
Sets the reader position to the given row but without loading the data.
- setSave(int, String) - Method in class com.rapidminer.belt.buffer.Int32NominalBuffer
-
Tries to set the data at the given index to the given value.
- setSave(int, String) - Method in class com.rapidminer.belt.buffer.NominalBuffer
-
Tries to set the data at the given index to the given value.
- setSave(int, String) - Method in class com.rapidminer.belt.buffer.UInt16NominalBuffer
-
Tries to set the data at the given index to the given value.
- setSave(int, String) - Method in class com.rapidminer.belt.buffer.UInt2NominalBuffer
-
Tries to set the data at the given index to the given value.
- setSave(int, String) - Method in class com.rapidminer.belt.buffer.UInt4NominalBuffer
-
Tries to set the data at the given index to the given value.
- setSave(int, String) - Method in class com.rapidminer.belt.buffer.UInt8NominalBuffer
-
Tries to set the data at the given index to the given value.
- ShortArrayBuilder - Class in com.rapidminer.belt.util
-
Memory and time efficient builder for short arrays that can be used if the length of the short array is unknown while building it.
- ShortArrayBuilder() - Constructor for class com.rapidminer.belt.util.ShortArrayBuilder
-
Creates a new builder with the default initial chunk size, default growth factor and default maximum chunk size.
- ShortArrayBuilder(ArrayBuilderConfiguration) - Constructor for class com.rapidminer.belt.util.ShortArrayBuilder
-
Creates a new builder.
- SIGNED_INT32 - com.rapidminer.belt.util.IntegerFormats.Format
-
32Bit signed integer (max. value
Integer.MAX_VALUE
, stored asint
). - singleThreaded(Context) - Static method in interface com.rapidminer.belt.execution.Context
-
Derives a
Context
with parallelism level1
from the given context. - size() - Method in class com.rapidminer.belt.buffer.DateTimeBuffer
- size() - Method in class com.rapidminer.belt.buffer.DateTimeBufferSparse
- size() - Method in class com.rapidminer.belt.buffer.Int32NominalBuffer
- size() - Method in class com.rapidminer.belt.buffer.Int32NominalBufferSparse
- size() - Method in class com.rapidminer.belt.buffer.NominalBuffer
- size() - Method in class com.rapidminer.belt.buffer.NominalBufferSparse
-
Returns the buffer's overall size (not the number of elements currently inside the buffer).
- size() - Method in class com.rapidminer.belt.buffer.NumericBuffer
- size() - Method in class com.rapidminer.belt.buffer.ObjectBuffer
- size() - Method in class com.rapidminer.belt.buffer.RealBufferSparse
-
Returns the buffer's overall size (not the number of elements currently inside the buffer).
- size() - Method in class com.rapidminer.belt.buffer.TimeBuffer
- size() - Method in class com.rapidminer.belt.buffer.TimeBufferSparse
-
Returns the buffer's overall size (not the number of elements currently inside the buffer).
- size() - Method in class com.rapidminer.belt.buffer.UInt16NominalBuffer
- size() - Method in class com.rapidminer.belt.buffer.UInt16NominalBufferSparse
- size() - Method in class com.rapidminer.belt.buffer.UInt2NominalBuffer
- size() - Method in class com.rapidminer.belt.buffer.UInt4NominalBuffer
- size() - Method in class com.rapidminer.belt.buffer.UInt8NominalBuffer
- size() - Method in class com.rapidminer.belt.buffer.UInt8NominalBufferSparse
- size() - Method in class com.rapidminer.belt.column.Column
-
Returns the size.
- size() - Method in class com.rapidminer.belt.column.Dictionary
-
The size of the map from category index to object value, i.e., the number of category indices inside the range
[0, maximalIndex()]
that are not mapped tonull
. - size() - Method in class com.rapidminer.belt.column.type.StringList
- size() - Method in class com.rapidminer.belt.column.type.StringSet
- size() - Method in class com.rapidminer.belt.util.ByteArrayBuilder
-
Returns the number of elements stored inside builder.
- size() - Method in class com.rapidminer.belt.util.DoubleArrayBuilder
-
Returns the number of elements stored inside builder.
- size() - Method in class com.rapidminer.belt.util.IntegerArrayBuilder
-
Returns the number of elements stored inside builder.
- size() - Method in class com.rapidminer.belt.util.IntegerFormats.PackedIntegers
-
Return the number of element stored in the wrapped array.
- size() - Method in class com.rapidminer.belt.util.LongArrayBuilder
-
Returns the number of elements stored inside builder.
- size() - Method in class com.rapidminer.belt.util.ShortArrayBuilder
-
Returns the number of elements stored inside builder.
- SMALL - com.rapidminer.belt.execution.Workload
-
Small workload per data point, e.g., a few arithmetic operations.
- SMALL_BUFFER_SIZE - Static variable in class com.rapidminer.belt.reader.NumericReader
-
Buffer size of 256 values recommended for scenarios where many reader instances are used alongside each other, e.g., for row oriented access patterns.
- smallNumericReader(Column) - Static method in class com.rapidminer.belt.reader.SmallReaders
-
Creates a new numeric column reader with a small internal buffer.
- smallObjectReader(Column, Class<T>) - Static method in class com.rapidminer.belt.reader.SmallReaders
-
Creates a new object column reader of the given type with a small internal buffer.
- SmallReaders - Class in com.rapidminer.belt.reader
-
Utility methods for reading only small parts of one or more
Column
s. - sort(double[], Order) - Static method in class com.rapidminer.belt.util.Sorting
-
Indirect stable sort of double values using the given order.
- sort(int[], Order) - Static method in class com.rapidminer.belt.util.SortingInt
-
Indirect stable sort of int values using the given order.
- sort(int[], Order, Context) - Method in class com.rapidminer.belt.table.Table
-
Creates a new table sorted by the given columns using the given sorting order and execution context.
- sort(int[], List<Order>, Context) - Method in class com.rapidminer.belt.table.Table
-
Creates a new table sorted by the given columns using the given sorting orders and execution context.
- sort(int, Order, Context) - Method in class com.rapidminer.belt.table.Table
-
Creates a new table task to sort the table by the given column using the given sorting order and execution context.
- sort(int, Comparator<Integer>, Order) - Static method in class com.rapidminer.belt.util.Sorting
-
Sorts the indices
[0, 1, ..., length-1]
with respect to the given comparator and order. - sort(long[], Order) - Static method in class com.rapidminer.belt.util.SortingLong
-
Indirect stable sort of long values using the given order.
- sort(Order) - Method in class com.rapidminer.belt.column.Column
-
Sorts the column indirectly using the given sorting
Order
. - sort(String, Order, Context) - Method in class com.rapidminer.belt.table.Table
-
Creates a new table sorted by the given column using the given sorting order.
- sort(List<String>, Order, Context) - Method in class com.rapidminer.belt.table.Table
-
Creates a new table sorted by the given columns using the given sorting order and execution context.
- sort(List<String>, List<Order>, Context) - Method in class com.rapidminer.belt.table.Table
-
Creates a new table sorted by the given columns using the given sorting orders.
- SORTABLE - com.rapidminer.belt.column.Column.Capability
-
The column can be sorted.
- Sorting - Class in com.rapidminer.belt.util
-
Utility methods for sorting.
- SortingInt - Class in com.rapidminer.belt.util
-
Similar to
SortingLong
but for integer values and with additional methods for sorting partially. - SortingLong - Class in com.rapidminer.belt.util
-
Utility methods for sorting long values efficiently (without autoboxing or converting them).
- sortPartially(int[], int[], int, int, int[], Order) - Static method in class com.rapidminer.belt.util.SortingInt
-
Similar to
SortingInt.sort(int[], Order)
but sorts only the specified range of the given indices array. - SOURCE - com.rapidminer.belt.util.ColumnRole
- sparseDateTimeBuffer(long, int, boolean) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a memory efficient sparse buffer of the given size to create a sparse
Column
of type idColumn.TypeId.DATE_TIME
. - sparseDateTimeBuffer(Instant, int, boolean) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a memory efficient sparse buffer of the given size to create a sparse
Column
of type idColumn.TypeId.DATE_TIME
. - sparseInteger53BitBuffer(double, int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a memory efficient sparse buffer of the given length to create a sparse
Column
of typeColumn.TypeId.INTEGER_53_BIT
. - sparseNominalBuffer(String, int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a sparse buffer of the given length to create a sparse
Column
of typeColumn.TypeId.NOMINAL
. - sparseNominalBuffer(String, int, int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a sparse buffer of the given length to create a sparse
Column
of typeColumn.TypeId.NOMINAL
with at most the given number of categories. - sparseRealBuffer(double, int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a sparse buffer of the given length to create a memory efficient sparse
Column
of typeColumn.TypeId.REAL
. - sparseTimeBuffer(long, int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a memory efficient sparse buffer of the given length to create a sparse
Column
of type idColumn.TypeId.TIME
. - sparseTimeBuffer(LocalTime, int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a memory efficient sparse buffer of the given length to create a
Column
of type idColumn.TypeId.TIME
. - spliterator() - Method in class com.rapidminer.belt.column.type.StringList
- spliterator() - Method in class com.rapidminer.belt.column.type.StringSet
- Statistics - Class in com.rapidminer.belt.column
-
Utility methods for computing column statistics.
- Statistics() - Constructor for class com.rapidminer.belt.column.Statistics
- Statistics.CategoricalIndexCounts - Class in com.rapidminer.belt.column
-
Container for categorical index counts from categorical statistic calculations.
- Statistics.Result - Class in com.rapidminer.belt.column
-
Result container for a statistics computation.
- Statistics.Statistic - Enum in com.rapidminer.belt.column
-
Column statistics.
- stop() - Method in class com.rapidminer.belt.execution.SequentialContext
-
Stops the execution for this context.
- stream() - Method in class com.rapidminer.belt.column.type.StringList
- stream() - Method in class com.rapidminer.belt.column.type.StringSet
- StringList - Class in com.rapidminer.belt.column.type
-
Immutable
List<String>
that never containsnull
to use as a cell type. - StringList(Collection<String>) - Constructor for class com.rapidminer.belt.column.type.StringList
-
Creates a new immutable string list by copying the given collection or, in case it is
null
, creating an empty list. - StringList(Collection<String>, UnaryOperator<String>) - Constructor for class com.rapidminer.belt.column.type.StringList
-
Creates a new string list by applying the preprocessor to every element of the collection.
- StringList(IntFunction<String>, int) - Constructor for class com.rapidminer.belt.column.type.StringList
-
Applies the supplier to the indices from
0
(inclusive) tolimit
(exclusive) and adds the result to the string list if it is notnull
. - StringSet - Class in com.rapidminer.belt.column.type
-
Immutable
Set<String>
that never containsnull
to use as a cell type. - StringSet(Collection<String>) - Constructor for class com.rapidminer.belt.column.type.StringSet
-
Creates a new immutable string set by copying the given collection or, in case it is
null
, creating an empty set. - StringSet(Collection<String>, UnaryOperator<String>) - Constructor for class com.rapidminer.belt.column.type.StringSet
-
Creates a new string set by applying the preprocessor to every element of the collection.
- StringSet(IntFunction<String>, int) - Constructor for class com.rapidminer.belt.column.type.StringSet
-
Applies the supplier to the indices from
0
(inclusive) tolimit
(exclusive) and adds the result to the string set if it is notnull
. - stripData() - Method in class com.rapidminer.belt.column.CategoricalColumn
- stripData() - Method in class com.rapidminer.belt.column.Column
-
Strips the data from the column so that it has length 0 and no mapping or remapping.
- stripData() - Method in class com.rapidminer.belt.table.Table
-
Creates a new table with the data stripped from the columns.
- subList(int, int) - Method in class com.rapidminer.belt.column.type.StringList
- SUBSET - com.rapidminer.belt.table.Tables.ColumnSetRequirement
-
The column set of the table must be a subset of the one of the schema.
- SUPERSET - com.rapidminer.belt.table.Tables.ColumnSetRequirement
-
The column set of the table must be a superset of the one of the schema.
- supported(Column, Statistics.Statistic) - Static method in class com.rapidminer.belt.column.Statistics
-
Checks whether the given statistic is supported for the given column.
- swapDictionary(Dictionary) - Method in class com.rapidminer.belt.column.CategoricalColumn
-
Creates a new categorical column with the same data and the given dictionary.
T
- Table - Class in com.rapidminer.belt.table
-
Immutable table using a column-oriented data layout.
- TABLE - com.rapidminer.belt.util.ColumnMetaData.Uniqueness
-
At most one instance of the column meta data type can be attached to a table.
- TableBuilder - Class in com.rapidminer.belt.table
-
A builder for a
Table
. - Tables - Class in com.rapidminer.belt.table
-
Utility methods for
Table
s. - Tables.ColumnHandling - Enum in com.rapidminer.belt.table
-
Options for the column handling in
Tables.adapt(Table, Table, ColumnHandling, DictionaryHandling)
- Tables.ColumnSetRequirement - Enum in com.rapidminer.belt.table
-
Options for the column set requirement in
Tables.findIncompatible(Table, Table, ColumnSetRequirement, TypeRequirement...)
- Tables.DictionaryHandling - Enum in com.rapidminer.belt.table
-
Options for the dictionary handling in
Tables.adapt(Table, Table, ColumnHandling, DictionaryHandling)
- Tables.Incompatibility - Enum in com.rapidminer.belt.table
-
Incompatibility description in the return from
Tables.findIncompatible(Table, Table, ColumnSetRequirement, TypeRequirement...)
- Tables.TypeRequirement - Enum in com.rapidminer.belt.table
-
Options for the type requirements in
Tables.findIncompatible(Table, Table, ColumnSetRequirement, TypeRequirement...)
- test(double, double) - Method in interface com.rapidminer.belt.function.DoubleBinaryPredicate
-
Evaluates this predicate on the given arguments.
- test(int, int) - Method in interface com.rapidminer.belt.function.IntBinaryPredicate
-
Evaluates this predicate on the given arguments.
- TEXT - com.rapidminer.belt.column.Column.TypeId
-
Non-categorical strings.
- TEXT - Static variable in class com.rapidminer.belt.column.ColumnType
-
Complex id for columns holding non-categorical strings.
- TEXT_LIST - com.rapidminer.belt.column.Column.TypeId
-
List of strings.
- TEXT_SET - com.rapidminer.belt.column.Column.TypeId
-
Sets of strings.
- textBuffer(int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given length to create a
Column
of typeColumn.TypeId.TEXT
. - textBuffer(Column) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer to create a
Column
of typeColumn.TypeId.TEXT
by copying the data from the given column. - TEXTLIST - Static variable in class com.rapidminer.belt.column.ColumnType
-
Complex id for columns holding lists of strings.
- textlistBuffer(int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given length to create a
Column
of typeColumn.TypeId.TEXT_LIST
. - textlistBuffer(Column) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer to create a
Column
of typeColumn.TypeId.TEXT_LIST
by copying the data from the given column. - TEXTSET - Static variable in class com.rapidminer.belt.column.ColumnType
-
Complex id for columns holding sets of strings.
- textsetBuffer(int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given length to create a
Column
of typeColumn.TypeId.TEXT_SET
. - textsetBuffer(Column) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer to create a
Column
of typeColumn.TypeId.TEXT_SET
by copying the data from the given column. - TIME - com.rapidminer.belt.column.Column.TypeId
-
Nanoseconds of a day.
- TIME - Static variable in class com.rapidminer.belt.column.ColumnType
-
Complex id for columns holding nanoseconds of a day.
- timeBuffer(int) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given length to create a
Column
of type idColumn.TypeId.TIME
. - timeBuffer(int, boolean) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer of the given length to create a
Column
of type idColumn.TypeId.TIME
. - timeBuffer(Column) - Static method in class com.rapidminer.belt.buffer.Buffers
-
Creates a buffer to create a
Column
of typeColumn.TypeId.TIME
by copying the data from the given column. - TimeBuffer - Class in com.rapidminer.belt.buffer
-
A buffer for time instances with nanosecond precision.
- TimeBufferSparse - Class in com.rapidminer.belt.buffer
-
Sparse time buffer implementation with fixed length, storing nanoseconds of the day as long values.
- TimeColumnBuilder - Class in com.rapidminer.belt.column.io
-
Builder for time columns out of
ByteBuffer
s. - TimeColumnBuilder(int) - Constructor for class com.rapidminer.belt.column.io.TimeColumnBuilder
-
Creates a column builder for a
Column.TypeId.TIME
column of the given length where the data can be put viaByteBuffer
s containing long values representing nanoseconds of the day. - toArray() - Method in class com.rapidminer.belt.column.type.StringList
- toArray() - Method in class com.rapidminer.belt.column.type.StringSet
- toArray(T[]) - Method in class com.rapidminer.belt.column.type.StringList
- toArray(T[]) - Method in class com.rapidminer.belt.column.type.StringSet
- toBoolean(Column, String) - Static method in class com.rapidminer.belt.column.Columns
-
Sets the positive value for the categorical column if the dictionary has at most two values (including the positive value).
- toBooleanColumn(int) - Method in class com.rapidminer.belt.column.io.NominalColumnBuilder
-
Creates a new boolean column with the given positive index from the builder.
- toBooleanColumn(String) - Method in class com.rapidminer.belt.buffer.Int32NominalBuffer
- toBooleanColumn(String) - Method in class com.rapidminer.belt.buffer.Int32NominalBufferSparse
- toBooleanColumn(String) - Method in class com.rapidminer.belt.buffer.NominalBuffer
-
Creates a boolean column with the given positive value if the dictionary has at most two values.
- toBooleanColumn(String) - Method in class com.rapidminer.belt.buffer.NominalBufferSparse
-
Creates a boolean column with the given positive value if the dictionary has at most two values.
- toBooleanColumn(String) - Method in class com.rapidminer.belt.buffer.UInt16NominalBuffer
- toBooleanColumn(String) - Method in class com.rapidminer.belt.buffer.UInt16NominalBufferSparse
- toBooleanColumn(String) - Method in class com.rapidminer.belt.buffer.UInt2NominalBuffer
- toBooleanColumn(String) - Method in class com.rapidminer.belt.buffer.UInt4NominalBuffer
- toBooleanColumn(String) - Method in class com.rapidminer.belt.buffer.UInt8NominalBuffer
- toBooleanColumn(String) - Method in class com.rapidminer.belt.buffer.UInt8NominalBufferSparse
- toColumn() - Method in class com.rapidminer.belt.buffer.DateTimeBuffer
-
Creates a new date-time column from the buffer.
- toColumn() - Method in class com.rapidminer.belt.buffer.DateTimeBufferSparse
- toColumn() - Method in class com.rapidminer.belt.buffer.Int32NominalBuffer
- toColumn() - Method in class com.rapidminer.belt.buffer.Int32NominalBufferSparse
- toColumn() - Method in class com.rapidminer.belt.buffer.NominalBuffer
-
Returns a column of the given type using the buffer's data.
- toColumn() - Method in class com.rapidminer.belt.buffer.NominalBufferSparse
-
Returns a column of the given type using the buffer's data.
- toColumn() - Method in class com.rapidminer.belt.buffer.NumericBuffer
-
Returns a column constructed from this buffer.
- toColumn() - Method in class com.rapidminer.belt.buffer.ObjectBuffer
- toColumn() - Method in class com.rapidminer.belt.buffer.RealBufferSparse
-
Returns a column constructed from this buffer.
- toColumn() - Method in class com.rapidminer.belt.buffer.TimeBuffer
-
Creates a new time column from the buffer.
- toColumn() - Method in class com.rapidminer.belt.buffer.TimeBufferSparse
-
Returns a column constructed from this buffer.
- toColumn() - Method in class com.rapidminer.belt.buffer.UInt16NominalBuffer
- toColumn() - Method in class com.rapidminer.belt.buffer.UInt16NominalBufferSparse
- toColumn() - Method in class com.rapidminer.belt.buffer.UInt2NominalBuffer
- toColumn() - Method in class com.rapidminer.belt.buffer.UInt4NominalBuffer
- toColumn() - Method in class com.rapidminer.belt.buffer.UInt8NominalBuffer
- toColumn() - Method in class com.rapidminer.belt.buffer.UInt8NominalBufferSparse
- toColumn() - Method in class com.rapidminer.belt.column.io.DateTimeColumnBuilder
-
Creates a column as defined by the builder.
- toColumn() - Method in class com.rapidminer.belt.column.io.NominalColumnBuilder
-
Creates a new column from the builder.
- toColumn() - Method in class com.rapidminer.belt.column.io.NumericColumnBuilder
-
Creates a column as defined by the builder.
- toColumn() - Method in class com.rapidminer.belt.column.io.TimeColumnBuilder
-
Creates a column as defined by the builder.
- toColumnList(List<String>, Table) - Static method in class com.rapidminer.belt.table.ColumnSelector
-
Selects the list of columns associated with the given list of labels from the table.
- toString() - Method in class com.rapidminer.belt.buffer.DateTimeBuffer
- toString() - Method in class com.rapidminer.belt.buffer.DateTimeBufferSparse
- toString() - Method in class com.rapidminer.belt.buffer.Int32NominalBufferSparse
- toString() - Method in class com.rapidminer.belt.buffer.Integer53BitBufferSparse
- toString() - Method in class com.rapidminer.belt.buffer.NominalBuffer
- toString() - Method in class com.rapidminer.belt.buffer.ObjectBuffer
- toString() - Method in class com.rapidminer.belt.buffer.RealBufferSparse
- toString() - Method in class com.rapidminer.belt.buffer.TimeBuffer
- toString() - Method in class com.rapidminer.belt.buffer.TimeBufferSparse
- toString() - Method in class com.rapidminer.belt.buffer.UInt16NominalBufferSparse
- toString() - Method in class com.rapidminer.belt.buffer.UInt8NominalBufferSparse
- toString() - Method in class com.rapidminer.belt.column.BooleanDictionary
- toString() - Method in class com.rapidminer.belt.column.CategoricalColumn
- toString() - Method in enum com.rapidminer.belt.column.Column.TypeId
- toString() - Method in class com.rapidminer.belt.column.ColumnType
- toString() - Method in class com.rapidminer.belt.column.Dictionary
- toString() - Method in class com.rapidminer.belt.column.type.StringList
- toString() - Method in class com.rapidminer.belt.column.type.StringSet
- toString() - Method in class com.rapidminer.belt.reader.CategoricalReader
- toString() - Method in class com.rapidminer.belt.reader.CategoricalRowReader
- toString() - Method in class com.rapidminer.belt.reader.MixedRowReader
- toString() - Method in class com.rapidminer.belt.reader.NumericReader
- toString() - Method in class com.rapidminer.belt.reader.NumericRowReader
- toString() - Method in class com.rapidminer.belt.reader.ObjectReader
- toString() - Method in class com.rapidminer.belt.reader.ObjectRowReader
- toString() - Method in class com.rapidminer.belt.table.MixedRowWriter
- toString() - Method in class com.rapidminer.belt.table.NumericRowWriter
- toString() - Method in class com.rapidminer.belt.table.Table
- toString() - Method in class com.rapidminer.belt.table.TableBuilder
- toString() - Method in class com.rapidminer.belt.util.ColumnAnnotation
- toString() - Method in class com.rapidminer.belt.util.ColumnReference
- transform() - Method in class com.rapidminer.belt.table.Table
-
Creates a transform for all columns in this table as a starting point for different reduce and apply functions.
- transform(int) - Method in class com.rapidminer.belt.table.Table
-
Creates a transform for the given column as a starting point for different reduce and apply functions.
- transform(int[]) - Method in class com.rapidminer.belt.table.Table
-
Creates a transform for the given columns as a starting point for different reduce and apply functions.
- transform(String) - Method in class com.rapidminer.belt.table.Table
-
Creates a transform for the given column as a starting point for different reduce and apply functions.
- transform(String...) - Method in class com.rapidminer.belt.table.Table
-
Creates a transform for the given columns as a starting point for different reduce and apply functions.
- transform(List<String>) - Method in class com.rapidminer.belt.table.Table
-
Creates a transform for the given columns as a starting point for different reduce and apply functions.
- Transformer - Class in com.rapidminer.belt.transform
-
Supplies transformation methods (different kinds of apply and reduce methods) starting from the given
Transformer.transformationColumn
. - Transformer(Column) - Constructor for class com.rapidminer.belt.transform.Transformer
-
Creates a new transform for transformations of the given column.
- type - Variable in class com.rapidminer.belt.buffer.NominalBuffer
- type - Variable in class com.rapidminer.belt.buffer.NominalBufferSparse
- type() - Method in class com.rapidminer.belt.buffer.Integer53BitBufferSparse
-
Returns the buffer's
Column.TypeId
. - type() - Method in class com.rapidminer.belt.buffer.NumericBuffer
-
Returns the type id of the buffer (see
ColumnType.id()
). - type() - Method in class com.rapidminer.belt.buffer.RealBufferSparse
-
Returns the buffer's
Column.TypeId
. - type() - Method in class com.rapidminer.belt.column.CategoricalColumn
- type() - Method in class com.rapidminer.belt.column.Column
-
Returns the
ColumnType
of this column. - type() - Method in class com.rapidminer.belt.util.ColumnAnnotation
- type() - Method in interface com.rapidminer.belt.util.ColumnMetaData
-
The unique type id of the column meta data.
- type() - Method in class com.rapidminer.belt.util.ColumnReference
- type() - Method in enum com.rapidminer.belt.util.ColumnRole
- TYPE_MISMATCH - com.rapidminer.belt.table.Tables.Incompatibility
-
The type of the column in the table does not match the type of the reference column in the schema.
U
- UInt16NominalBuffer - Class in com.rapidminer.belt.buffer
-
Implementation of a
NominalBuffer
with category index formatIntegerFormats.Format.UNSIGNED_INT16
that can hold65535
different categories. - UInt16NominalBufferSparse - Class in com.rapidminer.belt.buffer
-
Implementation of a
NominalBufferSparse
with category index formatIntegerFormats.Format.UNSIGNED_INT16
that can hold65535
many different categories. - UInt2NominalBuffer - Class in com.rapidminer.belt.buffer
-
Implementation of a
NominalBuffer
with category index formatIntegerFormats.Format.UNSIGNED_INT2
that can hold3
different categories. - UInt4NominalBuffer - Class in com.rapidminer.belt.buffer
-
Implementation of a
NominalBuffer
with category index formatIntegerFormats.Format.UNSIGNED_INT4
that can hold15
different categories. - UInt8NominalBuffer - Class in com.rapidminer.belt.buffer
-
Implementation of a
NominalBuffer
with category index formatIntegerFormats.Format.UNSIGNED_INT8
that can hold255
different categories. - UInt8NominalBufferSparse - Class in com.rapidminer.belt.buffer
-
Implementation of a
NominalBufferSparse
with category index formatIntegerFormats.Format.UNSIGNED_INT8
that can hold255
many different categories. - unbufferedMixedRowReader(Table) - Static method in class com.rapidminer.belt.reader.SmallReaders
-
Creates a new reader for row-wise numeric reads of a single or a handful of rows of all the columns in the given table.
- unbufferedNumericReader(Column) - Static method in class com.rapidminer.belt.reader.SmallReaders
-
Creates a new numeric column reader with a minimal internal buffer.
- unbufferedNumericRowReader(Table) - Static method in class com.rapidminer.belt.reader.SmallReaders
-
Creates a new reader for row-wise reads of a single or a handful of rows of all the columns in the given table.
- unbufferedObjectReader(Column, Class<T>) - Static method in class com.rapidminer.belt.reader.SmallReaders
-
Creates a new object column reader of the given type with a minimal internal buffer.
- UNCHANGED - com.rapidminer.belt.table.Tables.ColumnHandling
-
The column labels stay the same.
- UNCHANGED - com.rapidminer.belt.table.Tables.DictionaryHandling
-
Dictionaries of categorical columns are not changed.
- uniqueness() - Method in class com.rapidminer.belt.util.ColumnAnnotation
- uniqueness() - Method in interface com.rapidminer.belt.util.ColumnMetaData
-
The uniqueness level of the meta data.
- uniqueness() - Method in class com.rapidminer.belt.util.ColumnReference
- uniqueness() - Method in enum com.rapidminer.belt.util.ColumnRole
- UNSIGNED_INT16 - com.rapidminer.belt.util.IntegerFormats.Format
-
16Bit unsigned integer (max. value 65535, stored as
short
). - UNSIGNED_INT2 - com.rapidminer.belt.util.IntegerFormats.Format
-
2Bit unsigned integer (max. value 3, four values are stored in a single
byte
). - UNSIGNED_INT4 - com.rapidminer.belt.util.IntegerFormats.Format
-
4Bit unsigned integer (max. value 15, two values are stored in a single
byte
). - UNSIGNED_INT8 - com.rapidminer.belt.util.IntegerFormats.Format
-
8Bit unsigned integer (max. value 255, stored as
byte
).
V
- valueOf(String) - Static method in enum com.rapidminer.belt.column.Column.Capability
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.column.Column.Category
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.column.Column.TypeId
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.column.Columns.CleanupOption
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.column.Statistics.Statistic
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.execution.Workload
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.table.Tables.ColumnHandling
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.table.Tables.ColumnSetRequirement
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.table.Tables.DictionaryHandling
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.table.Tables.Incompatibility
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.table.Tables.TypeRequirement
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.util.ColumnMetaData.Uniqueness
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.util.ColumnRole
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.util.IntegerFormats.Format
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.rapidminer.belt.util.Order
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum com.rapidminer.belt.column.Column.Capability
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.column.Column.Category
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.column.Column.TypeId
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.column.Columns.CleanupOption
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.column.Statistics.Statistic
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.execution.Workload
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.table.Tables.ColumnHandling
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.table.Tables.ColumnSetRequirement
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.table.Tables.DictionaryHandling
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.table.Tables.Incompatibility
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.table.Tables.TypeRequirement
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.util.ColumnMetaData.Uniqueness
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.util.ColumnRole
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.util.IntegerFormats.Format
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.rapidminer.belt.util.Order
-
Returns an array containing the constants of this enum type, in the order they are declared.
- VAR - com.rapidminer.belt.column.Statistics.Statistic
-
The sample variance (unbiased variance) of column values (if the count is non-zero).
W
- waitForOrCompute(int[], int[], ConcurrentHashMap<int[], CompletableFuture<int[]>>) - Method in interface com.rapidminer.belt.column.CacheMappedColumn
-
Merges the key with the mapping or waits until someone else has computed the result.
- WEIGHT - com.rapidminer.belt.util.ColumnRole
- width() - Method in interface com.rapidminer.belt.reader.CategoricalRow
- width() - Method in class com.rapidminer.belt.reader.CategoricalRowReader
- width() - Method in interface com.rapidminer.belt.reader.MixedRow
- width() - Method in class com.rapidminer.belt.reader.MixedRowReader
- width() - Method in interface com.rapidminer.belt.reader.NumericRow
- width() - Method in class com.rapidminer.belt.reader.NumericRowReader
- width() - Method in interface com.rapidminer.belt.reader.ObjectRow
- width() - Method in class com.rapidminer.belt.reader.ObjectRowReader
- width() - Method in class com.rapidminer.belt.table.MixedRowWriter
- width() - Method in class com.rapidminer.belt.table.NumericRowWriter
- width() - Method in class com.rapidminer.belt.table.Table
- withCapability(Column.Capability) - Method in class com.rapidminer.belt.table.ColumnSelector
-
Adds the requirement to the selector that all selected columns must have the given capability.
- withMetaData(ColumnMetaData) - Method in class com.rapidminer.belt.table.ColumnSelector
-
Adds the requirement to the selector that all selected columns must have the given meta data.
- withMetaData(Class<T>) - Method in class com.rapidminer.belt.table.ColumnSelector
-
Adds the requirement to the selector that all selected columns must have the given meta data type.
- withoutCapability(Column.Capability) - Method in class com.rapidminer.belt.table.ColumnSelector
-
Adds the requirement to the selector that all selected columns must not have the given capability.
- withoutMetaData(ColumnMetaData) - Method in class com.rapidminer.belt.table.ColumnSelector
-
Adds the requirement to the selector that all selected columns must not have the given meta data.
- withoutMetaData(Class<T>) - Method in class com.rapidminer.belt.table.ColumnSelector
-
Adds the requirement to the selector that all selected columns must not have the given meta data type.
- workload(Workload) - Method in class com.rapidminer.belt.transform.Filterer
-
Specifies the expected
Workload
per data point. - workload(Workload) - Method in class com.rapidminer.belt.transform.RowFilterer
-
Specifies the expected
Workload
per data point. - workload(Workload) - Method in class com.rapidminer.belt.transform.RowTransformer
-
Specifies the expected
Workload
per data point. - workload(Workload) - Method in class com.rapidminer.belt.transform.Transformer
-
Specifies the expected
Workload
per data point. - Workload - Enum in com.rapidminer.belt.execution
-
Indicates the expected workload per data point.
- Writers - Class in com.rapidminer.belt.table
-
Utility methods for writing
Table
s. - writeUInt2(byte[], int, int) - Static method in class com.rapidminer.belt.util.IntegerFormats
-
Overwrites the ith unsigned 2Bit integer in the given byte array with the given value.
- writeUInt4(byte[], int, int) - Static method in class com.rapidminer.belt.util.IntegerFormats
-
Overwrites the ith unsigned 4Bit integer in the given byte array with the given value.
- WRONG_COLUMN_PRESENT - com.rapidminer.belt.table.Tables.Incompatibility
-
The column is in the table but not in the schema.
All Classes All Packages