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