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