Uses of Class
cc.carm.lib.configuration.adapter.ValueAdapter
Packages that use ValueAdapter
Package
Description
-
Uses of ValueAdapter in cc.carm.lib.configuration.adapter
Fields in cc.carm.lib.configuration.adapter with type parameters of type ValueAdapterModifier and TypeFieldDescriptionprotected final Set
<ValueAdapter<?>> ValueAdapterRegistry.adapters
Methods in cc.carm.lib.configuration.adapter that return ValueAdapterModifier and TypeMethodDescription<T> @Nullable ValueAdapter
<T> <T> ValueAdapter
<T> <T> ValueAdapter
<T> ValueAdapterRegistry.adapterOf
(T value) ValueAdapter.parser
(@Nullable ValueParser<TYPE> deserializer) ValueAdapter.serializer
(@Nullable ValueSerializer<TYPE> serializer) Methods in cc.carm.lib.configuration.adapter with parameters of type ValueAdapterModifier and TypeMethodDescriptionvoid
ValueAdapterRegistry.register
(@NotNull ValueAdapter<?>... adapter) -
Uses of ValueAdapter in cc.carm.lib.configuration.adapter.strandard
Subclasses of ValueAdapter in cc.carm.lib.configuration.adapter.strandardFields in cc.carm.lib.configuration.adapter.strandard declared as ValueAdapterModifier and TypeFieldDescriptionstatic final @NotNull ValueAdapter
<Enum<?>> StandardAdapters.ENUMS
static final @NotNull ValueAdapter
<ConfigureSection> StandardAdapters.SECTIONS
static final @NotNull ValueAdapter
<UUID> StandardAdapters.UUID
Methods in cc.carm.lib.configuration.adapter.strandard that return ValueAdapter -
Uses of ValueAdapter in cc.carm.lib.configuration.builder.impl
Methods in cc.carm.lib.configuration.builder.impl that return ValueAdapterModifier and TypeMethodDescriptionprotected ValueAdapter
<UNIT> AbstractSectionBuilder.buildAdapter()
protected ValueAdapter
<UNIT> AbstractSourceBuilder.buildAdapter()
-
Uses of ValueAdapter in cc.carm.lib.configuration.builder.map
Methods in cc.carm.lib.configuration.builder.map that return ValueAdapterModifier and TypeMethodDescription@NotNull ValueAdapter
<K> SectionMapBuilder.buildKeyAdapter()
@NotNull ValueAdapter
<K> SourceMapBuilder.buildKeyAdapter()
-
Uses of ValueAdapter in cc.carm.lib.configuration.source
Methods in cc.carm.lib.configuration.source with parameters of type ValueAdapterModifier and TypeMethodDescription<T> SELF
ConfigurationFactory.adapter
(@NotNull ValueAdapter<T> adapter) -
Uses of ValueAdapter in cc.carm.lib.configuration.value.impl
Methods in cc.carm.lib.configuration.value.impl with parameters of type ValueAdapterModifier and TypeMethodDescriptionprotected <O> @Nullable ValueParser
<O> CachedConfigValue.parserFor
(@NotNull ValueAdapter<O> adapter) protected <O> @Nullable ValueSerializer
<O> CachedConfigValue.serializerFor
(@NotNull ValueAdapter<O> adapter) -
Uses of ValueAdapter in cc.carm.lib.configuration.value.standard
Fields in cc.carm.lib.configuration.value.standard declared as ValueAdapterModifier and TypeFieldDescriptionprotected final @NotNull ValueAdapter
<V> ConfiguredValue.adapter
protected final @NotNull ValueAdapter
<K> ConfiguredMap.keyAdapter
protected final @NotNull ValueAdapter
<V> ConfiguredList.paramAdapter
protected final @NotNull ValueAdapter
<V> ConfiguredMap.valueAdapter
Methods in cc.carm.lib.configuration.value.standard that return ValueAdapterModifier and TypeMethodDescription@NotNull ValueAdapter
<V> ConfiguredList.adapter()
@NotNull ValueAdapter
<V> ConfiguredValue.adapter()
@NotNull ValueAdapter
<K> ConfiguredMap.keyAdapter()
@NotNull ValueAdapter
<V> ConfiguredMap.valueAdapter()
Methods in cc.carm.lib.configuration.value.standard with parameters of type ValueAdapterModifier and TypeMethodDescriptionstatic <K,
V> ConfiguredMap <K, V> ConfiguredMap.of
(@NotNull Supplier<? extends Map<K, V>> constructor, @NotNull ValueAdapter<K> keyAdapter, @NotNull ValueAdapter<V> valueAdapter) static <V> ConfiguredValue
<V> ConfiguredValue.of
(@NotNull ValueManifest<V, V> manifest, @NotNull ValueAdapter<V> adapter) Constructors in cc.carm.lib.configuration.value.standard with parameters of type ValueAdapterModifierConstructorDescriptionConfiguredList
(@NotNull ValueManifest<List<V>, V> manifest, @NotNull Supplier<? extends List<V>> constructor, @NotNull ValueAdapter<V> paramAdapter) ConfiguredMap
(@NotNull ValueManifest<Map<K, V>, V> manifest, @NotNull Supplier<? extends Map<K, V>> constructor, @NotNull ValueAdapter<K> keyAdapter, @NotNull ValueAdapter<V> valueAdapter) ConfiguredValue
(@NotNull ValueManifest<V, V> manifest, @NotNull ValueAdapter<V> adapter)