Uses of Interface
com.pervasive.datarush.tokens.scalar.NumericValued
-
Packages that use NumericValued Package Description com.pervasive.datarush.ports.physical Provides classes and interfaces for accessing and producing the data flowing between operators in a dataflow graph.com.pervasive.datarush.sequences.scalar Provides implementations of sequences of scalar token values.com.pervasive.datarush.tokens Provides classes and utilities for working with data tokens.com.pervasive.datarush.tokens.scalar Provides implementations of and utilities for scalar valued tokens. -
-
Uses of NumericValued in com.pervasive.datarush.ports.physical
Subinterfaces of NumericValued in com.pervasive.datarush.ports.physical Modifier and Type Interface Description interface
DoubleInputField
A double valued field of a record input port.interface
FloatInputField
A float valued field of a record input port.interface
IntInputField
An integer valued field of a record input port.interface
LongInputField
A long valued field of a record input port.interface
MoneyInputField
A money valued field of a record input port.interface
NumericInputField
A numeric valued field of a record input port. -
Uses of NumericValued in com.pervasive.datarush.sequences.scalar
Subinterfaces of NumericValued in com.pervasive.datarush.sequences.scalar Modifier and Type Interface Description interface
DoubleValuedIterator
AScalarValuedIterator
over double values.interface
FloatValuedIterator
AScalarValuedIterator
over float values.interface
IntValuedIterator
AScalarValuedIterator
over a integer fields.interface
LongValuedIterator
AScalarValuedIterator
over long values.interface
MoneyValuedIterator
AScalarValuedIterator
over money values.interface
NumericValuedIterator
AScalarValuedIterator
over numeric values.Methods in com.pervasive.datarush.sequences.scalar that return NumericValued Modifier and Type Method Description NumericValued
NumericTokenList. getToken(int index)
NumericValued
NumericTokenSequence. getToken(int index)
NumericValued
SparseNumericTokenList. getToken(int index)
-
Uses of NumericValued in com.pervasive.datarush.tokens
Methods in com.pervasive.datarush.tokens with parameters of type NumericValued Modifier and Type Method Description static String
TokenUtils. asString(NumericValued value)
Formats a numeric value as a string suitable for output.static int
TokenUtils. compare(NumericValued value1, double value2)
Indicates the relative ordering of a number value and a non-nulldouble
in ascending order.static int
TokenUtils. compare(NumericValued value1, long value2)
Indicates the relative ordering of a number value and a non-nulllong
in ascending order.static int
TokenUtils. compare(NumericValued value1, NumericValued value2)
Indicates the relative ordering of two numeric values in ascending order.static int
TokenUtils. compare(NumericValued value1, BigDecimal value2)
Indicates the relative ordering of a number value and a non-nulljava.math.BigDecimal
in ascending order.static boolean
TokenUtils. equal(NumericValued value1, NumericValued value2)
Indicates whether two numeric values are equal.static double
TokenUtils. forceDouble(NumericValued value)
Converts a numeric value to a double value, truncating if necessary.static float
TokenUtils. forceFloat(NumericValued value)
Converts a numeric value to a float value, truncating if necessary.static int
TokenUtils. forceInt(NumericValued value)
Converts a numeric value to an integer value, truncating if necessary.static long
TokenUtils. forceLong(NumericValued value)
Converts a numeric value to a long value, truncating if necessary.static int
TokenUtils. hashCode(NumericValued value)
Computes a hash code for a numeric value. -
Uses of NumericValued in com.pervasive.datarush.tokens.scalar
Subinterfaces of NumericValued in com.pervasive.datarush.tokens.scalar Modifier and Type Interface Description interface
DoubleValued
ATokenValued
object containing a double value.interface
FloatValued
ATokenValued
object containing a float value.interface
IntValued
ATokenValued
object containing an integer value.interface
LongValued
ATokenValued
object containing a long value.interface
MoneyValued
ATokenValued
object containing a money value.Classes in com.pervasive.datarush.tokens.scalar that implement NumericValued Modifier and Type Class Description class
DoubleRegister
A mutableDoubleValued
object.class
DoubleToken
An immutableDoubleValued
object.class
FloatRegister
A mutableBinaryValued
object.class
FloatToken
An immutableFloatValued
object.class
IntRegister
A mutableIntValued
object.class
IntToken
An immutableIntValued
object.class
LongRegister
A mutableIntValued
object.class
LongToken
An immutableLongValued
object.class
MoneyRegister
A mutableMoneyValued
object.class
MoneyToken
An immutableMoneyValued
object.class
NullToken
An null token.class
NumericRegister
A mutableNumericValued
object.class
NumericToken
An immutableNumericValued
object.Constructors in com.pervasive.datarush.tokens.scalar with parameters of type NumericValued Constructor Description NumericToken(NumericValued value)
Constructs a new token with the numeric value in the given container.
-