Uses of Class
com.pervasive.datarush.tokens.DataRepresentation
-
Packages that use DataRepresentation Package Description com.pervasive.datarush.sequences Provides classes and interfaces related to sequences of tokens.com.pervasive.datarush.tokens Provides classes and utilities for working with data tokens.com.pervasive.datarush.types Provides classes and interfaces for the description of token data types. -
-
Uses of DataRepresentation in com.pervasive.datarush.sequences
Methods in com.pervasive.datarush.sequences with parameters of type DataRepresentation Modifier and Type Method Description static MutableScalarTokenSequenceTokenSequences. allocateList(ScalarTokenType type, int initialCapacity, DataRepresentation representation)Creates aMutableTokenSequencefor tokens of the specified scalar type.static MutableTokenSequenceTokenSequences. allocateList(TokenType type, int initialCapacity, DataRepresentation representation)Creates aMutableTokenSequencefor tokens of the specified type.static MutableBinaryTokenSequenceTokenSequences. binaryList(int capacity, DataRepresentation representation)Creates aMutableBinaryTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableBooleanTokenSequenceTokenSequences. booleanList(int capacity, DataRepresentation representation)Creates aMutableBooleanTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableCharTokenSequenceTokenSequences. charList(int capacity, DataRepresentation representation)Creates aMutableCharTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableDateTokenSequenceTokenSequences. dateList(int capacity, DataRepresentation representation)Creates aMutableDateTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableDoubleTokenSequenceTokenSequences. doubleList(int capacity, DataRepresentation representation)Creates aMutableDoubleTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableDurationTokenSequenceTokenSequences. durationList(int capacity, DataRepresentation representation)Creates aMutableDurationTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableFloatTokenSequenceTokenSequences. floatList(int capacity, DataRepresentation representation)Creates aMutableFloatTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableIntTokenSequenceTokenSequences. intList(int capacity, DataRepresentation representation)Creates aMutableIntTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableIp4AddressTokenSequenceTokenSequences. ip4AddressList(int capacity, DataRepresentation representation)Creates aMutableIp4AddressTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableIp6AddressTokenSequenceTokenSequences. ip6AddressList(int capacity, DataRepresentation representation)Creates aMutableIp6AddressTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableLongTokenSequenceTokenSequences. longList(int capacity, DataRepresentation representation)Creates aMutableLongTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableMoneyTokenSequenceTokenSequences. moneyList(int capacity, DataRepresentation representation)Creates aMutableMoneyTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableNumericTokenSequenceTokenSequences. numericList(int capacity, DataRepresentation representation)Creates aMutableNumericTokenSequencewith the specified capacity, optionally optimized for sparse data.static <O> MutableObjectTokenSequence<O>TokenSequences. objectList(ObjectTokenType<O> type, int capacity, DataRepresentation representation)Creates aMutableObjectTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutablePeriodTokenSequenceTokenSequences. periodList(int capacity, DataRepresentation representation)Creates aMutablePeriodTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableRecordTokenSequenceTokenSequences. recordList(RecordTokenType type, int capacity, DataRepresentation representation)Creates aMutableRecordTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableStringTokenSequenceTokenSequences. stringList(int capacity, DataRepresentation representation)Creates aMutableStringTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableTimeTokenSequenceTokenSequences. timeList(int capacity, DataRepresentation representation)Creates aMutableTimeTokenSequencewith the specified capacity, optionally optimized for sparse data.static MutableTimestampTokenSequenceTokenSequences. timestampList(int capacity, DataRepresentation representation)Creates aMutableTimestampTokenSequencewith the specified capacity, optionally optimized for sparse data. -
Uses of DataRepresentation in com.pervasive.datarush.tokens
Methods in com.pervasive.datarush.tokens that return DataRepresentation Modifier and Type Method Description static DataRepresentationDataRepresentation. valueOf(String name)Returns the enum constant of this type with the specified name.static DataRepresentation[]DataRepresentation. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of DataRepresentation in com.pervasive.datarush.types
Methods in com.pervasive.datarush.types that return DataRepresentation Modifier and Type Method Description DataRepresentationRecordTokenType. getRepresentation()Returns the representation associated with this type.static DataRepresentationTypeUtil. mergeRepresentations(TokenType... types)Returns the overall representation to be used when combining types.Methods in com.pervasive.datarush.types with parameters of type DataRepresentation Modifier and Type Method Description RecordTokenTypeRecordTokenType. toRepresentation(DataRepresentation representation)Returns a RecordTokenType, equivalent to this, but whose representation is that specified.static RecordTokenTypeTypeUtil. toType(DataRepresentation representation, Namespace<ScalarTokenType> namespace)Converts from a list of fields to a record token type.Constructors in com.pervasive.datarush.types with parameters of type DataRepresentation Constructor Description RecordTokenTypeBuilder(DataRepresentation representation)Constructs a new record schema builder where the specified representation format is used.
-