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 classValueAdapter<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. deserializerMethods 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> voidValueAdapterRegistry. register(@NotNull ValueType<T> type, @NotNull ValueParser<T> deserializer)<T> voidValueAdapterRegistry. register(@NotNull ValueType<T> type, @Nullable ValueSerializer<T> serializer, @Nullable ValueParser<T> deserializer)<T> voidValueAdapterRegistry. 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 classPrimitiveAdapter<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> SELFConfigurationFactory. adapter(@NotNull ValueType<T> type, @NotNull ValueParser<T> parser)<T> SELFConfigurationFactory. adapter(@NotNull ValueType<T> type, @NotNull ValueSerializer<T> serializer, @NotNull ValueParser<T> parser)<T> SELFConfigurationFactory. 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)
-