Uses of Interface
com.pervasive.datarush.tokens.scalar.BooleanValued
-
Packages that use BooleanValued 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 BooleanValued in com.pervasive.datarush.ports.physical
Subinterfaces of BooleanValued in com.pervasive.datarush.ports.physical Modifier and Type Interface Description interface
BooleanInputField
A boolean valued field of a record input port. -
Uses of BooleanValued in com.pervasive.datarush.sequences.scalar
Subinterfaces of BooleanValued in com.pervasive.datarush.sequences.scalar Modifier and Type Interface Description interface
BooleanValuedIterator
AScalarValuedIterator
over boolean values.Methods in com.pervasive.datarush.sequences.scalar that return BooleanValued Modifier and Type Method Description BooleanValued
BooleanTokenList. getToken(int index)
BooleanValued
BooleanTokenSequence. getToken(int index)
BooleanValued
SparseBooleanTokenList. getToken(int index)
-
Uses of BooleanValued in com.pervasive.datarush.tokens
Methods in com.pervasive.datarush.tokens with parameters of type BooleanValued Modifier and Type Method Description static String
TokenUtils. asString(BooleanValued value)
Formats a boolean value as a string suitable for output.static int
TokenUtils. compare(BooleanValued value1, BooleanValued value2)
Indicates the relative ordering of two boolean values in ascending order.static boolean
TokenUtils. equal(BooleanValued value1, BooleanValued value2)
Indicates whether two boolean values are equal.static int
TokenUtils. hashCode(BooleanValued value)
Computes a hash code for a boolean value. -
Uses of BooleanValued in com.pervasive.datarush.tokens.scalar
Classes in com.pervasive.datarush.tokens.scalar that implement BooleanValued Modifier and Type Class Description class
BooleanRegister
A mutableBooleanValued
object.class
BooleanToken
An immutableBooleanValued
object.class
NullToken
An null token.Methods in com.pervasive.datarush.tokens.scalar with parameters of type BooleanValued Modifier and Type Method Description static BooleanToken
BooleanToken. getToken(BooleanValued value)
Returns a token with the boolean value in the given container.Constructors in com.pervasive.datarush.tokens.scalar with parameters of type BooleanValued Constructor Description BooleanToken(BooleanValued value)
Constructs a new token with the boolean value in the given container.
-