Uses of Interface
io.objectbox.converter.PropertyConverter
-
Packages that use PropertyConverter Package Description io.objectbox ObjectBox is an an easy to use, object-oriented lightweight database and a full alternative to SQLite.io.objectbox.annotation Annotations to mark a class as an@Entity, to specify the@IdProperty, to create an@Indexor a@TransientProperty.io.objectbox.converter For use with@Convert:PropertyConverterto convert custom Property types. -
-
Uses of PropertyConverter in io.objectbox
Fields in io.objectbox with type parameters of type PropertyConverter Modifier and Type Field Description java.lang.Class<? extends PropertyConverter>Property. converterClassMethod parameters in io.objectbox with type arguments of type PropertyConverter Modifier and Type Method Description (package private) static voidBoxStore. nativeRegisterCustomType(long store, int entityId, int propertyId, java.lang.String propertyName, java.lang.Class<? extends PropertyConverter> converterClass, java.lang.Class<?> customType) -
Uses of PropertyConverter in io.objectbox.annotation
Methods in io.objectbox.annotation that return types with arguments of type PropertyConverter Modifier and Type Method Description java.lang.Class<? extends PropertyConverter>converter()The converter class that ObjectBox should use. -
Uses of PropertyConverter in io.objectbox.converter
Classes in io.objectbox.converter that implement PropertyConverter Modifier and Type Class Description classFlexObjectConverterConverts betweenObjectproperties and byte arrays using FlexBuffers.classIntegerFlexMapConverterAFlexObjectConverterthat usesIntegeras map keys.classIntegerLongMapConverterLikeIntegerFlexMapConverter, but always restores integer map values asLong.classLongFlexMapConverterAFlexObjectConverterthat usesLongas map keys.classLongLongMapConverterLikeLongFlexMapConverter, but always restores integer map values asLong.classNullToEmptyStringConverterUsed as a converter if a property is annotated with@DefaultValue("").classStringFlexMapConverterclassStringLongMapConverterLikeStringFlexMapConverter, but always restores integer map values asLong.classStringMapConverterConverts a String map entity property to a byte array database value using FlexBuffers.
-