Uses of Interface
cc.carm.lib.configuration.adapter.ValueSerializer
-
-
Uses of ValueSerializer in cc.carm.lib.configuration.adapter
Classes in cc.carm.lib.configuration.adapter that implement ValueSerializer Modifier and Type Class Description class
ValueAdapter<TYPE>
Value adapter, used to convert the value of the configuration file into the objects.Fields in cc.carm.lib.configuration.adapter declared as ValueSerializer Modifier and Type Field Description protected @Nullable ValueSerializer<TYPE>
ValueAdapter. serializer
Methods in cc.carm.lib.configuration.adapter that return ValueSerializer Modifier and Type Method Description @Nullable ValueSerializer<TYPE>
ValueAdapter. serializer()
Methods in cc.carm.lib.configuration.adapter with parameters of type ValueSerializer Modifier and Type Method Description <T> void
ValueAdapterRegistry. register(@NotNull ValueType<T> type, @NotNull ValueSerializer<T> serializer)
<T> void
ValueAdapterRegistry. register(@NotNull ValueType<T> type, @Nullable ValueSerializer<T> serializer, @Nullable ValueParser<T> deserializer)
<T> void
ValueAdapterRegistry. register(@NotNull java.lang.Class<T> type, @NotNull ValueSerializer<T> serializer)
ValueAdapter<TYPE>
ValueAdapter. serializer(@Nullable ValueSerializer<TYPE> serializer)
Constructors in cc.carm.lib.configuration.adapter with parameters of type ValueSerializer Constructor Description ValueAdapter(@NotNull ValueType<TYPE> type, @Nullable ValueSerializer<TYPE> serializer, @Nullable ValueParser<TYPE> parser)
-
Uses of ValueSerializer in cc.carm.lib.configuration.adapter.strandard
Classes in cc.carm.lib.configuration.adapter.strandard that implement ValueSerializer Modifier and Type Class Description class
PrimitiveAdapter<T>
-
Uses of ValueSerializer in cc.carm.lib.configuration.source
Methods in cc.carm.lib.configuration.source with parameters of type ValueSerializer Modifier and Type Method Description <T> SELF
ConfigurationFactory. adapter(@NotNull ValueType<T> type, @NotNull ValueSerializer<T> serializer)
<T> SELF
ConfigurationFactory. adapter(@NotNull ValueType<T> type, @NotNull ValueSerializer<T> serializer, @NotNull ValueParser<T> parser)
<T> SELF
ConfigurationFactory. adapter(@NotNull java.lang.Class<T> type, @NotNull ValueSerializer<T> serializer, @NotNull ValueParser<T> parser)
-
Uses of ValueSerializer in cc.carm.lib.configuration.value.impl
Methods in cc.carm.lib.configuration.value.impl that return ValueSerializer Modifier and Type Method Description protected <O> @Nullable ValueSerializer<O>
CachedConfigValue. serializerFor(@NotNull ValueAdapter<O> adapter)
-
Uses of ValueSerializer in cc.carm.lib.configuration.value.standard
Methods in cc.carm.lib.configuration.value.standard that return ValueSerializer Modifier and Type Method Description @Nullable ValueSerializer<V>
ConfiguredList. serializer()
@Nullable ValueSerializer<V>
ConfiguredValue. serializer()
Methods in cc.carm.lib.configuration.value.standard with parameters of type ValueSerializer Modifier and Type Method Description static <V> ConfiguredValue<V>
ConfiguredValue. of(@NotNull ValueManifest<V> manifest, @Nullable ValueParser<V> parser, @Nullable ValueSerializer<V> serializer)
-