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 MutableScalarTokenSequence
TokenSequences. allocateList(ScalarTokenType type, int initialCapacity, DataRepresentation representation)
Creates aMutableTokenSequence
for tokens of the specified scalar type.static MutableTokenSequence
TokenSequences. allocateList(TokenType type, int initialCapacity, DataRepresentation representation)
Creates aMutableTokenSequence
for tokens of the specified type.static MutableBinaryTokenSequence
TokenSequences. binaryList(int capacity, DataRepresentation representation)
Creates aMutableBinaryTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableBooleanTokenSequence
TokenSequences. booleanList(int capacity, DataRepresentation representation)
Creates aMutableBooleanTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableCharTokenSequence
TokenSequences. charList(int capacity, DataRepresentation representation)
Creates aMutableCharTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableDateTokenSequence
TokenSequences. dateList(int capacity, DataRepresentation representation)
Creates aMutableDateTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableDoubleTokenSequence
TokenSequences. doubleList(int capacity, DataRepresentation representation)
Creates aMutableDoubleTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableDurationTokenSequence
TokenSequences. durationList(int capacity, DataRepresentation representation)
Creates aMutableDurationTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableFloatTokenSequence
TokenSequences. floatList(int capacity, DataRepresentation representation)
Creates aMutableFloatTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableIntTokenSequence
TokenSequences. intList(int capacity, DataRepresentation representation)
Creates aMutableIntTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableIp4AddressTokenSequence
TokenSequences. ip4AddressList(int capacity, DataRepresentation representation)
Creates aMutableIp4AddressTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableIp6AddressTokenSequence
TokenSequences. ip6AddressList(int capacity, DataRepresentation representation)
Creates aMutableIp6AddressTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableLongTokenSequence
TokenSequences. longList(int capacity, DataRepresentation representation)
Creates aMutableLongTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableMoneyTokenSequence
TokenSequences. moneyList(int capacity, DataRepresentation representation)
Creates aMutableMoneyTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableNumericTokenSequence
TokenSequences. numericList(int capacity, DataRepresentation representation)
Creates aMutableNumericTokenSequence
with the specified capacity, optionally optimized for sparse data.static <O> MutableObjectTokenSequence<O>
TokenSequences. objectList(ObjectTokenType<O> type, int capacity, DataRepresentation representation)
Creates aMutableObjectTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutablePeriodTokenSequence
TokenSequences. periodList(int capacity, DataRepresentation representation)
Creates aMutablePeriodTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableRecordTokenSequence
TokenSequences. recordList(RecordTokenType type, int capacity, DataRepresentation representation)
Creates aMutableRecordTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableStringTokenSequence
TokenSequences. stringList(int capacity, DataRepresentation representation)
Creates aMutableStringTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableTimeTokenSequence
TokenSequences. timeList(int capacity, DataRepresentation representation)
Creates aMutableTimeTokenSequence
with the specified capacity, optionally optimized for sparse data.static MutableTimestampTokenSequence
TokenSequences. timestampList(int capacity, DataRepresentation representation)
Creates aMutableTimestampTokenSequence
with 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 DataRepresentation
DataRepresentation. 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 DataRepresentation
RecordTokenType. getRepresentation()
Returns the representation associated with this type.static DataRepresentation
TypeUtil. 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 RecordTokenType
RecordTokenType. toRepresentation(DataRepresentation representation)
Returns a RecordTokenType, equivalent to this, but whose representation is that specified.static RecordTokenType
TypeUtil. 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.
-