Package com.illumon.util.codec
Enum Class CodecCache
- All Implemented Interfaces:
Serializable
,Comparable<CodecCache>
,java.lang.constant.Constable
Cache for
ObjectCodec
instances.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescription<TYPE> ObjectCodec<TYPE>
Get or create a cachedObjectCodec
.static String
getDefaultCodecClass
(Class<?> dataType) Get the defaultObjectCodec
class to use for the given column type.static void
setClassNameRemapper
(Function<String, String> remapper) static CodecCache
Returns the enum constant of this class with the specified name.static CodecCache[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
-
-
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
-
setClassNameRemapper
-
getCodec
Get or create a cachedObjectCodec
.- Type Parameters:
TYPE
- The encoding type- Parameters:
className
- The class namearguments
- The constructor arguments- Returns:
- The corresponding
ObjectCodec
- Throws:
CodecCacheException
- If an error occurred while instantiating the named codec class from the supplied arguments
-
getDefaultCodecClass
Get the defaultObjectCodec
class to use for the given column type.- Parameters:
dataType
- The column data type- Returns:
- The name of the default
ObjectCodec
subclass to use for encoding the given type
-