Uses of Interface
com.pervasive.datarush.tokens.scalar.BinaryValued
-
Packages that use BinaryValued 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 BinaryValued in com.pervasive.datarush.ports.physical
Subinterfaces of BinaryValued in com.pervasive.datarush.ports.physical Modifier and Type Interface Description interface
BinaryInputField
A binary valued field of a record input port. -
Uses of BinaryValued in com.pervasive.datarush.sequences.scalar
Subinterfaces of BinaryValued in com.pervasive.datarush.sequences.scalar Modifier and Type Interface Description interface
BinaryValuedIterator
AScalarValuedIterator
over binary values.Methods in com.pervasive.datarush.sequences.scalar that return BinaryValued Modifier and Type Method Description BinaryValued
BinaryTokenList. getToken(int index)
BinaryValued
BinaryTokenSequence. getToken(int index)
BinaryValued
SparseBinaryTokenList. getToken(int index)
-
Uses of BinaryValued in com.pervasive.datarush.tokens
Methods in com.pervasive.datarush.tokens with parameters of type BinaryValued Modifier and Type Method Description static String
TokenUtils. asString(BinaryValued value)
Formats a binary value as a string suitable for output.static int
TokenUtils. compare(BinaryValued value1, byte[] value2)
Indicates the relative ordering of a binary value and a non-null binary data array in ascending order.static int
TokenUtils. compare(BinaryValued value1, BinaryValued value2)
Indicates the relative ordering of two binary values in ascending order.static boolean
TokenUtils. equal(BinaryValued value1, BinaryValued value2)
Indicates whether two binary values are equal.static int
TokenUtils. hashCode(BinaryValued value)
Computes a hash code for a binary value. -
Uses of BinaryValued in com.pervasive.datarush.tokens.scalar
Classes in com.pervasive.datarush.tokens.scalar that implement BinaryValued Modifier and Type Class Description class
BinaryRegister
A mutableBinaryValued
object.class
BinaryToken
An immutableBinaryValued
object.class
NullToken
An null token.Constructors in com.pervasive.datarush.tokens.scalar with parameters of type BinaryValued Constructor Description BinaryToken(BinaryValued value)
Constructs a new token with the binary value in the given container.
-