Uses of Interface
com.pervasive.datarush.tokens.scalar.DoubleValued
-
Packages that use DoubleValued 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 DoubleValued in com.pervasive.datarush.ports.physical
Subinterfaces of DoubleValued 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. -
Uses of DoubleValued in com.pervasive.datarush.sequences.scalar
Subinterfaces of DoubleValued 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.Methods in com.pervasive.datarush.sequences.scalar that return DoubleValued Modifier and Type Method Description DoubleValued
DoubleTokenList. getToken(int index)
DoubleValued
DoubleTokenSequence. getToken(int index)
DoubleValued
SparseDoubleTokenList. getToken(int index)
-
Uses of DoubleValued in com.pervasive.datarush.tokens
Methods in com.pervasive.datarush.tokens with parameters of type DoubleValued Modifier and Type Method Description static String
TokenUtils. asString(DoubleValued value)
Formats a double value as a string suitable for output.static int
TokenUtils. compare(DoubleValued value1, DoubleValued value2)
Indicates the relative ordering of two double values in ascending order.static boolean
TokenUtils. equal(DoubleValued value1, DoubleValued value2)
Indicates whether two double values are equal.static int
TokenUtils. hashCode(DoubleValued value)
Computes a hash code for a double value. -
Uses of DoubleValued in com.pervasive.datarush.tokens.scalar
Subinterfaces of DoubleValued in com.pervasive.datarush.tokens.scalar Modifier and Type Interface Description 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 DoubleValued 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.Constructors in com.pervasive.datarush.tokens.scalar with parameters of type DoubleValued Constructor Description DoubleToken(DoubleValued value)
Constructs a new token with the double value in the given container.
-