Uses of Interface
cc.carm.lib.configuration.adapter.ValueParser
-
-
Uses of ValueParser in cc.carm.lib.configuration.adapter
Classes in cc.carm.lib.configuration.adapter that implement ValueParser 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 ValueParser Modifier and Type Field Description protected @Nullable ValueParser<TYPE>
ValueAdapter. deserializer
Methods in cc.carm.lib.configuration.adapter that return ValueParser Modifier and Type Method Description @Nullable ValueParser<TYPE>
ValueAdapter. parser()
Methods in cc.carm.lib.configuration.adapter with parameters of type ValueParser Modifier and Type Method Description ValueAdapter<TYPE>
ValueAdapter. parser(@Nullable ValueParser<TYPE> deserializer)
<T> void
ValueAdapterRegistry. register(@NotNull ValueType<T> type, @NotNull ValueParser<T> deserializer)
<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 ValueParser<T> deserializer)
Constructors in cc.carm.lib.configuration.adapter with parameters of type ValueParser Constructor Description ValueAdapter(@NotNull ValueType<TYPE> type, @Nullable ValueSerializer<TYPE> serializer, @Nullable ValueParser<TYPE> parser)
-
Uses of ValueParser in cc.carm.lib.configuration.adapter.strandard
Classes in cc.carm.lib.configuration.adapter.strandard that implement ValueParser Modifier and Type Class Description class
PrimitiveAdapter<T>
Constructors in cc.carm.lib.configuration.adapter.strandard with parameters of type ValueParser Constructor Description PrimitiveAdapter(@NotNull java.lang.Class<T> valueType, @NotNull ValueParser<T> deserializer)
-
Uses of ValueParser in cc.carm.lib.configuration.source
Methods in cc.carm.lib.configuration.source with parameters of type ValueParser Modifier and Type Method Description <T> SELF
ConfigurationFactory. adapter(@NotNull ValueType<T> type, @NotNull ValueParser<T> parser)
<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 ValueParser in cc.carm.lib.configuration.value.impl
Methods in cc.carm.lib.configuration.value.impl that return ValueParser Modifier and Type Method Description protected <O> @Nullable ValueParser<O>
CachedConfigValue. parserFor(@NotNull ValueAdapter<O> adapter)
-
Uses of ValueParser in cc.carm.lib.configuration.value.standard
Methods in cc.carm.lib.configuration.value.standard that return ValueParser Modifier and Type Method Description @Nullable ValueParser<V>
ConfiguredList. parser()
@Nullable ValueParser<V>
ConfiguredValue. parser()
Methods in cc.carm.lib.configuration.value.standard with parameters of type ValueParser Modifier and Type Method Description static <V> ConfiguredValue<V>
ConfiguredValue. of(@NotNull ValueManifest<V> manifest, @Nullable ValueParser<V> parser, @Nullable ValueSerializer<V> serializer)
-