Package io.deephaven.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
-
Method Summary
Modifier and TypeMethodDescription<TYPE> ObjectCodec<TYPE>
Get or create a cachedObjectCodec
.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
-
getCodec
public <TYPE> ObjectCodec<TYPE> getCodec(@NotNull @NotNull String className, @Nullable @Nullable String arguments) 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
-