Uses of Interface
com.pervasive.datarush.tokens.scalar.LongValued
-
Packages that use LongValued 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 LongValued in com.pervasive.datarush.ports.physical
Subinterfaces of LongValued in com.pervasive.datarush.ports.physical Modifier and Type Interface Description interface
IntInputField
An integer valued field of a record input port.interface
LongInputField
A long valued field of a record input port. -
Uses of LongValued in com.pervasive.datarush.sequences.scalar
Subinterfaces of LongValued in com.pervasive.datarush.sequences.scalar Modifier and Type Interface Description interface
IntValuedIterator
AScalarValuedIterator
over a integer fields.interface
LongValuedIterator
AScalarValuedIterator
over long values.Methods in com.pervasive.datarush.sequences.scalar that return LongValued Modifier and Type Method Description LongValued
LongTokenList. getToken(int index)
LongValued
LongTokenSequence. getToken(int index)
LongValued
SparseLongTokenList. getToken(int index)
-
Uses of LongValued in com.pervasive.datarush.tokens
Methods in com.pervasive.datarush.tokens with parameters of type LongValued Modifier and Type Method Description static String
TokenUtils. asString(LongValued value)
Formats a long value as a string suitable for output.static int
TokenUtils. compare(LongValued value1, LongValued value2)
Indicates the relative ordering of two long values in ascending order.static boolean
TokenUtils. equal(LongValued value1, LongValued value2)
Indicates whether two long values are equal.static int
TokenUtils. hashCode(LongValued value)
Computes a hash code for a long value. -
Uses of LongValued in com.pervasive.datarush.tokens.scalar
Subinterfaces of LongValued in com.pervasive.datarush.tokens.scalar Modifier and Type Interface Description interface
IntValued
ATokenValued
object containing an integer value.Classes in com.pervasive.datarush.tokens.scalar that implement LongValued Modifier and Type Class Description class
IntRegister
A mutableIntValued
object.class
IntToken
An immutableIntValued
object.class
LongRegister
A mutableIntValued
object.class
LongToken
An immutableLongValued
object.class
NullToken
An null token.Constructors in com.pervasive.datarush.tokens.scalar with parameters of type LongValued Constructor Description LongToken(LongValued value)
Constructs a new token with the long value in the given container.
-