Uses of Interface
com.pervasive.datarush.tokens.scalar.ObjectValued
-
Packages that use ObjectValued 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 ObjectValued in com.pervasive.datarush.ports.physical
Subinterfaces of ObjectValued in com.pervasive.datarush.ports.physical Modifier and Type Interface Description interface
ObjectInputField<T>
An object valued field of a record input port. -
Uses of ObjectValued in com.pervasive.datarush.sequences.scalar
Subinterfaces of ObjectValued in com.pervasive.datarush.sequences.scalar Modifier and Type Interface Description interface
ObjectValuedIterator<T>
AScalarValuedIterator
over object values.Methods in com.pervasive.datarush.sequences.scalar that return ObjectValued Modifier and Type Method Description ObjectValued<O>
ObjectTokenList. getToken(int index)
ObjectValued<O>
ObjectTokenSequence. getToken(int index)
ObjectValued<T>
SparseObjectTokenList. getToken(int index)
-
Uses of ObjectValued in com.pervasive.datarush.tokens
Methods in com.pervasive.datarush.tokens with parameters of type ObjectValued Modifier and Type Method Description static String
TokenUtils. asString(ObjectValued<?> value)
Formats an object value as a string suitable for output.static <O extends Comparable<O>>
intTokenUtils. compare(ObjectValued<O> value1, ObjectValued<O> value2)
Indicates the relative ordering of two object values in ascending order.static <O> boolean
TokenUtils. equal(ObjectValued<O> value1, ObjectValued<O> value2)
Indicates whether two object values are equal.static int
TokenUtils. hashCode(ObjectValued<?> value)
Computes a hash code for an object value. -
Uses of ObjectValued in com.pervasive.datarush.tokens.scalar
Classes in com.pervasive.datarush.tokens.scalar that implement ObjectValued Modifier and Type Class Description class
ObjectRegister<O>
A mutableObjectValued
object.class
ObjectToken<O>
An immutableObjectValued
object.Constructors in com.pervasive.datarush.tokens.scalar with parameters of type ObjectValued Constructor Description ObjectToken(ObjectValued<O> value)
Constructs a new token with the object value in the given container.
-