Uses of Enum Class
com.pervasive.datarush.tokens.TokenOrder
Packages that use TokenOrder
Package
Description
Implementations of encoders of tokens
into binary formats.
Provides implementations of port objects related to the flow of record sets
between operators.
Provides classes and interfaces related to sequences of tokens.
Provides implementations of sequences of record valued tokens.
Provides implementations of sequences of scalar token values.
Provides classes and utilities for working with data tokens.
Provides implementations of and utilities for record valued
tokens.
-
Uses of TokenOrder in com.pervasive.datarush.encoding.binary
Methods in com.pervasive.datarush.encoding.binary with parameters of type TokenOrderModifier and TypeMethodDescriptionTokenEncodings.allocateDecoder(TokenType type, TokenOrder... ordering) Creates a default decoder appropriate for the given type.TokenEncodings.allocateEncoder(TokenType type, TokenOrder... ordering) Creates a default encoder appropriate for the given type. -
Uses of TokenOrder in com.pervasive.datarush.ports.record
Methods in com.pervasive.datarush.ports.record that return TokenOrderMethods in com.pervasive.datarush.ports.record with parameters of type TokenOrderModifier and TypeMethodDescriptionstatic AliasSetAliasSet.createSet(String[] keys, TokenOrder order) Creates a set consisting of an array of keys and specified order -
Uses of TokenOrder in com.pervasive.datarush.sequences
Methods in com.pervasive.datarush.sequences with parameters of type TokenOrderModifier and TypeMethodDescriptionTokenSequence.getElementComparator(TokenOrder sortOrder) Gets anElementComparatorfor this sequence using the specified ordering. -
Uses of TokenOrder in com.pervasive.datarush.sequences.record
Methods in com.pervasive.datarush.sequences.record with parameters of type TokenOrderModifier and TypeMethodDescriptionRecordTokenSequence.getElementComparator(TokenOrder sortOrder) Gets an ElementComparator for the token array and given ordering.RecordTokenSequence.getElementComparator(TokenOrder... sortOrder) Gets an ElementComparator for the token array and given ordering.SparseRecordTokenList.getElementComparator(TokenOrder sortOrder) SparseRecordTokenList.getElementComparator(TokenOrder... sortOrder) -
Uses of TokenOrder in com.pervasive.datarush.sequences.scalar
Methods in com.pervasive.datarush.sequences.scalar with parameters of type TokenOrderModifier and TypeMethodDescriptionfinal ElementComparatorAbstractScalarTokenSequence.getElementComparator(TokenOrder sortOrder) -
Uses of TokenOrder in com.pervasive.datarush.tokens
Methods in com.pervasive.datarush.tokens that return TokenOrderModifier and TypeMethodDescriptionTokenComparator.getDirection()Gets the direction of the comparator's ordering.static TokenOrderReturns the enum constant of this class with the specified name.static TokenOrder[]TokenOrder.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.pervasive.datarush.tokens with parameters of type TokenOrderModifier and TypeMethodDescriptionstatic TokenComparatorTokenComparators.getComparator(TokenType type, TokenOrder order) Creates a comparator appropriate for the given type ordered in the specified direction.static RecordTokenComparatorTokenComparators.getCompositeComparator(ScalarValued[] left, ScalarValued[] right, TokenOrder order) Creates a composite comparator, bound to the given sets of left and right values, using the specified ordering for all pairings of values.static RecordTokenComparatorTokenComparators.getCompositeComparator(ScalarValued[] left, ScalarValued[] right, TokenOrder[] order) Creates a composite comparator, bound to the given sets of left and right values, using the specified orderings for each pairing of values.static RecordTokenComparatorTokenComparators.getCompositeComparator(ScalarTokenType[] types, TokenOrder order) Creates a composite comparator appropriate for the given types ordered in the specified direction.static RecordTokenComparatorTokenComparators.getCompositeComparator(ScalarTokenType[] types, TokenOrder[] order) Creates a composite comparator appropriate for the given types ordered in the specified direction for each field.int[]TokenSorter.sort(RecordTokenSequence data, TokenOrder[] sortOrder) Builds a sort order permutation for the specified composite sequence using the specified order for each column.int[]TokenSorter.sort(TokenSequence data, TokenOrder sortOrder) Builds a sort order permutation for the specified sequence in the specified order. -
Uses of TokenOrder in com.pervasive.datarush.tokens.record
Methods in com.pervasive.datarush.tokens.record that return TokenOrderModifier and TypeMethodDescriptionSortedJoinKey.getOrder()Get the ordering associated with this key.SortKey.getOrder()Get the ordering associated with this key.static TokenOrder[]SortedJoinKey.getOrders(SortedJoinKey... joinKeys) Extract the orderings from several keys.static TokenOrder[]Extract the orderings from several keys.Methods in com.pervasive.datarush.tokens.record with parameters of type TokenOrderModifier and TypeMethodDescriptionstatic SortedJoinKey[]SortedJoinKey.makeJoinKeys(TokenOrder[] order, JoinKey[] names) Create multiple keys using the specified order.static SortedJoinKey[]SortedJoinKey.makeJoinKeys(TokenOrder order, JoinKey... names) Create multiple keys using the specified order.static SortKey[]SortKey.makeSortKeys(TokenOrder order, String... names) Create multiple keys using the specified order.Constructors in com.pervasive.datarush.tokens.record with parameters of type TokenOrderModifierConstructorDescriptionSortedJoinKey(JoinKey key, TokenOrder ordering) Create a key using the specified order.SortedJoinKey(String name, TokenOrder ordering) Create a key using the specified order, where the left name and right name are the same.SortKey(String name, TokenOrder order) Create a key using the specified order.