T - the generic type of the primitive objectsPersistentDataType<T,T>public static class PersistentDataType.PrimitivePersistentDataType<T> extends Object implements PersistentDataType<T,T>
This implementation does not add any kind of logic, but is used to provide default implementations for the primitive types.
PersistentDataType.PrimitivePersistentDataType<T>BYTE, BYTE_ARRAY, DOUBLE, FLOAT, INTEGER, INTEGER_ARRAY, LONG, LONG_ARRAY, SHORT, STRING, TAG_CONTAINER| Modifier and Type | Method | Description | 
|---|---|---|
| T | fromPrimitive(T primitive,
             @NotNull PersistentDataAdapterContext context) | Creates a complex object based of the passed primitive value | 
| @NotNull Class<T> | getComplexType() | Returns the complex object type the primitive value resembles. | 
| @NotNull Class<T> | getPrimitiveType() | Returns the primitive data type of this tag. | 
| T | toPrimitive(T complex,
           @NotNull PersistentDataAdapterContext context) | Returns the primitive data that resembles the complex object passed to
 this method. | 
@NotNull public @NotNull Class<T> getPrimitiveType()
PersistentDataTypegetPrimitiveType in interface PersistentDataType<T,T>@NotNull public @NotNull Class<T> getComplexType()
PersistentDataTypegetComplexType in interface PersistentDataType<T,T>@NotNull public T toPrimitive(@NotNull T complex, @NotNull @NotNull PersistentDataAdapterContext context)
PersistentDataTypetoPrimitive in interface PersistentDataType<T,T>complex - the complex object instancecontext - the context this operation is running in@NotNull public T fromPrimitive(@NotNull T primitive, @NotNull @NotNull PersistentDataAdapterContext context)
PersistentDataTypefromPrimitive in interface PersistentDataType<T,T>primitive - the primitive valuecontext - the context this operation is running inCopyright © 2020. All rights reserved.