Package io.objectbox.annotation
Enum Class ExternalPropertyType
- All Implemented Interfaces:
Serializable
,Comparable<ExternalPropertyType>
,Constable
A property type of an external system (e.g. another database) that has no default mapping to an ObjectBox type.
Use with @ExternalType
.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPlaceholder (not yet used) for a BSON document.IEEE 754 decimal128 type, e.g.A key/value map; e.g.A vector (aka list or array) of flexible elements; e.g.Representing type: ByteVectorA vector (array) of Int128 values.JavaScript source code.Placeholder (not yet used) for a JSON document.Representing type: ByteVectorThe 12-byte ObjectId type in MongoDB.A vector (array) of MongoId values.Representing type: string vector with 2 elements (index 0: pattern, index 1: options)Representing type: LongRepresenting type: ByteVectorA vector (array) of Int128 values. -
Method Summary
Modifier and TypeMethodDescriptionstatic ExternalPropertyType
Returns the enum constant of this class with the specified name.static ExternalPropertyType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INT_128
Representing type: ByteVectorEncoding: 1:1 binary representation, little endian (16 bytes)
-
UUID
Representing type: ByteVectorEncoding: 1:1 binary representation (16 bytes)
-
DECIMAL_128
IEEE 754 decimal128 type, e.g. supported by MongoDB.Representing type: ByteVector
Encoding: 1:1 binary representation (16 bytes)
-
FLEX_MAP
A key/value map; e.g. corresponds to a JSON object or a MongoDB document (although not keeping the key order). Unlike the Flex type, this must contain a map value (e.g. not a vector or a scalar).Representing type: Flex
Encoding: Flex
-
FLEX_VECTOR
A vector (aka list or array) of flexible elements; e.g. corresponds to a JSON array or a MongoDB array. Unlike the Flex type, this must contain a vector value (e.g. not a map or a scalar).Representing type: Flex
Encoding: Flex
-
JSON
Placeholder (not yet used) for a JSON document.Representing type: String
-
BSON
Placeholder (not yet used) for a BSON document.Representing type: ByteVector
-
JAVASCRIPT
JavaScript source code.Representing type: String
-
INT_128_VECTOR
A vector (array) of Int128 values. -
UUID_VECTOR
A vector (array) of Int128 values. -
MONGO_ID
The 12-byte ObjectId type in MongoDB.Representing type: ByteVector
Encoding: 1:1 binary representation (12 bytes)
-
MONGO_ID_VECTOR
A vector (array) of MongoId values. -
MONGO_TIMESTAMP
Representing type: LongEncoding: Two unsigned 32-bit integers merged into a 64-bit integer.
-
MONGO_BINARY
Representing type: ByteVectorEncoding: 3 zero bytes (reserved, functions as padding), fourth byte is the sub-type, followed by the binary data.
-
MONGO_REGEX
Representing type: string vector with 2 elements (index 0: pattern, index 1: options)Encoding: 1:1 string representation
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-