commit 5836cc78817cf2674e641c319402c3dfe75b14f2 Author: CarmJos Date: Sun Sep 28 13:04:51 2025 +0800 API Document generated. diff --git a/README.md b/README.md new file mode 100644 index 0000000..d0077d0 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# configured Javadoc + +Based +on [Github Pages](https://pages.github.com/), +please +see [JavaDoc](https://carmjos.github.io/configured) 。 diff --git a/allclasses-index.html b/allclasses-index.html new file mode 100644 index 0000000..ebc9f7f --- /dev/null +++ b/allclasses-index.html @@ -0,0 +1,210 @@ + + + + +All Classes and Interfaces (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

All Classes and Interfaces

+
+
+
+
+
+
Class
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+ +
+
Base implementation of a collection config value, like List or Set.
+
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
+
The configuration path used to mark the corresponding class or parameter.
+
+ +
+
The root interface of the configuration file interfaces, + which is used to label a class as a configuration.
+
+ +
+
ConfigurationFactory, used to create configuration holder.
+
+ +
 
+ +
+
Configuration initializer, + used to initialize ConfigValues from Configuration classes.
+
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
+
Represents a section of a configuration.
+
+ +
+
ConfigureSource represents the source of configuration, + which can be a file, a database, or any other source.
+
+ +
+
Represents a configurable value with type safety and null-handling capabilities.
+
+ +
 
+ +
 
+ +
 
+ +
 
+ +
+
Path generator for configuration.
+
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
+
Value adapter, used to convert the value of the configuration file into the objects.
+
+ +
 
+ +
 
+ +
 
+ +
 
+ +
+
Value deserializer, convert base data to target value.
+
+ +
+
Value serializer, convert target value to base data.
+
+ +
+
ValueType used to get the generic type of the value, + It can be used to check if an object is an instance of a specific type, + and to cast objects to the correct type.
+
+ +
 
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/allpackages-index.html b/allpackages-index.html new file mode 100644 index 0000000..53669fd --- /dev/null +++ b/allpackages-index.html @@ -0,0 +1,105 @@ + + + + +All Packages (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ + +
+ + diff --git a/cc/carm/lib/configuration/Configuration.html b/cc/carm/lib/configuration/Configuration.html new file mode 100644 index 0000000..c44d6c5 --- /dev/null +++ b/cc/carm/lib/configuration/Configuration.html @@ -0,0 +1,104 @@ + + + + +Configuration (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Configuration

+
+
+
+
public interface Configuration
+
The root interface of the configuration file interfaces, + which is used to label a class as a configuration.
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/ValueAdapter.html b/cc/carm/lib/configuration/adapter/ValueAdapter.html new file mode 100644 index 0000000..a739ba1 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/ValueAdapter.html @@ -0,0 +1,372 @@ + + + + +ValueAdapter (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ValueAdapter<TYPE>

+
+
java.lang.Object +
cc.carm.lib.configuration.adapter.ValueAdapter<TYPE>
+
+
+
+
Type Parameters:
+
TYPE - The type of the target value
+
+
+
All Implemented Interfaces:
+
ValueParser<TYPE>, ValueSerializer<TYPE>
+
+
+
Direct Known Subclasses:
+
PrimitiveAdapter
+
+
+
public class ValueAdapter<TYPE> +extends Object +implements ValueSerializer<TYPE>, ValueParser<TYPE>
+
Value adapter, used to convert the value of the configuration file into the objects.
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/ValueAdapterRegistry.html b/cc/carm/lib/configuration/adapter/ValueAdapterRegistry.html new file mode 100644 index 0000000..8f67a3b --- /dev/null +++ b/cc/carm/lib/configuration/adapter/ValueAdapterRegistry.html @@ -0,0 +1,459 @@ + + + + +ValueAdapterRegistry (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ValueAdapterRegistry

+
+
java.lang.Object +
cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
+
+
+
public class ValueAdapterRegistry +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ValueAdapterRegistry

      +
      public ValueAdapterRegistry()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      register

      +
      public <FROM, +TO> void register(@NotNull + @NotNull Class<FROM> from, + @NotNull + @NotNull Class<TO> to, + @Nullable + @Nullable DataFunction<FROM,TO> parser, + @Nullable + @Nullable DataFunction<TO,FROM> serializer)
      +
      +
    • +
    • +
      +

      register

      +
      public <FROM, +TO> void register(@NotNull + @NotNull ValueType<FROM> from, + @NotNull + @NotNull ValueType<TO> to, + @Nullable + @Nullable DataFunction<FROM,TO> parser, + @Nullable + @Nullable DataFunction<TO,FROM> serializer)
      +
      +
    • +
    • +
      +

      register

      +
      public void register(@NotNull + @NotNull ValueAdapter<?>... adapter)
      +
      +
    • +
    • +
      +

      register

      +
      public <T> void register(@NotNull + @NotNull Class<T> type, + @NotNull + @NotNull ValueSerializer<T> serializer)
      +
      +
    • +
    • +
      +

      register

      +
      public <T> void register(@NotNull + @NotNull ValueType<T> type, + @NotNull + @NotNull ValueSerializer<T> serializer)
      +
      +
    • +
    • +
      +

      register

      +
      public <T> void register(@NotNull + @NotNull Class<T> type, + @NotNull + @NotNull ValueParser<T> deserializer)
      +
      +
    • +
    • +
      +

      register

      +
      public <T> void register(@NotNull + @NotNull ValueType<T> type, + @NotNull + @NotNull ValueParser<T> deserializer)
      +
      +
    • +
    • +
      +

      register

      +
      public <T> void register(@NotNull + @NotNull ValueType<T> type, + @Nullable + @Nullable ValueSerializer<T> serializer, + @Nullable + @Nullable ValueParser<T> deserializer)
      +
      +
    • +
    • +
      +

      unregister

      +
      public void unregister(@NotNull + @NotNull Class<?> type)
      +
      +
    • +
    • +
      +

      unregister

      +
      public void unregister(@NotNull + @NotNull ValueType<?> type)
      +
      +
    • +
    • +
      +

      adapterOf

      +
      @Nullable +public <T> @Nullable ValueAdapter<T> adapterOf(@NotNull + @NotNull ValueType<T> type)
      +
      +
    • +
    • +
      +

      adapterOf

      +
      public <T> ValueAdapter<T> adapterOf(@NotNull + T value)
      +
      +
    • +
    • +
      +

      adapterOf

      +
      public <T> ValueAdapter<T> adapterOf(@NotNull + @NotNull Class<T> type)
      +
      +
    • +
    • +
      +

      deserialize

      +
      public <T> T deserialize(@NotNull + @NotNull ConfigurationHolder<?> holder, + @NotNull + @NotNull Class<T> type, + @Nullable + @Nullable Object source) + throws Exception
      +
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      deserialize

      +
      public <T> T deserialize(@NotNull + @NotNull ConfigurationHolder<?> holder, + @NotNull + @NotNull ValueType<T> type, + @Nullable + @Nullable Object source) + throws Exception
      +
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      serialize

      +
      @Nullable +public <T> @Nullable Object serialize(@NotNull + @NotNull ConfigurationHolder<?> holder, + @Nullable + T value) + throws Exception
      +
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      deserializeList

      +
      protected <T> List<T> deserializeList(@NotNull + @NotNull ConfigurationHolder<?> holder, + @NotNull + @NotNull ValueType<T> type, + @Nullable + @Nullable Object source) + throws Exception
      +
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/ValueParser.html b/cc/carm/lib/configuration/adapter/ValueParser.html new file mode 100644 index 0000000..c1ccb6b --- /dev/null +++ b/cc/carm/lib/configuration/adapter/ValueParser.html @@ -0,0 +1,170 @@ + + + + +ValueParser (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ValueParser<TYPE>

+
+
+
+
Type Parameters:
+
TYPE - The type of target value
+
+
+
All Known Implementing Classes:
+
PrimitiveAdapter, ValueAdapter
+
+
+
Functional Interface:
+
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
+
+
+
@FunctionalInterface +public interface ValueParser<TYPE>
+
Value deserializer, convert base data to target value.
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    parse(@NotNull ConfigurationHolder<?> holder, + @NotNull ValueType<? super TYPE> type, + @NotNull Object data)
    +
     
    +
    +
    +
    +
    +
  • +
+
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/ValueSerializer.html b/cc/carm/lib/configuration/adapter/ValueSerializer.html new file mode 100644 index 0000000..8eaa8b6 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/ValueSerializer.html @@ -0,0 +1,170 @@ + + + + +ValueSerializer (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ValueSerializer<TYPE>

+
+
+
+
Type Parameters:
+
TYPE - The type of value
+
+
+
All Known Implementing Classes:
+
PrimitiveAdapter, ValueAdapter
+
+
+
Functional Interface:
+
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
+
+
+
@FunctionalInterface +public interface ValueSerializer<TYPE>
+
Value serializer, convert target value to base data.
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    @Nullable Object
    +
    serialize(@NotNull ConfigurationHolder<?> holder, + @NotNull ValueType<? super TYPE> type, + TYPE value)
    +
     
    +
    +
    +
    +
    +
  • +
+
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/ValueType.html b/cc/carm/lib/configuration/adapter/ValueType.html new file mode 100644 index 0000000..72ac9b9 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/ValueType.html @@ -0,0 +1,614 @@ + + + + +ValueType (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ValueType<T>

+
+
java.lang.Object +
cc.carm.lib.configuration.adapter.ValueType<T>
+
+
+
+
public abstract class ValueType<T> +extends Object
+
ValueType used to get the generic type of the value, + It can be used to check if an object is an instance of a specific type, + and to cast objects to the correct type. +

+ Java's type system is not capable of retaining generic type information at runtime. + This class is used to represent a type with its generic parameters. +

+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ValueType

      +
      protected ValueType()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      of

      +
      public static <T> ValueType<T> of(@NotNull + T value)
      +
      +
    • +
    • +
      +

      of

      +
      public static <T> ValueType<T> of(Type type)
      +
      +
    • +
    • +
      +

      of

      +
      public static <T> ValueType<T> of(@NotNull + @NotNull Class<T> clazz)
      +
      +
    • +
    • +
      +

      ofList

      +
      public static <T> ValueType<List<T>> ofList(@NotNull + @NotNull Class<T> paramType)
      +
      +
    • +
    • +
      +

      ofList

      +
      public static <T> ValueType<List<T>> ofList(@NotNull + @NotNull ValueType<T> paramType)
      +
      +
    • +
    • +
      +

      ofMap

      +
      public static <K, +V> ValueType<Map<K,V>> ofMap(@NotNull + @NotNull Class<K> keyType, + @NotNull + @NotNull Class<V> valueType)
      +
      +
    • +
    • +
      +

      ofMap

      +
      public static <K, +V> ValueType<Map<K,V>> ofMap(@NotNull + @NotNull ValueType<K> keyType, + @NotNull + @NotNull ValueType<V> valueType)
      +
      +
    • +
    • +
      +

      of

      +
      public static <T> ValueType<T> of(Class<?> rawType, + Type... types)
      +
      Get the generic type of the complex type.
      +
      +
      Type Parameters:
      +
      T - The type
      +
      Parameters:
      +
      rawType - The raw type
      +
      types - The type arguments
      +
      Returns:
      +
      The ValueType
      +
      +
      +
    • +
    • +
      +

      getType

      +
      public Type getType()
      +
      +
    • +
    • +
      +

      isSubtypeOf

      +
      public boolean isSubtypeOf(Class<?> target)
      +
      Checks if this ValueType is a subtype of the given Class.
      +
      +
      Parameters:
      +
      target - The target Class to check against
      +
      Returns:
      +
      true if this ValueType is a subtype of the target Class, false otherwise
      +
      +
      +
    • +
    • +
      +

      isSubtypeOf

      +
      public boolean isSubtypeOf(ValueType<?> target)
      +
      Checks if this ValueType is a subtype of the given ValueType.
      +
      +
      Parameters:
      +
      target - The target ValueType to check against
      +
      Returns:
      +
      true if this ValueType is a subtype of the target, false otherwise
      +
      +
      +
    • +
    • +
      +

      isInstance

      +
      public boolean isInstance(Object obj)
      +
      Checks if the given object is an instance of the type represented by this ValueType.
      +
      +
      Parameters:
      +
      obj - The object to check
      +
      Returns:
      +
      true if the object is an instance of the type, false otherwise
      +
      +
      +
    • +
    • +
      +

      getRawType

      +
      public Class<T> getRawType()
      +
      Extracts the raw type from the generic type.
      +
      +
      Returns:
      +
      The raw type of the generic type
      +
      Throws:
      +
      IllegalStateException - if the type is not a Class or ParameterizedType
      +
      +
      +
    • +
    • +
      +

      cast

      +
      public T cast(Object obj)
      +
      Casts the object to the type represented by this ValueType.
      +
      +
      Parameters:
      +
      obj - The object to cast
      +
      Returns:
      +
      The object cast to the type represented by this ValueType
      +
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      Returns a string representation of the type. + Like "java.util.List<java.lang.String>" or "java.lang.Integer".
      +
      +
      Overrides:
      +
      toString in class Object
      +
      Returns:
      +
      String representation of the type
      +
      +
      +
    • +
    • +
      +

      equals

      +
      public boolean equals(Object obj)
      +
      +
      Overrides:
      +
      equals in class Object
      +
      +
      +
    • +
    • +
      +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class Object
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/class-use/ValueAdapter.html b/cc/carm/lib/configuration/adapter/class-use/ValueAdapter.html new file mode 100644 index 0000000..58a36a7 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/class-use/ValueAdapter.html @@ -0,0 +1,354 @@ + + + + +Uses of Class cc.carm.lib.configuration.adapter.ValueAdapter (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.adapter.ValueAdapter

+
+
Packages that use ValueAdapter
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/class-use/ValueAdapterRegistry.html b/cc/carm/lib/configuration/adapter/class-use/ValueAdapterRegistry.html new file mode 100644 index 0000000..5366fe6 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/class-use/ValueAdapterRegistry.html @@ -0,0 +1,136 @@ + + + + +Uses of Class cc.carm.lib.configuration.adapter.ValueAdapterRegistry (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.adapter.ValueAdapterRegistry

+
+
Packages that use ValueAdapterRegistry
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/class-use/ValueParser.html b/cc/carm/lib/configuration/adapter/class-use/ValueParser.html new file mode 100644 index 0000000..bb7c692 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/class-use/ValueParser.html @@ -0,0 +1,264 @@ + + + + +Uses of Interface cc.carm.lib.configuration.adapter.ValueParser (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.adapter.ValueParser

+
+
Packages that use ValueParser
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/class-use/ValueSerializer.html b/cc/carm/lib/configuration/adapter/class-use/ValueSerializer.html new file mode 100644 index 0000000..a842bc8 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/class-use/ValueSerializer.html @@ -0,0 +1,254 @@ + + + + +Uses of Interface cc.carm.lib.configuration.adapter.ValueSerializer (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.adapter.ValueSerializer

+
+
Packages that use ValueSerializer
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/class-use/ValueType.html b/cc/carm/lib/configuration/adapter/class-use/ValueType.html new file mode 100644 index 0000000..4629b15 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/class-use/ValueType.html @@ -0,0 +1,770 @@ + + + + +Uses of Class cc.carm.lib.configuration.adapter.ValueType (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.adapter.ValueType

+
+
Packages that use ValueType
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/package-summary.html b/cc/carm/lib/configuration/adapter/package-summary.html new file mode 100644 index 0000000..ca5ec87 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/package-summary.html @@ -0,0 +1,139 @@ + + + + +cc.carm.lib.configuration.adapter (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.adapter

+
+
+
package cc.carm.lib.configuration.adapter
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/package-tree.html b/cc/carm/lib/configuration/adapter/package-tree.html new file mode 100644 index 0000000..be2e14d --- /dev/null +++ b/cc/carm/lib/configuration/adapter/package-tree.html @@ -0,0 +1,85 @@ + + + + +cc.carm.lib.configuration.adapter Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.adapter

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/package-use.html b/cc/carm/lib/configuration/adapter/package-use.html new file mode 100644 index 0000000..462b4e8 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/package-use.html @@ -0,0 +1,368 @@ + + + + +Uses of Package cc.carm.lib.configuration.adapter (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.adapter

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/strandard/PrimitiveAdapter.html b/cc/carm/lib/configuration/adapter/strandard/PrimitiveAdapter.html new file mode 100644 index 0000000..093b81e --- /dev/null +++ b/cc/carm/lib/configuration/adapter/strandard/PrimitiveAdapter.html @@ -0,0 +1,416 @@ + + + + +PrimitiveAdapter (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class PrimitiveAdapter<T>

+
+
java.lang.Object +
cc.carm.lib.configuration.adapter.ValueAdapter<T> +
cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter<T>
+
+
+
+
+
All Implemented Interfaces:
+
ValueParser<T>, ValueSerializer<T>
+
+
+
public class PrimitiveAdapter<T> +extends ValueAdapter<T>
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/strandard/StandardAdapters.html b/cc/carm/lib/configuration/adapter/strandard/StandardAdapters.html new file mode 100644 index 0000000..9250c73 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/strandard/StandardAdapters.html @@ -0,0 +1,170 @@ + + + + +StandardAdapters (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface StandardAdapters

+
+
+
+
public interface StandardAdapters
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/strandard/class-use/PrimitiveAdapter.html b/cc/carm/lib/configuration/adapter/strandard/class-use/PrimitiveAdapter.html new file mode 100644 index 0000000..ca88fd6 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/strandard/class-use/PrimitiveAdapter.html @@ -0,0 +1,153 @@ + + + + +Uses of Class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter

+
+
Packages that use PrimitiveAdapter
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/strandard/class-use/StandardAdapters.html b/cc/carm/lib/configuration/adapter/strandard/class-use/StandardAdapters.html new file mode 100644 index 0000000..30186d6 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/strandard/class-use/StandardAdapters.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface cc.carm.lib.configuration.adapter.strandard.StandardAdapters (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.adapter.strandard.StandardAdapters

+
+No usage of cc.carm.lib.configuration.adapter.strandard.StandardAdapters
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/strandard/package-summary.html b/cc/carm/lib/configuration/adapter/strandard/package-summary.html new file mode 100644 index 0000000..dac3259 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/strandard/package-summary.html @@ -0,0 +1,111 @@ + + + + +cc.carm.lib.configuration.adapter.strandard (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.adapter.strandard

+
+
+
package cc.carm.lib.configuration.adapter.strandard
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/strandard/package-tree.html b/cc/carm/lib/configuration/adapter/strandard/package-tree.html new file mode 100644 index 0000000..f6fc10a --- /dev/null +++ b/cc/carm/lib/configuration/adapter/strandard/package-tree.html @@ -0,0 +1,86 @@ + + + + +cc.carm.lib.configuration.adapter.strandard Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.adapter.strandard

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/adapter/strandard/package-use.html b/cc/carm/lib/configuration/adapter/strandard/package-use.html new file mode 100644 index 0000000..9165403 --- /dev/null +++ b/cc/carm/lib/configuration/adapter/strandard/package-use.html @@ -0,0 +1,84 @@ + + + + +Uses of Package cc.carm.lib.configuration.adapter.strandard (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.adapter.strandard

+
+ +
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/annotation/ConfigPath.html b/cc/carm/lib/configuration/annotation/ConfigPath.html new file mode 100644 index 0000000..df969f2 --- /dev/null +++ b/cc/carm/lib/configuration/annotation/ConfigPath.html @@ -0,0 +1,172 @@ + + + + +ConfigPath (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Annotation Type ConfigPath

+
+
+
+
@Target({TYPE,FIELD}) +@Retention(RUNTIME) +public @interface ConfigPath
+
The configuration path used to mark the corresponding class or parameter.
+
+
+
    + +
  • +
    +

    Optional Element Summary

    +
    Optional Elements
    +
    +
    Modifier and Type
    +
    Optional Element
    +
    Description
    +
    boolean
    + +
    +
    Whether to start with the root node.
    +
    + + +
    +
    The path value of the current configuration.
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Element Details

    +
      +
    • +
      +

      value

      +
      String value
      +
      The path value of the current configuration. + If not set,will generate the path by PathGenerator.
      +
      +
      Returns:
      +
      The path value of the current configuration
      +
      +
      +
      Default:
      +
      ""
      +
      +
      +
    • +
    • +
      +

      root

      +
      boolean root
      +
      Whether to start with the root node. +
      If false, the previous path (if any) to the node is automatically added. +
      If true, the path will be set directly from the root node.
      +
      +
      Returns:
      +
      Whether to start directly from the root path without inheriting the previous path
      +
      +
      +
      Default:
      +
      false
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/annotation/class-use/ConfigPath.html b/cc/carm/lib/configuration/annotation/class-use/ConfigPath.html new file mode 100644 index 0000000..5afc608 --- /dev/null +++ b/cc/carm/lib/configuration/annotation/class-use/ConfigPath.html @@ -0,0 +1,62 @@ + + + + +Uses of Annotation Type cc.carm.lib.configuration.annotation.ConfigPath (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Annotation Type
cc.carm.lib.configuration.annotation.ConfigPath

+
+No usage of cc.carm.lib.configuration.annotation.ConfigPath
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/annotation/package-summary.html b/cc/carm/lib/configuration/annotation/package-summary.html new file mode 100644 index 0000000..d5c222d --- /dev/null +++ b/cc/carm/lib/configuration/annotation/package-summary.html @@ -0,0 +1,119 @@ + + + + +cc.carm.lib.configuration.annotation (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.annotation

+
+
+
package cc.carm.lib.configuration.annotation
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/annotation/package-tree.html b/cc/carm/lib/configuration/annotation/package-tree.html new file mode 100644 index 0000000..8458b2f --- /dev/null +++ b/cc/carm/lib/configuration/annotation/package-tree.html @@ -0,0 +1,72 @@ + + + + +cc.carm.lib.configuration.annotation Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.annotation

+
+Package Hierarchies: + +
+

Annotation Type Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/annotation/package-use.html b/cc/carm/lib/configuration/annotation/package-use.html new file mode 100644 index 0000000..4bbf9b0 --- /dev/null +++ b/cc/carm/lib/configuration/annotation/package-use.html @@ -0,0 +1,62 @@ + + + + +Uses of Package cc.carm.lib.configuration.annotation (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.annotation

+
+No usage of cc.carm.lib.configuration.annotation
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/AbstractConfigBuilder.html b/cc/carm/lib/configuration/builder/AbstractConfigBuilder.html new file mode 100644 index 0000000..bcbfe9e --- /dev/null +++ b/cc/carm/lib/configuration/builder/AbstractConfigBuilder.html @@ -0,0 +1,518 @@ + + + + +AbstractConfigBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AbstractConfigBuilder<TYPE,UNIT,RESULT extends ConfigValue<TYPE,UNIT>,HOLDER extends ConfigurationHolder<?>,SELF extends AbstractConfigBuilder<TYPE,UNIT,RESULT,HOLDER,SELF>>

+
+
java.lang.Object +
cc.carm.lib.configuration.builder.AbstractConfigBuilder<TYPE,UNIT,RESULT,HOLDER,SELF>
+
+
+
+
Direct Known Subclasses:
+
CommonConfigBuilder
+
+
+
public abstract class AbstractConfigBuilder<TYPE,UNIT,RESULT extends ConfigValue<TYPE,UNIT>,HOLDER extends ConfigurationHolder<?>,SELF extends AbstractConfigBuilder<TYPE,UNIT,RESULT,HOLDER,SELF>> +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      AbstractConfigBuilder

      +
      protected AbstractConfigBuilder(Class<? super HOLDER> providerClass, + ValueType<TYPE> type)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      type

      +
      @NotNull +public @NotNull ValueType<TYPE> type()
      +
      +
    • +
    • +
      +

      self

      +
      protected abstract SELF self()
      +
      +
    • +
    • +
      +

      build

      +
      @NotNull +public abstract RESULT build()
      +
      +
    • +
    • +
      +

      holder

      +
      public SELF holder(@Nullable + HOLDER holder)
      +
      +
    • +
    • +
      +

      path

      +
      public SELF path(@Nullable + @Nullable String path)
      +
      +
    • +
    • +
      +

      validator

      +
      public SELF validator(@NotNull + @NotNull ValueValidator<UNIT> validator)
      +
      Set the ValueValidator for the value.
      +
      +
      Parameters:
      +
      validator - The validator to set.
      +
      Returns:
      +
      this builder
      +
      +
      +
    • +
    • +
      +

      validator

      +
      public SELF validator(@NotNull + @NotNull DataValidator<? super UNIT> validator)
      +
      Set the DataValidator for the value.
      +
      +
      Parameters:
      +
      validator - The validator to set.
      +
      Returns:
      +
      this builder
      +
      +
      +
    • +
    • +
      +

      validate

      +
      public SELF validate(@NotNull + @NotNull ValueValidator<? super UNIT> validator)
      +
      Validate the value with the specified condition.
      +
      +
      Parameters:
      +
      validator - The validator to append.
      +
      Returns:
      +
      this builder
      +
      +
      +
    • +
    • +
      +

      validate

      +
      public SELF validate(@NotNull + @NotNull DataValidator<? super UNIT> validator)
      +
      Validate the value with the specified condition.
      +
      +
      Parameters:
      +
      validator - The validator to append.
      +
      Returns:
      +
      this builder
      +
      +
      +
    • +
    • +
      +

      validate

      +
      public SELF validate(@NotNull + @NotNull Predicate<? super UNIT> condition, + @NotNull + @NotNull Exception exception)
      +
      Validate the value with the specified condition.
      +
      +
      Parameters:
      +
      condition - The condition to check, if the condition is false, an exception will be thrown.
      +
      exception - The exception to throw if the condition is false.
      +
      Returns:
      +
      this builder
      +
      +
      +
    • +
    • +
      +

      validate

      +
      public SELF validate(@NotNull + @NotNull Predicate<? super UNIT> condition, + @NotNull + @NotNull String msg)
      +
      Validate the value with the specified condition.
      +
      +
      Parameters:
      +
      condition - The condition to check, if the condition is false, an exception will be thrown.
      +
      msg - The message to throw if the condition is false.
      +
      Returns:
      +
      this builder
      +
      +
      +
    • +
    • +
      +

      initializer

      +
      public SELF initializer(@NotNull + @NotNull BiConsumer<ConfigurationHolder<?>,String> initializer)
      +
      +
    • +
    • +
      +

      append

      +
      public SELF append(@NotNull + @NotNull BiConsumer<ConfigurationHolder<?>,String> initializer)
      +
      +
    • +
    • +
      +

      append

      +
      public SELF append(@NotNull + @NotNull Consumer<ConfigurationHolder<?>> initializer)
      +
      +
    • +
    • +
      +

      defaults

      +
      public SELF defaults(@Nullable + TYPE defaultValue)
      +
      +
    • +
    • +
      +

      defaults

      +
      public SELF defaults(@NotNull + @NotNull Supplier<@Nullable TYPE> supplier)
      +
      +
    • +
    • +
      +

      meta

      +
      public SELF meta(@NotNull + @NotNull Consumer<@NotNull ConfigurationMetaHolder> metaConsumer)
      +
      +
    • +
    • +
      +

      meta

      +
      public <M> SELF meta(@NotNull + @NotNull ConfigurationMetadata<M> type, + @Nullable + M value)
      +
      +
    • +
    • +
      +

      buildManifest

      +
      @NotNull +protected @NotNull ValueManifest<TYPE,UNIT> buildManifest()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/CommonConfigBuilder.html b/cc/carm/lib/configuration/builder/CommonConfigBuilder.html new file mode 100644 index 0000000..8b447df --- /dev/null +++ b/cc/carm/lib/configuration/builder/CommonConfigBuilder.html @@ -0,0 +1,170 @@ + + + + +CommonConfigBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class CommonConfigBuilder<TYPE,UNIT,RESULT extends ConfigValue<TYPE,UNIT>,SELF extends CommonConfigBuilder<TYPE,UNIT,RESULT,SELF>>

+
+
java.lang.Object +
cc.carm.lib.configuration.builder.AbstractConfigBuilder<TYPE,UNIT,RESULT,ConfigurationHolder<?>,SELF> +
cc.carm.lib.configuration.builder.CommonConfigBuilder<TYPE,UNIT,RESULT,SELF>
+
+
+
+
+
Direct Known Subclasses:
+
AbstractSectionBuilder, AbstractSourceBuilder
+
+
+
public abstract class CommonConfigBuilder<TYPE,UNIT,RESULT extends ConfigValue<TYPE,UNIT>,SELF extends CommonConfigBuilder<TYPE,UNIT,RESULT,SELF>> +extends AbstractConfigBuilder<TYPE,UNIT,RESULT,ConfigurationHolder<?>,SELF>
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      CommonConfigBuilder

      +
      protected CommonConfigBuilder(ValueType<TYPE> type)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/class-use/AbstractConfigBuilder.html b/cc/carm/lib/configuration/builder/class-use/AbstractConfigBuilder.html new file mode 100644 index 0000000..18530e9 --- /dev/null +++ b/cc/carm/lib/configuration/builder/class-use/AbstractConfigBuilder.html @@ -0,0 +1,178 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.AbstractConfigBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.AbstractConfigBuilder

+
+
Packages that use AbstractConfigBuilder
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/class-use/CommonConfigBuilder.html b/cc/carm/lib/configuration/builder/class-use/CommonConfigBuilder.html new file mode 100644 index 0000000..4dfceac --- /dev/null +++ b/cc/carm/lib/configuration/builder/class-use/CommonConfigBuilder.html @@ -0,0 +1,169 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.CommonConfigBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.CommonConfigBuilder

+
+
Packages that use CommonConfigBuilder
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/SectionCollectionBuilder.html b/cc/carm/lib/configuration/builder/collection/SectionCollectionBuilder.html new file mode 100644 index 0000000..a99c45e --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/SectionCollectionBuilder.html @@ -0,0 +1,273 @@ + + + + +SectionCollectionBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SectionCollectionBuilder<V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>,SELF extends SectionCollectionBuilder<V,C,RESULT,SELF>>

+
+
java.lang.Object +
cc.carm.lib.configuration.builder.AbstractConfigBuilder<C,V,RESULT,ConfigurationHolder<?>,SELF> +
cc.carm.lib.configuration.builder.CommonConfigBuilder<C,V,RESULT,SELF> +
cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder<C,V,RESULT,SELF> +
cc.carm.lib.configuration.builder.collection.SectionCollectionBuilder<V,C,RESULT,SELF>
+
+
+
+
+
+
+
Direct Known Subclasses:
+
SimpleCollectionCreator.Section
+
+
+
public abstract class SectionCollectionBuilder<V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>,SELF extends SectionCollectionBuilder<V,C,RESULT,SELF>> +extends AbstractSectionBuilder<C,V,RESULT,SELF>
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      constructor

      +
      @NotNull +protected @NotNull Supplier<? extends C extends Collection<V>> constructor
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      defaults

      +
      @SafeVarargs +@NotNull +public final SELF defaults(@NotNull + V... values)
      +
      +
    • +
    • +
      +

      defaults

      +
      @NotNull +public final SELF defaults(@NotNull + @NotNull Consumer<C> constructor)
      +
      +
    • +
    • +
      +

      constructor

      +
      public SELF constructor(@NotNull + @NotNull Supplier<? extends C> constructor)
      +
      +
    • +
    • +
      +

      construct

      +
      public SELF construct(@NotNull + C collection)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.CollectionValueFactory.html b/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.CollectionValueFactory.html new file mode 100644 index 0000000..1fe6bbe --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.CollectionValueFactory.html @@ -0,0 +1,160 @@ + + + + +SimpleCollectionCreator.CollectionValueFactory (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface SimpleCollectionCreator.CollectionValueFactory<V,C,RESULT>

+
+
+
+
Enclosing class:
+
SimpleCollectionCreator<V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>>
+
+
+
Functional Interface:
+
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
+
+
+
@FunctionalInterface +public static interface SimpleCollectionCreator.CollectionValueFactory<V,C,RESULT>
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    build(@NotNull ValueManifest<C,V> manifest, + @NotNull Supplier<? extends C> constructor, + @NotNull ValueAdapter<V> paramAdapter)
    +
     
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.Section.html b/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.Section.html new file mode 100644 index 0000000..b05a8ef --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.Section.html @@ -0,0 +1,269 @@ + + + + +SimpleCollectionCreator.Section (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SimpleCollectionCreator.Section<V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>>

+
+ +
+
+
Enclosing class:
+
SimpleCollectionCreator<V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>>
+
+
+
public static class SimpleCollectionCreator.Section<V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>> +extends SectionCollectionBuilder<V,C,RESULT,SimpleCollectionCreator.Section<V,C,RESULT>>
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.Source.html b/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.Source.html new file mode 100644 index 0000000..7995265 --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.Source.html @@ -0,0 +1,272 @@ + + + + +SimpleCollectionCreator.Source (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SimpleCollectionCreator.Source<SOURCE,V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>>

+
+ +
+
+
Enclosing class:
+
SimpleCollectionCreator<V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>>
+
+
+
public static class SimpleCollectionCreator.Source<SOURCE,V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>> +extends SourceCollectionBuilder<SOURCE,V,C,RESULT,SimpleCollectionCreator.Source<SOURCE,V,C,RESULT>>
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.html b/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.html new file mode 100644 index 0000000..9411275 --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.html @@ -0,0 +1,330 @@ + + + + +SimpleCollectionCreator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SimpleCollectionCreator<V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>>

+
+
java.lang.Object +
cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator<V,C,RESULT>
+
+
+
+
Direct Known Subclasses:
+
ConfigListCreator
+
+
+
public class SimpleCollectionCreator<V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>> +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/SourceCollectionBuilder.html b/cc/carm/lib/configuration/builder/collection/SourceCollectionBuilder.html new file mode 100644 index 0000000..bb0b172 --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/SourceCollectionBuilder.html @@ -0,0 +1,276 @@ + + + + +SourceCollectionBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SourceCollectionBuilder<SOURCE,V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>,SELF extends SourceCollectionBuilder<SOURCE,V,C,RESULT,SELF>>

+
+
java.lang.Object +
cc.carm.lib.configuration.builder.AbstractConfigBuilder<C,V,RESULT,ConfigurationHolder<?>,SELF> +
cc.carm.lib.configuration.builder.CommonConfigBuilder<C,V,RESULT,SELF> +
cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder<C,SOURCE,V,RESULT,SELF> +
cc.carm.lib.configuration.builder.collection.SourceCollectionBuilder<SOURCE,V,C,RESULT,SELF>
+
+
+
+
+
+
+
Direct Known Subclasses:
+
SimpleCollectionCreator.Source
+
+
+
public abstract class SourceCollectionBuilder<SOURCE,V,C extends Collection<V>,RESULT extends CollectionConfigValue<V,C,?>,SELF extends SourceCollectionBuilder<SOURCE,V,C,RESULT,SELF>> +extends AbstractSourceBuilder<C,SOURCE,V,RESULT,SELF>
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      constructor

      +
      @NotNull +protected @NotNull Supplier<? extends C extends Collection<V>> constructor
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      defaults

      +
      @SafeVarargs +@NotNull +public final SELF defaults(@NotNull + V... values)
      +
      +
    • +
    • +
      +

      defaults

      +
      @NotNull +public final SELF defaults(@NotNull + @NotNull Consumer<C> constructor)
      +
      +
    • +
    • +
      +

      constructor

      +
      public SELF constructor(@NotNull + @NotNull Supplier<? extends C> constructor)
      +
      +
    • +
    • +
      +

      construct

      +
      public SELF construct(@NotNull + C collection)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/class-use/SectionCollectionBuilder.html b/cc/carm/lib/configuration/builder/collection/class-use/SectionCollectionBuilder.html new file mode 100644 index 0000000..2a40e6d --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/class-use/SectionCollectionBuilder.html @@ -0,0 +1,96 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.collection.SectionCollectionBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.collection.SectionCollectionBuilder

+
+
Packages that use SectionCollectionBuilder
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.CollectionValueFactory.html b/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.CollectionValueFactory.html new file mode 100644 index 0000000..0c2a2d3 --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.CollectionValueFactory.html @@ -0,0 +1,134 @@ + + + + +Uses of Interface cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.CollectionValueFactory (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.CollectionValueFactory

+
+ +
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.Section.html b/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.Section.html new file mode 100644 index 0000000..f15a345 --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.Section.html @@ -0,0 +1,90 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Section (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Section

+
+ +
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.Source.html b/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.Source.html new file mode 100644 index 0000000..e8832e4 --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.Source.html @@ -0,0 +1,118 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Source (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Source

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.html b/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.html new file mode 100644 index 0000000..1af4236 --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.html @@ -0,0 +1,109 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator

+
+
Packages that use SimpleCollectionCreator
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/class-use/SourceCollectionBuilder.html b/cc/carm/lib/configuration/builder/collection/class-use/SourceCollectionBuilder.html new file mode 100644 index 0000000..0e15aa9 --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/class-use/SourceCollectionBuilder.html @@ -0,0 +1,96 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.collection.SourceCollectionBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.collection.SourceCollectionBuilder

+
+
Packages that use SourceCollectionBuilder
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/package-summary.html b/cc/carm/lib/configuration/builder/collection/package-summary.html new file mode 100644 index 0000000..d5224ea --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/package-summary.html @@ -0,0 +1,127 @@ + + + + +cc.carm.lib.configuration.builder.collection (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.builder.collection

+
+
+
package cc.carm.lib.configuration.builder.collection
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/package-tree.html b/cc/carm/lib/configuration/builder/collection/package-tree.html new file mode 100644 index 0000000..ff53170 --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/package-tree.html @@ -0,0 +1,108 @@ + + + + +cc.carm.lib.configuration.builder.collection Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.builder.collection

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/collection/package-use.html b/cc/carm/lib/configuration/builder/collection/package-use.html new file mode 100644 index 0000000..dbfd152 --- /dev/null +++ b/cc/carm/lib/configuration/builder/collection/package-use.html @@ -0,0 +1,120 @@ + + + + +Uses of Package cc.carm.lib.configuration.builder.collection (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ + +
+ + diff --git a/cc/carm/lib/configuration/builder/impl/AbstractSectionBuilder.html b/cc/carm/lib/configuration/builder/impl/AbstractSectionBuilder.html new file mode 100644 index 0000000..22bf5a2 --- /dev/null +++ b/cc/carm/lib/configuration/builder/impl/AbstractSectionBuilder.html @@ -0,0 +1,308 @@ + + + + +AbstractSectionBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AbstractSectionBuilder<TYPE,UNIT,RESULT extends ConfigValue<TYPE,UNIT>,SELF extends AbstractSectionBuilder<TYPE,UNIT,RESULT,SELF>>

+
+
java.lang.Object +
cc.carm.lib.configuration.builder.AbstractConfigBuilder<TYPE,UNIT,RESULT,ConfigurationHolder<?>,SELF> +
cc.carm.lib.configuration.builder.CommonConfigBuilder<TYPE,UNIT,RESULT,SELF> +
cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder<TYPE,UNIT,RESULT,SELF>
+
+
+
+
+
+
Direct Known Subclasses:
+
SectionCollectionBuilder, SectionMapBuilder, SectionValueBuilder
+
+
+
public abstract class AbstractSectionBuilder<TYPE,UNIT,RESULT extends ConfigValue<TYPE,UNIT>,SELF extends AbstractSectionBuilder<TYPE,UNIT,RESULT,SELF>> +extends CommonConfigBuilder<TYPE,UNIT,RESULT,SELF>
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/impl/AbstractSourceBuilder.html b/cc/carm/lib/configuration/builder/impl/AbstractSourceBuilder.html new file mode 100644 index 0000000..c692493 --- /dev/null +++ b/cc/carm/lib/configuration/builder/impl/AbstractSourceBuilder.html @@ -0,0 +1,332 @@ + + + + +AbstractSourceBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AbstractSourceBuilder<V,SOURCE,UNIT,RESULT extends ConfigValue<V,UNIT>,SELF extends AbstractSourceBuilder<V,SOURCE,UNIT,RESULT,SELF>>

+
+
java.lang.Object +
cc.carm.lib.configuration.builder.AbstractConfigBuilder<V,UNIT,RESULT,ConfigurationHolder<?>,SELF> +
cc.carm.lib.configuration.builder.CommonConfigBuilder<V,UNIT,RESULT,SELF> +
cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder<V,SOURCE,UNIT,RESULT,SELF>
+
+
+
+
+
+
Direct Known Subclasses:
+
SourceCollectionBuilder, SourceMapBuilder, SourceValueBuilder
+
+
+
public abstract class AbstractSourceBuilder<V,SOURCE,UNIT,RESULT extends ConfigValue<V,UNIT>,SELF extends AbstractSourceBuilder<V,SOURCE,UNIT,RESULT,SELF>> +extends CommonConfigBuilder<V,UNIT,RESULT,SELF>
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/impl/class-use/AbstractSectionBuilder.html b/cc/carm/lib/configuration/builder/impl/class-use/AbstractSectionBuilder.html new file mode 100644 index 0000000..af573b7 --- /dev/null +++ b/cc/carm/lib/configuration/builder/impl/class-use/AbstractSectionBuilder.html @@ -0,0 +1,138 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder

+
+
Packages that use AbstractSectionBuilder
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/impl/class-use/AbstractSourceBuilder.html b/cc/carm/lib/configuration/builder/impl/class-use/AbstractSourceBuilder.html new file mode 100644 index 0000000..406a573 --- /dev/null +++ b/cc/carm/lib/configuration/builder/impl/class-use/AbstractSourceBuilder.html @@ -0,0 +1,138 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder

+
+
Packages that use AbstractSourceBuilder
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/impl/package-summary.html b/cc/carm/lib/configuration/builder/impl/package-summary.html new file mode 100644 index 0000000..2d04be8 --- /dev/null +++ b/cc/carm/lib/configuration/builder/impl/package-summary.html @@ -0,0 +1,117 @@ + + + + +cc.carm.lib.configuration.builder.impl (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.builder.impl

+
+
+
package cc.carm.lib.configuration.builder.impl
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/impl/package-tree.html b/cc/carm/lib/configuration/builder/impl/package-tree.html new file mode 100644 index 0000000..bfda340 --- /dev/null +++ b/cc/carm/lib/configuration/builder/impl/package-tree.html @@ -0,0 +1,85 @@ + + + + +cc.carm.lib.configuration.builder.impl Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.builder.impl

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/impl/package-use.html b/cc/carm/lib/configuration/builder/impl/package-use.html new file mode 100644 index 0000000..a905db2 --- /dev/null +++ b/cc/carm/lib/configuration/builder/impl/package-use.html @@ -0,0 +1,131 @@ + + + + +Uses of Package cc.carm.lib.configuration.builder.impl (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.builder.impl

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/list/ConfigListCreator.html b/cc/carm/lib/configuration/builder/list/ConfigListCreator.html new file mode 100644 index 0000000..89179f1 --- /dev/null +++ b/cc/carm/lib/configuration/builder/list/ConfigListCreator.html @@ -0,0 +1,174 @@ + + + + +ConfigListCreator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigListCreator<V>

+
+
java.lang.Object +
cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator<V,List<V>,ConfiguredList<V>> +
cc.carm.lib.configuration.builder.list.ConfigListCreator<V>
+
+
+
+
+
public class ConfigListCreator<V> +extends SimpleCollectionCreator<V,List<V>,ConfiguredList<V>>
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ConfigListCreator

      +
      public ConfigListCreator(@NotNull + @NotNull ValueType<V> type)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/list/class-use/ConfigListCreator.html b/cc/carm/lib/configuration/builder/list/class-use/ConfigListCreator.html new file mode 100644 index 0000000..54dcd90 --- /dev/null +++ b/cc/carm/lib/configuration/builder/list/class-use/ConfigListCreator.html @@ -0,0 +1,90 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.list.ConfigListCreator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.list.ConfigListCreator

+
+
Packages that use ConfigListCreator
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/list/package-summary.html b/cc/carm/lib/configuration/builder/list/package-summary.html new file mode 100644 index 0000000..eb62129 --- /dev/null +++ b/cc/carm/lib/configuration/builder/list/package-summary.html @@ -0,0 +1,115 @@ + + + + +cc.carm.lib.configuration.builder.list (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.builder.list

+
+
+
package cc.carm.lib.configuration.builder.list
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/list/package-tree.html b/cc/carm/lib/configuration/builder/list/package-tree.html new file mode 100644 index 0000000..792554f --- /dev/null +++ b/cc/carm/lib/configuration/builder/list/package-tree.html @@ -0,0 +1,80 @@ + + + + +cc.carm.lib.configuration.builder.list Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.builder.list

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/list/package-use.html b/cc/carm/lib/configuration/builder/list/package-use.html new file mode 100644 index 0000000..ce44740 --- /dev/null +++ b/cc/carm/lib/configuration/builder/list/package-use.html @@ -0,0 +1,84 @@ + + + + +Uses of Package cc.carm.lib.configuration.builder.list (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.builder.list

+
+ +
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/map/ConfigMapBuilder.html b/cc/carm/lib/configuration/builder/map/ConfigMapBuilder.html new file mode 100644 index 0000000..2fea2c6 --- /dev/null +++ b/cc/carm/lib/configuration/builder/map/ConfigMapBuilder.html @@ -0,0 +1,333 @@ + + + + +ConfigMapBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigMapBuilder<M extends Map<K,V>,K,V>

+
+
java.lang.Object +
cc.carm.lib.configuration.builder.map.ConfigMapBuilder<M,K,V>
+
+
+
+
public class ConfigMapBuilder<M extends Map<K,V>,K,V> +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/map/ConfigMapCreator.html b/cc/carm/lib/configuration/builder/map/ConfigMapCreator.html new file mode 100644 index 0000000..9a835d9 --- /dev/null +++ b/cc/carm/lib/configuration/builder/map/ConfigMapCreator.html @@ -0,0 +1,281 @@ + + + + +ConfigMapCreator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigMapCreator<K,V>

+
+
java.lang.Object +
cc.carm.lib.configuration.builder.map.ConfigMapCreator<K,V>
+
+
+
+
public class ConfigMapCreator<K,V> +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      keyType

      +
      @NotNull +protected final @NotNull ValueType<K> keyType
      +
      +
    • +
    • +
      +

      valueType

      +
      @NotNull +protected final @NotNull ValueType<V> valueType
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ConfigMapCreator

      +
      public ConfigMapCreator(@NotNull + @NotNull ValueType<K> keyType, + @NotNull + @NotNull ValueType<V> valueType)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/map/SectionMapBuilder.html b/cc/carm/lib/configuration/builder/map/SectionMapBuilder.html new file mode 100644 index 0000000..a5b0cdb --- /dev/null +++ b/cc/carm/lib/configuration/builder/map/SectionMapBuilder.html @@ -0,0 +1,383 @@ + + + + +SectionMapBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SectionMapBuilder<MAP extends Map<K,V>,K,V>

+
+ +
+
+
public class SectionMapBuilder<MAP extends Map<K,V>,K,V> +extends AbstractSectionBuilder<Map<K,V>,V,ConfiguredMap<K,V>,SectionMapBuilder<MAP,K,V>>
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/map/SourceMapBuilder.html b/cc/carm/lib/configuration/builder/map/SourceMapBuilder.html new file mode 100644 index 0000000..4e38b5b --- /dev/null +++ b/cc/carm/lib/configuration/builder/map/SourceMapBuilder.html @@ -0,0 +1,386 @@ + + + + +SourceMapBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SourceMapBuilder<MAP extends Map<K,V>,SOURCE,K,V>

+
+ +
+
+
public class SourceMapBuilder<MAP extends Map<K,V>,SOURCE,K,V> +extends AbstractSourceBuilder<Map<K,V>,SOURCE,V,ConfiguredMap<K,V>,SourceMapBuilder<MAP,SOURCE,K,V>>
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/map/class-use/ConfigMapBuilder.html b/cc/carm/lib/configuration/builder/map/class-use/ConfigMapBuilder.html new file mode 100644 index 0000000..f8f28b2 --- /dev/null +++ b/cc/carm/lib/configuration/builder/map/class-use/ConfigMapBuilder.html @@ -0,0 +1,108 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.map.ConfigMapBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.map.ConfigMapBuilder

+
+
Packages that use ConfigMapBuilder
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/map/class-use/ConfigMapCreator.html b/cc/carm/lib/configuration/builder/map/class-use/ConfigMapCreator.html new file mode 100644 index 0000000..495343c --- /dev/null +++ b/cc/carm/lib/configuration/builder/map/class-use/ConfigMapCreator.html @@ -0,0 +1,97 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.map.ConfigMapCreator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.map.ConfigMapCreator

+
+
Packages that use ConfigMapCreator
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/map/class-use/SectionMapBuilder.html b/cc/carm/lib/configuration/builder/map/class-use/SectionMapBuilder.html new file mode 100644 index 0000000..5fff4e2 --- /dev/null +++ b/cc/carm/lib/configuration/builder/map/class-use/SectionMapBuilder.html @@ -0,0 +1,118 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.map.SectionMapBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.map.SectionMapBuilder

+
+
Packages that use SectionMapBuilder
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/map/class-use/SourceMapBuilder.html b/cc/carm/lib/configuration/builder/map/class-use/SourceMapBuilder.html new file mode 100644 index 0000000..1d35142 --- /dev/null +++ b/cc/carm/lib/configuration/builder/map/class-use/SourceMapBuilder.html @@ -0,0 +1,151 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.map.SourceMapBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.map.SourceMapBuilder

+
+
Packages that use SourceMapBuilder
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/map/package-summary.html b/cc/carm/lib/configuration/builder/map/package-summary.html new file mode 100644 index 0000000..865d3ac --- /dev/null +++ b/cc/carm/lib/configuration/builder/map/package-summary.html @@ -0,0 +1,121 @@ + + + + +cc.carm.lib.configuration.builder.map (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.builder.map

+
+
+
package cc.carm.lib.configuration.builder.map
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/map/package-tree.html b/cc/carm/lib/configuration/builder/map/package-tree.html new file mode 100644 index 0000000..62b2964 --- /dev/null +++ b/cc/carm/lib/configuration/builder/map/package-tree.html @@ -0,0 +1,95 @@ + + + + +cc.carm.lib.configuration.builder.map Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.builder.map

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/map/package-use.html b/cc/carm/lib/configuration/builder/map/package-use.html new file mode 100644 index 0000000..ba99f42 --- /dev/null +++ b/cc/carm/lib/configuration/builder/map/package-use.html @@ -0,0 +1,103 @@ + + + + +Uses of Package cc.carm.lib.configuration.builder.map (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.builder.map

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/package-summary.html b/cc/carm/lib/configuration/builder/package-summary.html new file mode 100644 index 0000000..c22d78b --- /dev/null +++ b/cc/carm/lib/configuration/builder/package-summary.html @@ -0,0 +1,119 @@ + + + + +cc.carm.lib.configuration.builder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.builder

+
+
+
package cc.carm.lib.configuration.builder
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/package-tree.html b/cc/carm/lib/configuration/builder/package-tree.html new file mode 100644 index 0000000..d0e0d27 --- /dev/null +++ b/cc/carm/lib/configuration/builder/package-tree.html @@ -0,0 +1,80 @@ + + + + +cc.carm.lib.configuration.builder Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.builder

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/package-use.html b/cc/carm/lib/configuration/builder/package-use.html new file mode 100644 index 0000000..ecf2ecb --- /dev/null +++ b/cc/carm/lib/configuration/builder/package-use.html @@ -0,0 +1,146 @@ + + + + +Uses of Package cc.carm.lib.configuration.builder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.builder

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/value/ConfigValueBuilder.html b/cc/carm/lib/configuration/builder/value/ConfigValueBuilder.html new file mode 100644 index 0000000..2a11343 --- /dev/null +++ b/cc/carm/lib/configuration/builder/value/ConfigValueBuilder.html @@ -0,0 +1,272 @@ + + + + +ConfigValueBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigValueBuilder<V>

+
+
java.lang.Object +
cc.carm.lib.configuration.builder.value.ConfigValueBuilder<V>
+
+
+
+
public class ConfigValueBuilder<V> +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/value/SectionValueBuilder.html b/cc/carm/lib/configuration/builder/value/SectionValueBuilder.html new file mode 100644 index 0000000..5c0e6ed --- /dev/null +++ b/cc/carm/lib/configuration/builder/value/SectionValueBuilder.html @@ -0,0 +1,227 @@ + + + + +SectionValueBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SectionValueBuilder<V>

+
+ +
+
+
public class SectionValueBuilder<V> +extends AbstractSectionBuilder<V,V,ConfiguredValue<V>,SectionValueBuilder<V>>
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/value/SourceValueBuilder.html b/cc/carm/lib/configuration/builder/value/SourceValueBuilder.html new file mode 100644 index 0000000..6511785 --- /dev/null +++ b/cc/carm/lib/configuration/builder/value/SourceValueBuilder.html @@ -0,0 +1,230 @@ + + + + +SourceValueBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SourceValueBuilder<S,V>

+
+ +
+
+
public class SourceValueBuilder<S,V> +extends AbstractSourceBuilder<V,S,V,ConfiguredValue<V>,SourceValueBuilder<S,V>>
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/value/class-use/ConfigValueBuilder.html b/cc/carm/lib/configuration/builder/value/class-use/ConfigValueBuilder.html new file mode 100644 index 0000000..5b58f9c --- /dev/null +++ b/cc/carm/lib/configuration/builder/value/class-use/ConfigValueBuilder.html @@ -0,0 +1,94 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.value.ConfigValueBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.value.ConfigValueBuilder

+
+
Packages that use ConfigValueBuilder
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/value/class-use/SectionValueBuilder.html b/cc/carm/lib/configuration/builder/value/class-use/SectionValueBuilder.html new file mode 100644 index 0000000..c1c423c --- /dev/null +++ b/cc/carm/lib/configuration/builder/value/class-use/SectionValueBuilder.html @@ -0,0 +1,94 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.value.SectionValueBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.value.SectionValueBuilder

+
+
Packages that use SectionValueBuilder
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/value/class-use/SourceValueBuilder.html b/cc/carm/lib/configuration/builder/value/class-use/SourceValueBuilder.html new file mode 100644 index 0000000..1a83f2c --- /dev/null +++ b/cc/carm/lib/configuration/builder/value/class-use/SourceValueBuilder.html @@ -0,0 +1,124 @@ + + + + +Uses of Class cc.carm.lib.configuration.builder.value.SourceValueBuilder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.builder.value.SourceValueBuilder

+
+
Packages that use SourceValueBuilder
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/value/package-summary.html b/cc/carm/lib/configuration/builder/value/package-summary.html new file mode 100644 index 0000000..acd7574 --- /dev/null +++ b/cc/carm/lib/configuration/builder/value/package-summary.html @@ -0,0 +1,119 @@ + + + + +cc.carm.lib.configuration.builder.value (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.builder.value

+
+
+
package cc.carm.lib.configuration.builder.value
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/value/package-tree.html b/cc/carm/lib/configuration/builder/value/package-tree.html new file mode 100644 index 0000000..e829ada --- /dev/null +++ b/cc/carm/lib/configuration/builder/value/package-tree.html @@ -0,0 +1,94 @@ + + + + +cc.carm.lib.configuration.builder.value Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.builder.value

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/builder/value/package-use.html b/cc/carm/lib/configuration/builder/value/package-use.html new file mode 100644 index 0000000..e8901d9 --- /dev/null +++ b/cc/carm/lib/configuration/builder/value/package-use.html @@ -0,0 +1,101 @@ + + + + +Uses of Package cc.carm.lib.configuration.builder.value (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.builder.value

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/class-use/Configuration.html b/cc/carm/lib/configuration/class-use/Configuration.html new file mode 100644 index 0000000..b93d4d3 --- /dev/null +++ b/cc/carm/lib/configuration/class-use/Configuration.html @@ -0,0 +1,153 @@ + + + + +Uses of Interface cc.carm.lib.configuration.Configuration (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.Configuration

+
+
Packages that use Configuration
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/ConfigExceptionHandler.html b/cc/carm/lib/configuration/function/ConfigExceptionHandler.html new file mode 100644 index 0000000..2ccd96f --- /dev/null +++ b/cc/carm/lib/configuration/function/ConfigExceptionHandler.html @@ -0,0 +1,172 @@ + + + + +ConfigExceptionHandler (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ConfigExceptionHandler

+
+
+
+
Functional Interface:
+
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
+
+
+
@FunctionalInterface +public interface ConfigExceptionHandler
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/DataConsumer.html b/cc/carm/lib/configuration/function/DataConsumer.html new file mode 100644 index 0000000..58fab3a --- /dev/null +++ b/cc/carm/lib/configuration/function/DataConsumer.html @@ -0,0 +1,168 @@ + + + + +DataConsumer (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface DataConsumer<T>

+
+
+
+
All Superinterfaces:
+
Serializable
+
+
+
Functional Interface:
+
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
+
+
+
@FunctionalInterface +public interface DataConsumer<T> +extends Serializable
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    accept(T data)
    +
     
    +
    default DataConsumer<T>
    +
    andThen(DataConsumer<? super T> after)
    +
     
    +
    +
    +
    +
    +
  • +
+
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/DataFunction.html b/cc/carm/lib/configuration/function/DataFunction.html new file mode 100644 index 0000000..03c6cbd --- /dev/null +++ b/cc/carm/lib/configuration/function/DataFunction.html @@ -0,0 +1,338 @@ + + + + +DataFunction (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface DataFunction<T,R>

+
+
+
+
All Superinterfaces:
+
Serializable
+
+
+
Functional Interface:
+
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
+
+
+
@FunctionalInterface +public interface DataFunction<T,R> +extends Serializable
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      handle

      +
      @NotNull +R handle(@NotNull + T data) + throws Exception
      +
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      andThen

      +
      @NotNull +default <V> @NotNull DataFunction<T,V> andThen(@NotNull + @NotNull DataFunction<? super R,V> after)
      +
      +
    • +
    • +
      +

      identity

      +
      @Contract(pure=true) +@NotNull +static <T> @NotNull DataFunction<T,T> identity()
      +
      +
    • +
    • +
      +

      identity

      +
      @Contract(pure=true) +@NotNull +static <T> @NotNull DataFunction<T,T> identity(Class<T> type)
      +
      +
    • +
    • +
      +

      required

      +
      @Contract(pure=true) +@NotNull +static <T, +V> @NotNull DataFunction<T,V> required()
      +
      +
    • +
    • +
      +

      toObject

      +
      @Contract(pure=true) +@NotNull +static <T> @NotNull DataFunction<T,Object> toObject()
      +
      +
    • +
    • +
      +

      castObject

      +
      @Contract(pure=true) +@NotNull +static <V> @NotNull DataFunction<Object,V> castObject(Class<V> valueClass)
      +
      +
    • +
    • +
      +

      castFromString

      +
      @Contract(pure=true) +@NotNull +static <V> @NotNull DataFunction<String,V> castFromString(Class<V> valueClass)
      +
      +
    • +
    • +
      +

      castToString

      +
      @Contract(pure=true) +@NotNull +static <T> @NotNull DataFunction<T,String> castToString()
      +
      +
    • +
    • +
      +

      parseString

      +
      @Contract(pure=true) +@NotNull +static <V> @NotNull DataFunction<String,V> parseString(Class<V> valueClass)
      +
      +
    • +
    • +
      +

      intValue

      +
      @Contract(pure=true) +@NotNull +static @NotNull DataFunction<Object,Integer> intValue()
      +
      +
    • +
    • +
      +

      shortValue

      +
      @Contract(pure=true) +@NotNull +static @NotNull DataFunction<Object,Short> shortValue()
      +
      +
    • +
    • +
      +

      doubleValue

      +
      @Contract(pure=true) +@NotNull +static @NotNull DataFunction<Object,Double> doubleValue()
      +
      +
    • +
    • +
      +

      byteValue

      +
      @Contract(pure=true) +@NotNull +static @NotNull DataFunction<Object,Byte> byteValue()
      +
      +
    • +
    • +
      +

      floatValue

      +
      @Contract(pure=true) +@NotNull +static @NotNull DataFunction<Object,Float> floatValue()
      +
      +
    • +
    • +
      +

      longValue

      +
      @Contract(pure=true) +@NotNull +static @NotNull DataFunction<Object,Long> longValue()
      +
      +
    • +
    • +
      +

      booleanValue

      +
      @Contract(pure=true) +@NotNull +static @NotNull DataFunction<Object,Boolean> booleanValue()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/DataValidator.html b/cc/carm/lib/configuration/function/DataValidator.html new file mode 100644 index 0000000..7c0a8e4 --- /dev/null +++ b/cc/carm/lib/configuration/function/DataValidator.html @@ -0,0 +1,168 @@ + + + + +DataValidator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface DataValidator<T>

+
+
+
+
All Superinterfaces:
+
Serializable
+
+
+
Functional Interface:
+
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
+
+
+
@FunctionalInterface +public interface DataValidator<T> +extends Serializable
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    default DataValidator<T>
    +
    compose(DataValidator<? super T> other)
    +
     
    +
    void
    +
    validate(T value)
    +
     
    +
    +
    +
    +
    +
  • +
+
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/ValueComposer.html b/cc/carm/lib/configuration/function/ValueComposer.html new file mode 100644 index 0000000..a492ce3 --- /dev/null +++ b/cc/carm/lib/configuration/function/ValueComposer.html @@ -0,0 +1,181 @@ + + + + +ValueComposer (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ValueComposer<T,U>

+
+
+
+
All Superinterfaces:
+
Serializable
+
+
+
Functional Interface:
+
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
+
+
+
@FunctionalInterface +public interface ValueComposer<T,U> +extends Serializable
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    accept(@NotNull ConfigurationHolder<?> holder, + T type, + U data)
    +
    +
    Accept the value and the data, and then compose the value.
    +
    +
    default ValueComposer<T,U>
    +
    andThen(ValueComposer<? super T,? super U> after)
    +
     
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      accept

      +
      void accept(@NotNull + @NotNull ConfigurationHolder<?> holder, + @NotNull + T type, + @NotNull + U data) + throws Exception
      +
      Accept the value and the data, and then compose the value.
      +
      +
      Parameters:
      +
      holder - The configuration holder
      +
      type - The value type, e.g. List, Map, etc.
      +
      data - The unit data
      +
      Throws:
      +
      Exception - If an error occurs
      +
      +
      +
    • +
    • +
      +

      andThen

      +
      default ValueComposer<T,U> andThen(ValueComposer<? super T,? super U> after)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/ValueHandler.html b/cc/carm/lib/configuration/function/ValueHandler.html new file mode 100644 index 0000000..214b1bc --- /dev/null +++ b/cc/carm/lib/configuration/function/ValueHandler.html @@ -0,0 +1,265 @@ + + + + +ValueHandler (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ValueHandler<T,R>

+
+
+
+
All Superinterfaces:
+
Serializable
+
+
+
Functional Interface:
+
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
+
+
+
@FunctionalInterface +public interface ValueHandler<T,R> +extends Serializable
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      handle

      +
      @Nullable +R handle(@NotNull + @NotNull ConfigurationHolder<?> holder, + @NotNull + T data) + throws Exception
      +
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      andThen

      +
      default <V> ValueHandler<T,V> andThen(@NotNull + @NotNull ValueHandler<R,V> after)
      +
      +
    • +
    • +
      +

      compose

      +
      default <V> ValueHandler<V,R> compose(@NotNull + @NotNull ValueHandler<? super V,? extends T> before)
      +
      +
    • +
    • +
      +

      compose

      +
      default <V> ValueHandler<V,R> compose(@NotNull + @NotNull DataFunction<? super V,? extends T> before)
      +
      +
    • +
    • +
      +

      identity

      +
      @Contract(pure=true) +@NotNull +static <T> @NotNull ValueHandler<T,T> identity()
      +
      +
    • +
    • +
      +

      toObject

      +
      @Contract(pure=true) +@NotNull +static <T> @NotNull ValueHandler<T,Object> toObject()
      +
      +
    • +
    • +
      +

      stringValue

      +
      @Contract(pure=true) +@NotNull +static <T> @NotNull ValueHandler<T,String> stringValue()
      +
      +
    • +
    • +
      +

      deserialize

      +
      @Contract(pure=true) +@NotNull +static <O, +T> @NotNull ValueHandler<O,T> deserialize(ValueType<T> to)
      +
      +
    • +
    • +
      +

      required

      +
      @Contract(pure=true) +@NotNull +static <T, +V> @NotNull ValueHandler<T,V> required()
      +
      +
    • +
    • +
      +

      required

      +
      @Contract(pure=true) +@NotNull +static <T, +V> @NotNull ValueHandler<T,V> required(ValueType<V> type)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/ValueValidator.html b/cc/carm/lib/configuration/function/ValueValidator.html new file mode 100644 index 0000000..de04b46 --- /dev/null +++ b/cc/carm/lib/configuration/function/ValueValidator.html @@ -0,0 +1,222 @@ + + + + +ValueValidator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ValueValidator<T>

+
+
+
+
All Superinterfaces:
+
Serializable
+
+
+
Functional Interface:
+
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
+
+
+
@FunctionalInterface +public interface ValueValidator<T> +extends Serializable
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/class-use/ConfigExceptionHandler.html b/cc/carm/lib/configuration/function/class-use/ConfigExceptionHandler.html new file mode 100644 index 0000000..5c7a619 --- /dev/null +++ b/cc/carm/lib/configuration/function/class-use/ConfigExceptionHandler.html @@ -0,0 +1,134 @@ + + + + +Uses of Interface cc.carm.lib.configuration.function.ConfigExceptionHandler (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.function.ConfigExceptionHandler

+
+
Packages that use ConfigExceptionHandler
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/class-use/DataConsumer.html b/cc/carm/lib/configuration/function/class-use/DataConsumer.html new file mode 100644 index 0000000..ced787c --- /dev/null +++ b/cc/carm/lib/configuration/function/class-use/DataConsumer.html @@ -0,0 +1,96 @@ + + + + +Uses of Interface cc.carm.lib.configuration.function.DataConsumer (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.function.DataConsumer

+
+
Packages that use DataConsumer
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/class-use/DataFunction.html b/cc/carm/lib/configuration/function/class-use/DataFunction.html new file mode 100644 index 0000000..672f63b --- /dev/null +++ b/cc/carm/lib/configuration/function/class-use/DataFunction.html @@ -0,0 +1,319 @@ + + + + +Uses of Interface cc.carm.lib.configuration.function.DataFunction (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.function.DataFunction

+
+
Packages that use DataFunction
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/class-use/DataValidator.html b/cc/carm/lib/configuration/function/class-use/DataValidator.html new file mode 100644 index 0000000..73acfc9 --- /dev/null +++ b/cc/carm/lib/configuration/function/class-use/DataValidator.html @@ -0,0 +1,119 @@ + + + + +Uses of Interface cc.carm.lib.configuration.function.DataValidator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.function.DataValidator

+
+
Packages that use DataValidator
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/class-use/ValueComposer.html b/cc/carm/lib/configuration/function/class-use/ValueComposer.html new file mode 100644 index 0000000..71ffdc3 --- /dev/null +++ b/cc/carm/lib/configuration/function/class-use/ValueComposer.html @@ -0,0 +1,112 @@ + + + + +Uses of Interface cc.carm.lib.configuration.function.ValueComposer (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.function.ValueComposer

+
+
Packages that use ValueComposer
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/class-use/ValueHandler.html b/cc/carm/lib/configuration/function/class-use/ValueHandler.html new file mode 100644 index 0000000..7a32a2b --- /dev/null +++ b/cc/carm/lib/configuration/function/class-use/ValueHandler.html @@ -0,0 +1,343 @@ + + + + +Uses of Interface cc.carm.lib.configuration.function.ValueHandler (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.function.ValueHandler

+
+
Packages that use ValueHandler
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/class-use/ValueValidator.html b/cc/carm/lib/configuration/function/class-use/ValueValidator.html new file mode 100644 index 0000000..5ea8fa4 --- /dev/null +++ b/cc/carm/lib/configuration/function/class-use/ValueValidator.html @@ -0,0 +1,244 @@ + + + + +Uses of Interface cc.carm.lib.configuration.function.ValueValidator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.function.ValueValidator

+
+
Packages that use ValueValidator
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/package-summary.html b/cc/carm/lib/configuration/function/package-summary.html new file mode 100644 index 0000000..e5fad44 --- /dev/null +++ b/cc/carm/lib/configuration/function/package-summary.html @@ -0,0 +1,129 @@ + + + + +cc.carm.lib.configuration.function (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.function

+
+
+
package cc.carm.lib.configuration.function
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/package-tree.html b/cc/carm/lib/configuration/function/package-tree.html new file mode 100644 index 0000000..e1f33f7 --- /dev/null +++ b/cc/carm/lib/configuration/function/package-tree.html @@ -0,0 +1,82 @@ + + + + +cc.carm.lib.configuration.function Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.function

+
+Package Hierarchies: + +
+

Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/function/package-use.html b/cc/carm/lib/configuration/function/package-use.html new file mode 100644 index 0000000..7539142 --- /dev/null +++ b/cc/carm/lib/configuration/function/package-use.html @@ -0,0 +1,251 @@ + + + + +Uses of Package cc.carm.lib.configuration.function (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.function

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/package-summary.html b/cc/carm/lib/configuration/package-summary.html new file mode 100644 index 0000000..24f7380 --- /dev/null +++ b/cc/carm/lib/configuration/package-summary.html @@ -0,0 +1,120 @@ + + + + +cc.carm.lib.configuration (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration

+
+
+
package cc.carm.lib.configuration
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/package-tree.html b/cc/carm/lib/configuration/package-tree.html new file mode 100644 index 0000000..293726d --- /dev/null +++ b/cc/carm/lib/configuration/package-tree.html @@ -0,0 +1,72 @@ + + + + +cc.carm.lib.configuration Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration

+
+Package Hierarchies: + +
+

Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/package-use.html b/cc/carm/lib/configuration/package-use.html new file mode 100644 index 0000000..5a171a4 --- /dev/null +++ b/cc/carm/lib/configuration/package-use.html @@ -0,0 +1,103 @@ + + + + +Uses of Package cc.carm.lib.configuration (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration

+
+
Packages that use cc.carm.lib.configuration
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/ConfigurationFactory.html b/cc/carm/lib/configuration/source/ConfigurationFactory.html new file mode 100644 index 0000000..c1f1a79 --- /dev/null +++ b/cc/carm/lib/configuration/source/ConfigurationFactory.html @@ -0,0 +1,601 @@ + + + + +ConfigurationFactory (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigurationFactory<SOURCE extends ConfigureSource<?,?,SOURCE>,HOLDER extends ConfigurationHolder<SOURCE>,SELF>

+
+
java.lang.Object +
cc.carm.lib.configuration.source.ConfigurationFactory<SOURCE,HOLDER,SELF>
+
+
+
+
Type Parameters:
+
SOURCE - The ConfigureSource type
+
HOLDER - The ConfigurationHolder type.
+
SELF - Self builder, for further implement support.
+
+
+
public abstract class ConfigurationFactory<SOURCE extends ConfigureSource<?,?,SOURCE>,HOLDER extends ConfigurationHolder<SOURCE>,SELF> +extends Object
+
ConfigurationFactory, used to create configuration holder.
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/ConfigurationHolder.html b/cc/carm/lib/configuration/source/ConfigurationHolder.html new file mode 100644 index 0000000..c6d918f --- /dev/null +++ b/cc/carm/lib/configuration/source/ConfigurationHolder.html @@ -0,0 +1,507 @@ + + + + +ConfigurationHolder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigurationHolder<SOURCE extends ConfigureSource<?,?,SOURCE>>

+
+
java.lang.Object +
cc.carm.lib.configuration.source.ConfigurationHolder<SOURCE>
+
+
+
+
public abstract class ConfigurationHolder<SOURCE extends ConfigureSource<?,?,SOURCE>> +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/class-use/ConfigurationFactory.html b/cc/carm/lib/configuration/source/class-use/ConfigurationFactory.html new file mode 100644 index 0000000..6b00767 --- /dev/null +++ b/cc/carm/lib/configuration/source/class-use/ConfigurationFactory.html @@ -0,0 +1,62 @@ + + + + +Uses of Class cc.carm.lib.configuration.source.ConfigurationFactory (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.source.ConfigurationFactory

+
+No usage of cc.carm.lib.configuration.source.ConfigurationFactory
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/class-use/ConfigurationHolder.html b/cc/carm/lib/configuration/source/class-use/ConfigurationHolder.html new file mode 100644 index 0000000..7a2006e --- /dev/null +++ b/cc/carm/lib/configuration/source/class-use/ConfigurationHolder.html @@ -0,0 +1,410 @@ + + + + +Uses of Class cc.carm.lib.configuration.source.ConfigurationHolder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.source.ConfigurationHolder

+
+
Packages that use ConfigurationHolder
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/loader/ConfigInitializeHandler.html b/cc/carm/lib/configuration/source/loader/ConfigInitializeHandler.html new file mode 100644 index 0000000..0da2007 --- /dev/null +++ b/cc/carm/lib/configuration/source/loader/ConfigInitializeHandler.html @@ -0,0 +1,192 @@ + + + + +ConfigInitializeHandler (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ConfigInitializeHandler<T,V>

+
+
+
+
Functional Interface:
+
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
+
+
+
@FunctionalInterface +public interface ConfigInitializeHandler<T,V>
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/loader/ConfigurationInitializer.html b/cc/carm/lib/configuration/source/loader/ConfigurationInitializer.html new file mode 100644 index 0000000..62792a1 --- /dev/null +++ b/cc/carm/lib/configuration/source/loader/ConfigurationInitializer.html @@ -0,0 +1,510 @@ + + + + +ConfigurationInitializer (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigurationInitializer

+
+
java.lang.Object +
cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
+
+
+
public class ConfigurationInitializer +extends Object
+
Configuration initializer, + used to initialize ConfigValues from Configuration classes.
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/loader/PathGenerator.html b/cc/carm/lib/configuration/source/loader/PathGenerator.html new file mode 100644 index 0000000..6ca9dfb --- /dev/null +++ b/cc/carm/lib/configuration/source/loader/PathGenerator.html @@ -0,0 +1,353 @@ + + + + +PathGenerator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class PathGenerator

+
+
java.lang.Object +
cc.carm.lib.configuration.source.loader.PathGenerator
+
+
+
+
public class PathGenerator +extends Object
+
Path generator for configuration. +

+ Path generator is a utility class that helps to generate the path of the configuration. + It can be used to generate the path of the field or class.

+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      of

      +
      public static PathGenerator of()
      +
      +
    • +
    • +
      +

      of

      +
      public static PathGenerator of(UnaryOperator<String> pathConverter)
      +
      +
    • +
    • +
      +

      getPathConverter

      +
      @NotNull +public @NotNull UnaryOperator<String> getPathConverter()
      +
      +
    • +
    • +
      +

      setPathConverter

      +
      public void setPathConverter(UnaryOperator<String> pathConverter)
      +
      +
    • +
    • +
      +

      covertPath

      +
      public String covertPath(String name)
      +
      +
    • +
    • +
      +

      getFieldPath

      +
      @Nullable +public @Nullable String getFieldPath(@NotNull + @NotNull ConfigurationHolder<?> holder, + @Nullable + @Nullable String parentPath, + @NotNull + @NotNull Field field)
      +
      +
    • +
    • +
      +

      getClassPath

      +
      @Nullable +public @Nullable String getClassPath(@NotNull + @NotNull ConfigurationHolder<?> holder, + @Nullable + @Nullable String parentPath, + @NotNull + @NotNull Class<?> clazz, + @Nullable + @Nullable Field clazzField)
      +
      +
    • +
    • +
      +

      select

      +
      protected String select(String path, + String defaultValue)
      +
      +
    • +
    • +
      +

      link

      +
      @Nullable +protected @Nullable String link(@NotNull + @NotNull ConfigurationHolder<?> holder, + @Nullable + @Nullable String parent, + boolean root, + @Nullable + @Nullable String path)
      +
      +
    • +
    • +
      +

      isBlank

      +
      public static boolean isBlank(String path)
      +
      +
    • +
    • +
      +

      pathSeparator

      +
      public static char pathSeparator(ConfigurationHolder<?> holder)
      +
      +
    • +
    • +
      +

      covertPathName

      +
      public static String covertPathName(String name)
      +
      Get the configuration name of the specified element. + Use the naming convention of all lowercase and "-" links. +

      + e.g. "SOME_NAME" will be "some-name"

      +
      +
      Parameters:
      +
      name - source name
      +
      Returns:
      +
      the final path
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/loader/class-use/ConfigInitializeHandler.html b/cc/carm/lib/configuration/source/loader/class-use/ConfigInitializeHandler.html new file mode 100644 index 0000000..0e7c5d2 --- /dev/null +++ b/cc/carm/lib/configuration/source/loader/class-use/ConfigInitializeHandler.html @@ -0,0 +1,147 @@ + + + + +Uses of Interface cc.carm.lib.configuration.source.loader.ConfigInitializeHandler (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.source.loader.ConfigInitializeHandler

+
+
Packages that use ConfigInitializeHandler
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/loader/class-use/ConfigurationInitializer.html b/cc/carm/lib/configuration/source/loader/class-use/ConfigurationInitializer.html new file mode 100644 index 0000000..64a0f8c --- /dev/null +++ b/cc/carm/lib/configuration/source/loader/class-use/ConfigurationInitializer.html @@ -0,0 +1,136 @@ + + + + +Uses of Class cc.carm.lib.configuration.source.loader.ConfigurationInitializer (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.source.loader.ConfigurationInitializer

+
+
Packages that use ConfigurationInitializer
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/loader/class-use/PathGenerator.html b/cc/carm/lib/configuration/source/loader/class-use/PathGenerator.html new file mode 100644 index 0000000..09c7d24 --- /dev/null +++ b/cc/carm/lib/configuration/source/loader/class-use/PathGenerator.html @@ -0,0 +1,140 @@ + + + + +Uses of Class cc.carm.lib.configuration.source.loader.PathGenerator (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.source.loader.PathGenerator

+
+
Packages that use PathGenerator
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/loader/package-summary.html b/cc/carm/lib/configuration/source/loader/package-summary.html new file mode 100644 index 0000000..55a1846 --- /dev/null +++ b/cc/carm/lib/configuration/source/loader/package-summary.html @@ -0,0 +1,124 @@ + + + + +cc.carm.lib.configuration.source.loader (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.source.loader

+
+
+
package cc.carm.lib.configuration.source.loader
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/loader/package-tree.html b/cc/carm/lib/configuration/source/loader/package-tree.html new file mode 100644 index 0000000..1569ee0 --- /dev/null +++ b/cc/carm/lib/configuration/source/loader/package-tree.html @@ -0,0 +1,83 @@ + + + + +cc.carm.lib.configuration.source.loader Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.source.loader

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/loader/package-use.html b/cc/carm/lib/configuration/source/loader/package-use.html new file mode 100644 index 0000000..27cf606 --- /dev/null +++ b/cc/carm/lib/configuration/source/loader/package-use.html @@ -0,0 +1,108 @@ + + + + +Uses of Package cc.carm.lib.configuration.source.loader (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.source.loader

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/meta/ConfigurationMetaHolder.html b/cc/carm/lib/configuration/source/meta/ConfigurationMetaHolder.html new file mode 100644 index 0000000..70bd953 --- /dev/null +++ b/cc/carm/lib/configuration/source/meta/ConfigurationMetaHolder.html @@ -0,0 +1,380 @@ + + + + +ConfigurationMetaHolder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigurationMetaHolder

+
+
java.lang.Object +
cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
+
+
+
public class ConfigurationMetaHolder +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ConfigurationMetaHolder

      +
      public ConfigurationMetaHolder()
      +
      +
    • +
    • +
      +

      ConfigurationMetaHolder

      +
      public ConfigurationMetaHolder(@NotNull + @NotNull Map<ConfigurationMetadata<?>,Object> values)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      @NotNull +public @NotNull Map<ConfigurationMetadata<?>,Object> values()
      +
      +
    • +
    • +
      +

      get

      +
      @Contract("_,!null -> !null") +@Nullable +public <V> V get(@NotNull + @NotNull ConfigurationMetadata<V> type, + @Nullable + V defaultValue)
      +
      Get the value of option.
      +
      +
      Type Parameters:
      +
      V - Value type
      +
      Parameters:
      +
      type - ConfigurationMetadata
      +
      defaultValue - Default value if the value of option is not set.
      +
      Returns:
      +
      Value of option
      +
      +
      +
    • +
    • +
      +

      get

      +
      @Contract("_,!null -> !null") +@Nullable +public <V> V get(@NotNull + @NotNull ConfigurationMetadata<V> type, + Supplier<@Nullable V> defaultValue)
      +
      Get the value of option.
      +
      +
      Type Parameters:
      +
      V - Value type
      +
      Parameters:
      +
      type - ConfigurationMetadata
      +
      defaultValue - Default value if the value of option is not set.
      +
      Returns:
      +
      Value of option
      +
      +
      +
    • +
    • +
      +

      get

      +
      @Nullable +public <V> V get(@NotNull + @NotNull ConfigurationMetadata<V> type)
      +
      Get the value of option.
      +
      +
      Type Parameters:
      +
      V - Value type
      +
      Parameters:
      +
      type - ConfigurationMetadata
      +
      Returns:
      +
      Value of option
      +
      +
      +
    • +
    • +
      +

      contains

      +
      public boolean contains(@NotNull + @NotNull ConfigurationMetadata<?> type)
      +
      +
    • +
    • +
      +

      set

      +
      @Nullable +public <V> V set(@NotNull + @NotNull ConfigurationMetadata<V> type, + @Nullable + V value)
      +
      Set the value of meta, if the value is null, the meta will be removed. +
      Will only be changed in current holder.
      +
      +
      Type Parameters:
      +
      V - Value type
      +
      Parameters:
      +
      type - ConfigurationMetadata
      +
      value - Value of meta
      +
      Returns:
      +
      Previous value of meta
      +
      +
      +
    • +
    • +
      +

      setIfAbsent

      +
      public <V> void setIfAbsent(@NotNull + @NotNull ConfigurationMetadata<V> type, + @Nullable + V value)
      +
      Set the value of meta, if the value is null, the meta will not be changed. +
      Will only be changed in current holder.
      +
      +
      Type Parameters:
      +
      V - Value type
      +
      Parameters:
      +
      type - ConfigurationMetadata
      +
      value - Value of meta
      +
      +
      +
    • +
    • +
      +

      setIfPresent

      +
      @Nullable +public <V> V setIfPresent(@NotNull + @NotNull ConfigurationMetadata<V> type, + @Nullable + V value)
      +
      Set the value of meta, if the value is null, the meta will not be changed. +
      Will only be changed in current holder.
      +
      +
      Type Parameters:
      +
      V - Value type
      +
      Parameters:
      +
      type - ConfigurationMetadata
      +
      value - Value of meta
      +
      Returns:
      +
      Previous value of meta
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/meta/ConfigurationMetadata.html b/cc/carm/lib/configuration/source/meta/ConfigurationMetadata.html new file mode 100644 index 0000000..7b9549c --- /dev/null +++ b/cc/carm/lib/configuration/source/meta/ConfigurationMetadata.html @@ -0,0 +1,292 @@ + + + + +ConfigurationMetadata (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigurationMetadata<T>

+
+
java.lang.Object +
cc.carm.lib.configuration.source.meta.ConfigurationMetadata<T>
+
+
+
+
public class ConfigurationMetadata<T> +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      defaultsSupplier

      +
      protected Supplier<@Nullable T> defaultsSupplier
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ConfigurationMetadata

      +
      public ConfigurationMetadata(@NotNull + @NotNull Supplier<@Nullable T> defaults)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      of

      +
      public static <T> ConfigurationMetadata<T> of()
      +
      +
    • +
    • +
      +

      of

      +
      public static <T> ConfigurationMetadata<T> of(T defaults)
      +
      +
    • +
    • +
      +

      of

      +
      public static <T> ConfigurationMetadata<T> of(@NotNull + @NotNull Supplier<@Nullable T> defaults)
      +
      +
    • +
    • +
      +

      isDefault

      +
      public boolean isDefault(@NotNull + T value)
      +
      +
    • +
    • +
      +

      hasDefaults

      +
      public boolean hasDefaults()
      +
      +
    • +
    • +
      +

      defaultOrSupply

      +
      public T defaultOrSupply(@Nullable + T suppliedValue)
      +
      +
    • +
    • +
      +

      defaultOrSupply

      +
      public T defaultOrSupply(Supplier<@Nullable T> suppliedValue)
      +
      +
    • +
    • +
      +

      defaults

      +
      @Nullable +public T defaults()
      +
      +
    • +
    • +
      +

      setDefaults

      +
      public void setDefaults(Supplier<T> defaultFunction)
      +
      +
    • +
    • +
      +

      setDefaults

      +
      public void setDefaults(T value)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/meta/StandardMeta.html b/cc/carm/lib/configuration/source/meta/StandardMeta.html new file mode 100644 index 0000000..e11ad0d --- /dev/null +++ b/cc/carm/lib/configuration/source/meta/StandardMeta.html @@ -0,0 +1,142 @@ + + + + +StandardMeta (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface StandardMeta

+
+
+
+
public interface StandardMeta
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/meta/class-use/ConfigurationMetaHolder.html b/cc/carm/lib/configuration/source/meta/class-use/ConfigurationMetaHolder.html new file mode 100644 index 0000000..03a4b37 --- /dev/null +++ b/cc/carm/lib/configuration/source/meta/class-use/ConfigurationMetaHolder.html @@ -0,0 +1,185 @@ + + + + +Uses of Class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder

+
+
Packages that use ConfigurationMetaHolder
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/meta/class-use/ConfigurationMetadata.html b/cc/carm/lib/configuration/source/meta/class-use/ConfigurationMetadata.html new file mode 100644 index 0000000..96e3173 --- /dev/null +++ b/cc/carm/lib/configuration/source/meta/class-use/ConfigurationMetadata.html @@ -0,0 +1,251 @@ + + + + +Uses of Class cc.carm.lib.configuration.source.meta.ConfigurationMetadata (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.source.meta.ConfigurationMetadata

+
+
Packages that use ConfigurationMetadata
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/meta/class-use/StandardMeta.html b/cc/carm/lib/configuration/source/meta/class-use/StandardMeta.html new file mode 100644 index 0000000..d7cb8d8 --- /dev/null +++ b/cc/carm/lib/configuration/source/meta/class-use/StandardMeta.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface cc.carm.lib.configuration.source.meta.StandardMeta (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.source.meta.StandardMeta

+
+No usage of cc.carm.lib.configuration.source.meta.StandardMeta
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/meta/package-summary.html b/cc/carm/lib/configuration/source/meta/package-summary.html new file mode 100644 index 0000000..09a07fa --- /dev/null +++ b/cc/carm/lib/configuration/source/meta/package-summary.html @@ -0,0 +1,119 @@ + + + + +cc.carm.lib.configuration.source.meta (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.source.meta

+
+
+
package cc.carm.lib.configuration.source.meta
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/meta/package-tree.html b/cc/carm/lib/configuration/source/meta/package-tree.html new file mode 100644 index 0000000..88a94d4 --- /dev/null +++ b/cc/carm/lib/configuration/source/meta/package-tree.html @@ -0,0 +1,83 @@ + + + + +cc.carm.lib.configuration.source.meta Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.source.meta

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/meta/package-use.html b/cc/carm/lib/configuration/source/meta/package-use.html new file mode 100644 index 0000000..db817b9 --- /dev/null +++ b/cc/carm/lib/configuration/source/meta/package-use.html @@ -0,0 +1,140 @@ + + + + +Uses of Package cc.carm.lib.configuration.source.meta (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.source.meta

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/option/ConfigurationOption.html b/cc/carm/lib/configuration/source/option/ConfigurationOption.html new file mode 100644 index 0000000..aafdfaf --- /dev/null +++ b/cc/carm/lib/configuration/source/option/ConfigurationOption.html @@ -0,0 +1,226 @@ + + + + +ConfigurationOption (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigurationOption<V>

+
+
java.lang.Object +
cc.carm.lib.configuration.source.option.ConfigurationOption<V>
+
+
+
+
public class ConfigurationOption<V> +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ConfigurationOption

      +
      public ConfigurationOption(@NotNull + V defaultValue)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      of

      +
      public static <T> ConfigurationOption<T> of(@NotNull + T defaultValue)
      +
      +
    • +
    • +
      +

      of

      +
      public static <T> ConfigurationOption<T> of(@NotNull + @NotNull Supplier<T> defaultValue)
      +
      +
    • +
    • +
      +

      defaults

      +
      @NotNull +public V defaults()
      +
      +
    • +
    • +
      +

      defaults

      +
      public void defaults(@NotNull + V defaultValue)
      +
      Set the default value of option.
      +
      +
      Parameters:
      +
      defaultValue - Default value
      +
      +
      +
    • +
    • +
      +

      isDefault

      +
      public boolean isDefault(@NotNull + V value)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/option/ConfigurationOptionHolder.html b/cc/carm/lib/configuration/source/option/ConfigurationOptionHolder.html new file mode 100644 index 0000000..b28c888 --- /dev/null +++ b/cc/carm/lib/configuration/source/option/ConfigurationOptionHolder.html @@ -0,0 +1,296 @@ + + + + +ConfigurationOptionHolder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigurationOptionHolder

+
+
java.lang.Object +
cc.carm.lib.configuration.source.option.ConfigurationOptionHolder
+
+
+
+
public class ConfigurationOptionHolder +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/option/StandardOptions.html b/cc/carm/lib/configuration/source/option/StandardOptions.html new file mode 100644 index 0000000..1fe729d --- /dev/null +++ b/cc/carm/lib/configuration/source/option/StandardOptions.html @@ -0,0 +1,184 @@ + + + + +StandardOptions (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface StandardOptions

+
+
+
+
public interface StandardOptions
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/option/class-use/ConfigurationOption.html b/cc/carm/lib/configuration/source/option/class-use/ConfigurationOption.html new file mode 100644 index 0000000..3804145 --- /dev/null +++ b/cc/carm/lib/configuration/source/option/class-use/ConfigurationOption.html @@ -0,0 +1,203 @@ + + + + +Uses of Class cc.carm.lib.configuration.source.option.ConfigurationOption (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.source.option.ConfigurationOption

+
+
Packages that use ConfigurationOption
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/option/class-use/ConfigurationOptionHolder.html b/cc/carm/lib/configuration/source/option/class-use/ConfigurationOptionHolder.html new file mode 100644 index 0000000..d2f634d --- /dev/null +++ b/cc/carm/lib/configuration/source/option/class-use/ConfigurationOptionHolder.html @@ -0,0 +1,152 @@ + + + + +Uses of Class cc.carm.lib.configuration.source.option.ConfigurationOptionHolder (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.source.option.ConfigurationOptionHolder

+
+
Packages that use ConfigurationOptionHolder
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/option/class-use/StandardOptions.html b/cc/carm/lib/configuration/source/option/class-use/StandardOptions.html new file mode 100644 index 0000000..bfbbc92 --- /dev/null +++ b/cc/carm/lib/configuration/source/option/class-use/StandardOptions.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface cc.carm.lib.configuration.source.option.StandardOptions (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.source.option.StandardOptions

+
+No usage of cc.carm.lib.configuration.source.option.StandardOptions
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/option/package-summary.html b/cc/carm/lib/configuration/source/option/package-summary.html new file mode 100644 index 0000000..f3e5282 --- /dev/null +++ b/cc/carm/lib/configuration/source/option/package-summary.html @@ -0,0 +1,119 @@ + + + + +cc.carm.lib.configuration.source.option (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.source.option

+
+
+
package cc.carm.lib.configuration.source.option
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/option/package-tree.html b/cc/carm/lib/configuration/source/option/package-tree.html new file mode 100644 index 0000000..1440ee3 --- /dev/null +++ b/cc/carm/lib/configuration/source/option/package-tree.html @@ -0,0 +1,83 @@ + + + + +cc.carm.lib.configuration.source.option Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.source.option

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/option/package-use.html b/cc/carm/lib/configuration/source/option/package-use.html new file mode 100644 index 0000000..de24805 --- /dev/null +++ b/cc/carm/lib/configuration/source/option/package-use.html @@ -0,0 +1,101 @@ + + + + +Uses of Package cc.carm.lib.configuration.source.option (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.source.option

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/package-summary.html b/cc/carm/lib/configuration/source/package-summary.html new file mode 100644 index 0000000..94e8270 --- /dev/null +++ b/cc/carm/lib/configuration/source/package-summary.html @@ -0,0 +1,129 @@ + + + + +cc.carm.lib.configuration.source (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.source

+
+
+
package cc.carm.lib.configuration.source
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/package-tree.html b/cc/carm/lib/configuration/source/package-tree.html new file mode 100644 index 0000000..ee6e859 --- /dev/null +++ b/cc/carm/lib/configuration/source/package-tree.html @@ -0,0 +1,77 @@ + + + + +cc.carm.lib.configuration.source Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.source

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/package-use.html b/cc/carm/lib/configuration/source/package-use.html new file mode 100644 index 0000000..f33a78a --- /dev/null +++ b/cc/carm/lib/configuration/source/package-use.html @@ -0,0 +1,162 @@ + + + + +Uses of Package cc.carm.lib.configuration.source (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.source

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/section/ConfigureSection.html b/cc/carm/lib/configuration/source/section/ConfigureSection.html new file mode 100644 index 0000000..a6b4e96 --- /dev/null +++ b/cc/carm/lib/configuration/source/section/ConfigureSection.html @@ -0,0 +1,1837 @@ + + + + +ConfigureSection (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ConfigureSection

+
+
+
+
All Known Implementing Classes:
+
ConfigureSource
+
+
+
public interface ConfigureSection
+
Represents a section of a configuration.
+
+
Since:
+
4.0.0
+
Author:
+
Carm
+
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      parent

      +
      @Contract(pure=true) +@Nullable +@Nullable ConfigureSection parent()
      +
      Gets the parent section of this section. +

      + For root sections, this will return null.

      +
      +
      Returns:
      +
      Parent section, or null if this is a root section.
      +
      +
      +
    • +
    • +
      +

      path

      +
      @NotNull +@NotNull String path()
      +
      Get the current section's path from parent() of this section.
      +
      +
      Returns:
      +
      The current path of this section, if isRoot(), return empty string.
      +
      +
      +
    • +
    • +
      +

      fullPath

      +
      @NotNull +default @NotNull String fullPath()
      +
      Get the full path of this section.
      +
      +
      Returns:
      +
      The full path of this section, if isRoot(), return empty string.
      +
      +
      +
    • +
    • +
      +

      pathSeparator

      +
      default char pathSeparator()
      +
      Get the path separator for the section.
      +
      +
      Returns:
      +
      The path separator
      +
      +
      +
    • +
    • +
      +

      isRoot

      +
      @Contract(pure=true) +default boolean isRoot()
      +
      Gets if this section is a root section.
      +
      +
      Returns:
      +
      True if this section is a root section, false otherwise.
      +
      +
      +
    • +
    • +
      +

      isEmpty

      +
      default boolean isEmpty()
      +
      Gets if this section is empty.
      +
      +
      Returns:
      +
      True if this section is empty, false otherwise.
      +
      +
      +
    • +
    • +
      +

      size

      +
      default int size(boolean deep)
      +
      Gets the number of keys in this section.
      +
      +
      Returns:
      +
      Number of keys in this section.
      +
      +
      +
    • +
    • +
      +

      getKeys

      +
      @NotNull +default @NotNull @UnmodifiableView Set<String> getKeys(boolean deep)
      +
      Gets a set containing all keys in this section. +

      + If deep is set to true, then this will contain all the keys within any + child ConfigureSections (and their children paths). +

      + If deep is set to false, then this will contain only the keys of any + direct children, and not their own children.

      +
      +
      Parameters:
      +
      deep - Whether to get a deep list.
      +
      Returns:
      +
      Set of keys contained within this Section.
      +
      +
      +
    • +
    • +
      +

      keys

      +
      @NotNull +default @NotNull @UnmodifiableView Set<String> keys()
      +
      Gets a set containing all primary keys in this section.
      +
      +
      Returns:
      +
      Set of keys contained within this Section.
      +
      +
      +
    • +
    • +
      +

      getValues

      +
      @NotNull +@NotNull @UnmodifiableView Map<String,Object> getValues(boolean deep)
      +
      Gets a set containing all values in this section. +

      + If deep is set to true, then this will contain all the keys within any + child ConfigureSections (and their children paths). +

      + If deep is set to false, then this will contain only the keys of any + direct children, and not their own children.

      +
      +
      Parameters:
      +
      deep - Whether to get a deep list.
      +
      Returns:
      +
      Map of data values contained within this Section.
      +
      +
      +
    • +
    • +
      +

      values

      +
      @NotNull +default @NotNull @UnmodifiableView Map<String,Object> values()
      +
      Gets a set containing all key-values in this section.
      +
      +
      Returns:
      +
      Map of data values contained within this Section.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      asMap

      +
      @NotNull +@NotNull @UnmodifiableView Map<String,Object> asMap()
      +
      Get this section as a map. +

      + In this map, child ConfigureSections will also be represented as Maps.

      +
      +
      Returns:
      +
      Map of data values contained within this Section.
      +
      +
      +
    • +
    • +
      +

      stream

      +
      default Stream<Map.Entry<String,Object>> stream()
      +
      Create a stream of all values in this section.
      +
      +
      Returns:
      +
      Stream of all values in this section.
      +
      +
      +
    • +
    • +
      +

      forEach

      +
      default void forEach(@NotNull + @NotNull BiConsumer<String,Object> action)
      +
      Iterates over all key-values in this section (include child sections)
      +
      +
      Parameters:
      +
      action - The action to apply to each key.
      +
      +
      +
    • +
    • +
      +

      set

      +
      void set(@NotNull + @NotNull String path, + @Nullable + @Nullable Object value)
      +
      Sets the value at the given path. +

      + Null values will be kept, if you want to remove a value use remove(String) + Path separator depends on holder's + StandardOptions.PATH_SEPARATOR

      +
      +
      Parameters:
      +
      path - The path to set the value at.
      +
      value - The value to set.
      +
      +
      +
    • +
    • +
      +

      remove

      +
      void remove(@NotNull + @NotNull String path)
      +
      Removes the value at the given path. +

      + Path separator depends on holder's + StandardOptions.PATH_SEPARATOR

      +
      +
      Parameters:
      +
      path - The path to remove the value at.
      +
      +
      +
    • +
    • +
      +

      contains

      +
      default boolean contains(@NotNull + @NotNull String path)
      +
      Check if the given path is present. +

      + Path separator depends on holder's + StandardOptions.PATH_SEPARATOR

      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present, false otherwise.
      +
      +
      +
    • +
    • +
      +

      containsValue

      +
      default boolean containsValue(@NotNull + @NotNull String path)
      +
      Check if the value of given path is present. +

      + Path separator depends on holder's + StandardOptions.PATH_SEPARATOR

      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present, false otherwise.
      +
      +
      +
    • +
    • +
      +

      isType

      +
      default <T> boolean isType(@NotNull + @NotNull String path, + @NotNull + @NotNull Class<T> typeClass)
      +
      Predicate the value of given path is specific type.
      +
      +
      Type Parameters:
      +
      T - The type to check.
      +
      Parameters:
      +
      path - The path to check.
      +
      typeClass - The type's class
      +
      Returns:
      +
      True if the value is present and is the correct type, false otherwise.
      +
      +
      +
    • +
    • +
      +

      isList

      +
      default boolean isList(@NotNull + @NotNull String path)
      +
      Predicate the value of given path is a List.
      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present and is a list, false otherwise.
      +
      +
      +
    • +
    • +
      +

      getList

      +
      @Nullable +default @Nullable List<?> getList(@NotNull + @NotNull String path)
      +
      Get the value as a List from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the List.
      +
      Returns:
      +
      The list if the path exists and is a list, otherwise null.
      +
      +
      +
    • +
    • +
      +

      isSection

      +
      default boolean isSection(@NotNull + @NotNull String path)
      +
      Predicate the value of given path is a ConfigureSection.
      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present and is a section, false otherwise.
      +
      +
      +
    • +
    • +
      +

      getSection

      +
      @Nullable +default @Nullable ConfigureSection getSection(@NotNull + @NotNull String path)
      +
      Get the value as a ConfigureSection from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the section.
      +
      Returns:
      +
      The section if the path exists and is a section, otherwise null.
      +
      +
      +
    • +
    • +
      +

      createSection

      +
      @NotNull +@NotNull ConfigureSection createSection(@NotNull + @NotNull String path, + @NotNull + @NotNull Map<?,?> data)
      +
      Creates a new ConfigureSection with specified values. +

      The parent() of the new section will be this section. +

      This section will not be saved until set(String, Object) is called. +

      If you want to create and use a section and set it to this section, use computeSection(String).

      +
      +
      Parameters:
      +
      data - The data to be used to create section.
      +
      Returns:
      +
      Newly created section
      +
      +
      +
    • +
    • +
      +

      createSection

      +
      @NotNull +default @NotNull ConfigureSection createSection(@NotNull + @NotNull String path, + @NotNull + @NotNull Consumer<Map<String,Object>> data)
      +
      Creates a new ConfigureSection with specified values. +

      The parent() of the new section will be this section.

      +
      +
      Parameters:
      +
      data - The data to be used to create section.
      +
      Returns:
      +
      Newly created section
      +
      +
      +
    • +
    • +
      +

      createSection

      +
      @NotNull +default @NotNull ConfigureSection createSection(@NotNull + @NotNull String path, + @NotNull + @NotNull Supplier<Map<String,Object>> data)
      +
      Creates a new ConfigureSection with specified values. +

      The parent() of the new section will be this section.

      +
      +
      Parameters:
      +
      data - The data to be used to create section.
      +
      Returns:
      +
      Newly created section
      +
      +
      +
    • +
    • +
      +

      createSection

      +
      @NotNull +default @NotNull ConfigureSection createSection(@NotNull + @NotNull String path)
      +
      Creates a new empty ConfigureSection. +

      The parent() of the new section will be this section.

      +
      +
      Returns:
      +
      Newly created section
      +
      +
      +
    • +
    • +
      +

      computeSection

      +
      @NotNull +default @NotNull ConfigureSection computeSection(@NotNull + @NotNull String path)
      +
      Get or create a section at the given path. +

      + Any value previously set at this path will be replaced if it is not a section + or will be returned if it is an exists ConfigureSection.

      +
      +
      Parameters:
      +
      path - The path to get the section from.
      +
      Returns:
      +
      The section at the path, or a new section if it does not exist.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      computeSection

      +
      @NotNull +default @NotNull ConfigureSection computeSection(@NotNull + @NotNull String path, + @NotNull + @NotNull Map<?,?> data)
      +
      Get or create a section at the given path. +

      + Any value previously set at this path will be replaced if it is not a section + or will be returned if it is an exists ConfigureSection.

      +
      +
      Parameters:
      +
      path - The path to get the section from.
      +
      Returns:
      +
      The section at the path, or a new section if it does not exist.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      computeSection

      +
      @NotNull +default @NotNull ConfigureSection computeSection(@NotNull + @NotNull String path, + @NotNull + @NotNull Consumer<Map<String,Object>> data)
      +
      Get or create a section at the given path. +

      + Any value previously set at this path will be replaced if it is not a section + or will be returned if it is an exists ConfigureSection.

      +
      +
      Parameters:
      +
      path - The path to get the section from.
      +
      Returns:
      +
      The section at the path, or a new section if it does not exist.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      computeSection

      +
      @NotNull +default @NotNull ConfigureSection computeSection(@NotNull + @NotNull String path, + @NotNull + @NotNull Supplier<Map<String,Object>> data)
      +
      Get or create a section at the given path. +

      + Any value previously set at this path will be replaced if it is not a section + or will be returned if it is an exists ConfigureSection.

      +
      +
      Parameters:
      +
      path - The path to get the section from.
      +
      Returns:
      +
      The section at the path, or a new section if it does not exist.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      get

      +
      @Nullable +@Nullable Object get(@NotNull + @NotNull String path)
      +
      Get the origin value of the path.
      +
      +
      Parameters:
      +
      path - The path to get the value from.
      +
      Returns:
      +
      The value at the path, or null if not found.
      +
      +
      +
    • +
    • +
      +

      get

      +
      @Nullable +default <T> T get(@NotNull + @NotNull String path, + @NotNull + @NotNull Class<T> type)
      +
      Get the value of the path for specific type, + if the path does not exist, return null.
      +
      +
      Type Parameters:
      +
      T - The type of the value
      +
      Parameters:
      +
      path - The path to get the value from.
      +
      type - The type class of the value
      +
      Returns:
      +
      The value at the path, or the default value if not found.
      +
      +
      +
    • +
    • +
      +

      get

      +
      @Nullable +default <T> T get(@NotNull + @NotNull String path, + @NotNull + @NotNull DataFunction<@Nullable Object,T> parser)
      +
      Get the value of the path using a parser function, + if the path does not exist, return NULL.
      +
      +
      Type Parameters:
      +
      T - The type of the value
      +
      Parameters:
      +
      path - The path to get the value from.
      +
      parser - The function to parse the value
      +
      Returns:
      +
      The value at the path, or null if not found.
      +
      +
      +
    • +
    • +
      +

      get

      +
      @Contract("_,!null,_->!null") +@Nullable +default <T> T get(@NotNull + @NotNull String path, + @Nullable + T defaults, + @NotNull + @NotNull Class<T> clazz)
      +
      Get the value of the path for specific type, + if the path does not exist, return the default value.
      +
      +
      Type Parameters:
      +
      T - The type of the value
      +
      Parameters:
      +
      path - The path to get the value from.
      +
      defaults - The default value to return if the path does not exist.
      +
      clazz - The type class of the value
      +
      Returns:
      +
      The value at the path, or the default value if not found.
      +
      +
      +
    • +
    • +
      +

      get

      +
      @Contract("_,!null,_->!null") +@Nullable +default <T> T get(@NotNull + @NotNull String path, + @Nullable + T defaultValue, + @NotNull + @NotNull DataFunction<Object,T> parser)
      +
      Get the value of the path using a parser function, + if the path does not exist, return the default value.
      +
      +
      Type Parameters:
      +
      T - The type of the value
      +
      Parameters:
      +
      path - The path to get the value from.
      +
      defaultValue - The default value to return if the path does not exist.
      +
      parser - The function to parse the value
      +
      Returns:
      +
      The value at the path, or the default value if not found.
      +
      +
      +
    • +
    • +
      +

      isBoolean

      +
      default boolean isBoolean(@NotNull + @NotNull String path)
      +
      Predicate the value of given path is a Boolean.
      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present and is a boolean, false otherwise.
      +
      +
      +
    • +
    • +
      +

      getBoolean

      +
      default boolean getBoolean(@NotNull + @NotNull String path)
      +
      Get the value as a Boolean from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the boolean.
      +
      Returns:
      +
      The boolean if the path exists and is a boolean, otherwise false.
      +
      +
      +
    • +
    • +
      +

      getBoolean

      +
      @Contract("_, !null -> !null") +@Nullable +default @Nullable Boolean getBoolean(@NotNull + @NotNull String path, + @Nullable + @Nullable Boolean def)
      +
      Get the value as a Boolean from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the boolean.
      +
      def - The default value to return if the path does not exist.
      +
      Returns:
      +
      The boolean if the path exists and is a boolean, otherwise the default value.
      +
      +
      +
    • +
    • +
      +

      isByte

      +
      @Nullable +default @Nullable Boolean isByte(@NotNull + @NotNull String path)
      +
      Predicate the value of given path is a Byte.
      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present and is a byte, false otherwise.
      +
      +
      +
    • +
    • +
      +

      getByte

      +
      @Nullable +default @Nullable Byte getByte(@NotNull + @NotNull String path)
      +
      Get the value as a Byte from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the byte.
      +
      Returns:
      +
      The byte if the path exists and is a byte, otherwise 0.
      +
      +
      +
    • +
    • +
      +

      getByte

      +
      @Contract("_, !null -> !null") +@Nullable +default @Nullable Byte getByte(@NotNull + @NotNull String path, + @Nullable + @Nullable Byte def)
      +
      Get the value as a Byte from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the byte.
      +
      def - The default value to return if the path does not exist.
      +
      Returns:
      +
      The byte if the path exists and is a byte, otherwise the default value.
      +
      +
      +
    • +
    • +
      +

      isShort

      +
      default boolean isShort(@NotNull + @NotNull String path)
      +
      Predicate the value of given path is a Short.
      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present and is a short, false otherwise.
      +
      +
      +
    • +
    • +
      +

      getShort

      +
      @Nullable +default @Nullable Short getShort(@NotNull + @NotNull String path)
      +
      Get the value as a Short from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the short.
      +
      Returns:
      +
      The short if the path exists and is a short, otherwise 0.
      +
      +
      +
    • +
    • +
      +

      getShort

      +
      @Contract("_, !null -> !null") +@Nullable +default @Nullable Short getShort(@NotNull + @NotNull String path, + @Nullable + @Nullable Short def)
      +
      Get the value as a Short from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the short.
      +
      def - The default value to return if the path does not exist.
      +
      Returns:
      +
      The short if the path exists and is a short, otherwise the default value.
      +
      +
      +
    • +
    • +
      +

      isInt

      +
      default boolean isInt(@NotNull + @NotNull String path)
      +
      Predicate the value of given path is a Integer.
      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present and is an int, false otherwise.
      +
      +
      +
    • +
    • +
      +

      getInt

      +
      @Nullable +default @Nullable Integer getInt(@NotNull + @NotNull String path)
      +
      Get the value as a Integer from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the int.
      +
      Returns:
      +
      The int if the path exists and is an int, otherwise 0.
      +
      +
      +
    • +
    • +
      +

      getInt

      +
      @Contract("_, !null -> !null") +@Nullable +default @Nullable Integer getInt(@NotNull + @NotNull String path, + @Nullable + @Nullable Integer def)
      +
      Get the value as a Integer from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the int.
      +
      def - The default value to return if the path does not exist.
      +
      Returns:
      +
      The int if the path exists and is an int, otherwise the default value.
      +
      +
      +
    • +
    • +
      +

      isLong

      +
      default boolean isLong(@NotNull + @NotNull String path)
      +
      Predicate the value of given path is a Long.F
      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present and is a long, false otherwise.
      +
      +
      +
    • +
    • +
      +

      getLong

      +
      @Nullable +default @Nullable Long getLong(@NotNull + @NotNull String path)
      +
      Get the value as a Long from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the long.
      +
      Returns:
      +
      The long if the path exists and is a long, otherwise 0.
      +
      +
      +
    • +
    • +
      +

      getLong

      +
      @Contract("_, !null -> !null") +@Nullable +default @Nullable Long getLong(@NotNull + @NotNull String path, + @Nullable + @Nullable Long def)
      +
      Get the value as a Long from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the long.
      +
      def - The default value to return if the path does not exist.
      +
      Returns:
      +
      The long if the path exists and is a long, otherwise the default value.
      +
      +
      +
    • +
    • +
      +

      isFloat

      +
      default boolean isFloat(@NotNull + @NotNull String path)
      +
      Predicate the value of given path is a Float.
      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present and is a float, false otherwise.
      +
      +
      +
    • +
    • +
      +

      getFloat

      +
      @Nullable +default @Nullable Float getFloat(@NotNull + @NotNull String path)
      +
      Get the value as a Float from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the float.
      +
      Returns:
      +
      The float if the path exists and is a float, otherwise 0.
      +
      +
      +
    • +
    • +
      +

      getFloat

      +
      @Contract("_, !null -> !null") +@Nullable +default @Nullable Float getFloat(@NotNull + @NotNull String path, + @Nullable + @Nullable Float def)
      +
      Get the value as a Float from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the float.
      +
      def - The default value to return if the path does not exist.
      +
      Returns:
      +
      The float if the path exists and is a float, otherwise the default value.
      +
      +
      +
    • +
    • +
      +

      isDouble

      +
      default boolean isDouble(@NotNull + @NotNull String path)
      +
      Predicate the value of given path is a Double.
      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present and is a double, false otherwise.
      +
      +
      +
    • +
    • +
      +

      getDouble

      +
      @Nullable +default @Nullable Double getDouble(@NotNull + @NotNull String path)
      +
      Get the value as a Double from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the double.
      +
      Returns:
      +
      The double if the path exists and is a double, otherwise 0.
      +
      +
      +
    • +
    • +
      +

      getDouble

      +
      @Contract("_, !null -> !null") +@Nullable +default @Nullable Double getDouble(@NotNull + @NotNull String path, + @Nullable + @Nullable Double def)
      +
      Get the value as a Double from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the double.
      +
      def - The default value to return if the path does not exist.
      +
      Returns:
      +
      The double if the path exists and is a double, otherwise the default value.
      +
      +
      +
    • +
    • +
      +

      isChar

      +
      default boolean isChar(@NotNull + @NotNull String path)
      +
      Predicate the value of given path is a Character.
      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present and is a char, false otherwise.
      +
      +
      +
    • +
    • +
      +

      getChar

      +
      @Nullable +default @Nullable Character getChar(@NotNull + @NotNull String path)
      +
      Get the value as a Character from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the char.
      +
      Returns:
      +
      The char if the path exists and is a char, otherwise null.
      +
      +
      +
    • +
    • +
      +

      getChar

      +
      @Contract("_, !null -> !null") +@Nullable +default @Nullable Character getChar(@NotNull + @NotNull String path, + @Nullable + @Nullable Character def)
      +
      Get the value as a Character from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the char.
      +
      def - The default value to return if the path does not exist.
      +
      Returns:
      +
      The char if the path exists and is a char, otherwise the default value.
      +
      +
      +
    • +
    • +
      +

      isString

      +
      default boolean isString(@NotNull + @NotNull String path)
      +
      Predicate the value of given path is a String.
      +
      +
      Parameters:
      +
      path - The path to check.
      +
      Returns:
      +
      True if the value is present and is a string, false otherwise.
      +
      +
      +
    • +
    • +
      +

      getString

      +
      @Nullable +default @Nullable String getString(@NotNull + @NotNull String path)
      +
      Get the value as a String from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the string.
      +
      Returns:
      +
      The string if the path exists and is a string, otherwise null.
      +
      +
      +
    • +
    • +
      +

      getString

      +
      @Contract("_, !null -> !null") +@Nullable +default @Nullable String getString(@NotNull + @NotNull String path, + @Nullable + @Nullable String def)
      +
      Get the value as a String from the specified path.
      +
      +
      Parameters:
      +
      path - The path to get the string.
      +
      def - The default value to return if the path does not exist.
      +
      Returns:
      +
      The string if the path exists and is a string, otherwise the default value.
      +
      +
      +
    • +
    • +
      +

      getList

      +
      @NotNull +default <V> @NotNull List<V> getList(@NotNull + @NotNull String path, + @NotNull + @NotNull DataFunction<Object,V> parser)
      +
      Get a list of values from current section +

      + If the path does not exist, an empty list will be returned +
      Any changes please use set(String, Object) after changes

      +
      +
      Type Parameters:
      +
      V - The type of the values
      +
      Parameters:
      +
      path - The path to get the list from
      +
      parser - The function to parse the values
      +
      Returns:
      +
      The list of values
      +
      +
      +
    • +
    • +
      +

      getStringList

      +
      @NotNull +default @NotNull List<String> getStringList(@NotNull + @NotNull String path)
      +
      Get a list of strings from current section +

      Limitations see getList(String, DataFunction)

      +
      +
      Parameters:
      +
      path - The path to get the list from
      +
      Returns:
      +
      The list of strings
      +
      +
      +
    • +
    • +
      +

      getIntegerList

      +
      @NotNull +default @NotNull List<Integer> getIntegerList(@NotNull + @NotNull String path)
      +
      Get a list of integer from current section +

      Limitations see getList(String, DataFunction)

      +
      +
      Parameters:
      +
      path - The path to get the list from
      +
      Returns:
      +
      The list of int values
      +
      +
      +
    • +
    • +
      +

      getLongList

      +
      @NotNull +default @NotNull List<Long> getLongList(@NotNull + @NotNull String path)
      +
      Get a list of long from current section +

      Limitations see getList(String, DataFunction)

      +
      +
      Parameters:
      +
      path - The path to get the list from
      +
      Returns:
      +
      The list of long values
      +
      +
      +
    • +
    • +
      +

      getDoubleList

      +
      @NotNull +default @NotNull List<Double> getDoubleList(@NotNull + @NotNull String path)
      +
      Get a list of double from current section +

      Limitations see getList(String, DataFunction)

      +
      +
      Parameters:
      +
      path - The path to get the list from
      +
      Returns:
      +
      The list of doubles
      +
      +
      +
    • +
    • +
      +

      getFloatList

      +
      @NotNull +default @NotNull List<Float> getFloatList(@NotNull + @NotNull String path)
      +
      Get a list of floats from current section +

      Limitations see getList(String, DataFunction)

      +
      +
      Parameters:
      +
      path - The path to get the list from
      +
      Returns:
      +
      The list of floats
      +
      +
      +
    • +
    • +
      +

      getByteList

      +
      @NotNull +default @NotNull List<Byte> getByteList(@NotNull + @NotNull String path)
      +
      Get a list of bytes from current section +

      Limitations see getList(String, DataFunction)

      +
      +
      Parameters:
      +
      path - The path to get the list from
      +
      Returns:
      +
      The list of bytes
      +
      +
      +
    • +
    • +
      +

      getCharList

      +
      @NotNull +default @NotNull List<Character> getCharList(@NotNull + @NotNull String path)
      +
      Get a list of char from current section +

      Limitations see getList(String, DataFunction)

      +
      +
      Parameters:
      +
      path - The path to get the list from
      +
      Returns:
      +
      The list of char
      +
      +
      +
    • +
    • +
      +

      getSectionList

      +
      @NotNull +default @NotNull List<ConfigureSection> getSectionList(@NotNull + @NotNull String path)
      +
      Get a list of ConfigureSection from current section
      +
      +
      Parameters:
      +
      path - The path to get the list from
      +
      Returns:
      +
      The list of ConfigureSection
      +
      +
      +
    • +
    • +
      +

      getCollection

      +
      @NotNull +default <T, +C extends Collection<T>> C getCollection(@NotNull + @NotNull String path, + @NotNull + @NotNull Supplier<C> constructor, + @NotNull + @NotNull DataFunction<Object,T> parser)
      +
      Get the specific type of collection from current section.
      +
      +
      Type Parameters:
      +
      T - The type of the values
      +
      C - The type of the collection
      +
      Parameters:
      +
      path - The path to get the collection from
      +
      constructor - The constructor of the collection
      +
      parser - The function to parse the values
      +
      Returns:
      +
      The collection of values
      +
      +
      +
    • +
    • +
      +

      stream

      +
      @NotNull +default @NotNull Stream<?> stream(@NotNull + @NotNull String path)
      +
      Get the specific type of steam from current section.
      +
      +
      Parameters:
      +
      path - The path to get the stream from
      +
      Returns:
      +
      The stream of values
      +
      +
      +
    • +
    • +
      +

      stream

      +
      @NotNull +default <T> @NotNull Stream<T> stream(@NotNull + @NotNull String path, + @NotNull + @NotNull Function<Object,T> parser)
      +
      Get the specific type of steam from current section.
      +
      +
      Type Parameters:
      +
      T - The type of the values
      +
      Parameters:
      +
      path - The path to get the stream from
      +
      parser - The function to parse the values
      +
      Returns:
      +
      The stream of values
      +
      +
      +
    • +
    • +
      +

      childPath

      +
      default String childPath(String path)
      +
      +
    • +
    • +
      +

      parseCollection

      +
      @NotNull +static <T, +C extends Collection<T>> C parseCollection(@Nullable + @Nullable List<?> data, + @NotNull + @NotNull Supplier<C> constructor, + @NotNull + @NotNull DataFunction<Object,T> parser)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/section/ConfigureSource.html b/cc/carm/lib/configuration/source/section/ConfigureSource.html new file mode 100644 index 0000000..380787a --- /dev/null +++ b/cc/carm/lib/configuration/source/section/ConfigureSource.html @@ -0,0 +1,596 @@ + + + + +ConfigureSource (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigureSource<SECTION extends ConfigureSection,ORIGINAL,SELF extends ConfigureSource<SECTION,ORIGINAL,SELF>>

+
+
java.lang.Object +
cc.carm.lib.configuration.source.section.ConfigureSource<SECTION,ORIGINAL,SELF>
+
+
+
+
Type Parameters:
+
SECTION - The type of the root section.
+
ORIGINAL - The original configuration object.
+
SELF - The type of the source itself, for further implement support.
+
+
+
All Implemented Interfaces:
+
ConfigureSection
+
+
+
public abstract class ConfigureSource<SECTION extends ConfigureSection,ORIGINAL,SELF extends ConfigureSource<SECTION,ORIGINAL,SELF>> +extends Object +implements ConfigureSection
+
ConfigureSource represents the source of configuration, + which can be a file, a database, or any other source.
+
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ConfigureSource

      +
      protected ConfigureSource(@NotNull + @NotNull ConfigurationHolder<? extends SELF> holder, + long lastUpdateMillis)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      holder

      +
      @NotNull +public @NotNull ConfigurationHolder<? extends SELF> holder()
      +
      +
    • +
    • +
      +

      reload

      +
      public void reload() + throws Exception
      +
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      self

      +
      @Contract(pure=true) +@Internal +@NotNull +protected abstract SELF self()
      +
      +
    • +
    • +
      +

      original

      +
      @Contract(pure=true) +@NotNull +public abstract ORIGINAL original()
      +
      +
      Returns:
      +
      The original configuration object.
      +
      +
      +
    • +
    • +
      +

      section

      +
      @NotNull +public abstract SECTION section()
      +
      +
      Returns:
      +
      The root ConfigureSection, which represents the entire configuration.
      +
      +
      +
    • +
    • +
      +

      save

      +
      public abstract void save() + throws Exception
      +
      Save the whole configuration.
      +
      +
      Throws:
      +
      Exception - If any error occurs while saving.
      +
      +
      +
    • +
    • +
      +

      onReload

      +
      @OverrideOnly +protected abstract void onReload() + throws Exception
      +
      Reload the configuration. +
      This used for implementation, for external usage, use reload()
      +
      +
      Throws:
      +
      Exception - If any error occurs while reloading.
      +
      +
      +
    • +
    • +
      +

      pathSeparator

      +
      public char pathSeparator()
      +
      Description copied from interface: ConfigureSection
      +
      Get the path separator for the section.
      +
      +
      Specified by:
      +
      pathSeparator in interface ConfigureSection
      +
      Returns:
      +
      The path separator
      +
      +
      +
    • +
    • +
      +

      getLastUpdateMillis

      +
      public long getLastUpdateMillis()
      +
      +
    • +
    • +
      +

      isExpired

      +
      public boolean isExpired(long parsedTime)
      +
      +
    • +
    • +
      +

      parent

      +
      @Contract(pure=true, + value="->null") +@Nullable +public @Nullable ConfigureSection parent()
      +
      Source also represents the root section, so it has no parent
      +
      +
      Specified by:
      +
      parent in interface ConfigureSection
      +
      Returns:
      +
      null
      +
      +
      +
    • +
    • +
      +

      path

      +
      @NotNull +public @NotNull String path()
      +
      Description copied from interface: ConfigureSection
      +
      Get the current section's path from ConfigureSection.parent() of this section.
      +
      +
      Specified by:
      +
      path in interface ConfigureSection
      +
      Returns:
      +
      The current path of this section, if ConfigureSection.isRoot(), return empty string.
      +
      +
      +
    • +
    • +
      +

      getValues

      +
      @NotNull +public @NotNull Map<String,Object> getValues(boolean deep)
      +
      Description copied from interface: ConfigureSection
      +
      Gets a set containing all values in this section. +

      + If deep is set to true, then this will contain all the keys within any + child ConfigureSections (and their children paths). +

      + If deep is set to false, then this will contain only the keys of any + direct children, and not their own children.

      +
      +
      Specified by:
      +
      getValues in interface ConfigureSection
      +
      Parameters:
      +
      deep - Whether to get a deep list.
      +
      Returns:
      +
      Map of data values contained within this Section.
      +
      +
      +
    • +
    • +
      +

      getKeys

      +
      @NotNull +public @NotNull @UnmodifiableView Set<String> getKeys(boolean deep)
      +
      Description copied from interface: ConfigureSection
      +
      Gets a set containing all keys in this section. +

      + If deep is set to true, then this will contain all the keys within any + child ConfigureSections (and their children paths). +

      + If deep is set to false, then this will contain only the keys of any + direct children, and not their own children.

      +
      +
      Specified by:
      +
      getKeys in interface ConfigureSection
      +
      Parameters:
      +
      deep - Whether to get a deep list.
      +
      Returns:
      +
      Set of keys contained within this Section.
      +
      +
      +
    • +
    • +
      +

      asMap

      +
      @NotNull +public @NotNull @UnmodifiableView Map<String,Object> asMap()
      +
      Description copied from interface: ConfigureSection
      +
      Get this section as a map. +

      + In this map, child ConfigureSections will also be represented as Maps.

      +
      +
      Specified by:
      +
      asMap in interface ConfigureSection
      +
      Returns:
      +
      Map of data values contained within this Section.
      +
      +
      +
    • +
    • +
      +

      createSection

      +
      @NotNull +public @NotNull ConfigureSection createSection(@NotNull + @NotNull String path, + @NotNull + @NotNull Map<?,?> data)
      +
      Description copied from interface: ConfigureSection
      +
      Creates a new ConfigureSection with specified values. +

      The ConfigureSection.parent() of the new section will be this section. +

      This section will not be saved until ConfigureSection.set(String, Object) is called. +

      If you want to create and use a section and set it to this section, use ConfigureSection.computeSection(String).

      +
      +
      Specified by:
      +
      createSection in interface ConfigureSection
      +
      Parameters:
      +
      data - The data to be used to create section.
      +
      Returns:
      +
      Newly created section
      +
      +
      +
    • +
    • +
      +

      set

      +
      public void set(@NotNull + @NotNull String path, + @Nullable + @Nullable Object value)
      +
      Description copied from interface: ConfigureSection
      +
      Sets the value at the given path. +

      + Null values will be kept, if you want to remove a value use ConfigureSection.remove(String) + Path separator depends on holder's + StandardOptions.PATH_SEPARATOR

      +
      +
      Specified by:
      +
      set in interface ConfigureSection
      +
      Parameters:
      +
      path - The path to set the value at.
      +
      value - The value to set.
      +
      +
      +
    • +
    • +
      +

      remove

      +
      public void remove(@NotNull + @NotNull String path)
      +
      Description copied from interface: ConfigureSection
      +
      Removes the value at the given path. +

      + Path separator depends on holder's + StandardOptions.PATH_SEPARATOR

      +
      +
      Specified by:
      +
      remove in interface ConfigureSection
      +
      Parameters:
      +
      path - The path to remove the value at.
      +
      +
      +
    • +
    • +
      +

      get

      +
      @Nullable +public @Nullable Object get(@NotNull + @NotNull String path)
      +
      Description copied from interface: ConfigureSection
      +
      Get the origin value of the path.
      +
      +
      Specified by:
      +
      get in interface ConfigureSection
      +
      Parameters:
      +
      path - The path to get the value from.
      +
      Returns:
      +
      The value at the path, or null if not found.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/section/class-use/ConfigureSection.html b/cc/carm/lib/configuration/source/section/class-use/ConfigureSection.html new file mode 100644 index 0000000..19970c0 --- /dev/null +++ b/cc/carm/lib/configuration/source/section/class-use/ConfigureSection.html @@ -0,0 +1,294 @@ + + + + +Uses of Interface cc.carm.lib.configuration.source.section.ConfigureSection (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
cc.carm.lib.configuration.source.section.ConfigureSection

+
+
Packages that use ConfigureSection
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/section/class-use/ConfigureSource.html b/cc/carm/lib/configuration/source/section/class-use/ConfigureSource.html new file mode 100644 index 0000000..e093264 --- /dev/null +++ b/cc/carm/lib/configuration/source/section/class-use/ConfigureSource.html @@ -0,0 +1,127 @@ + + + + +Uses of Class cc.carm.lib.configuration.source.section.ConfigureSource (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.source.section.ConfigureSource

+
+
Packages that use ConfigureSource
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/section/package-summary.html b/cc/carm/lib/configuration/source/section/package-summary.html new file mode 100644 index 0000000..7ae82dc --- /dev/null +++ b/cc/carm/lib/configuration/source/section/package-summary.html @@ -0,0 +1,122 @@ + + + + +cc.carm.lib.configuration.source.section (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.source.section

+
+
+
package cc.carm.lib.configuration.source.section
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/section/package-tree.html b/cc/carm/lib/configuration/source/section/package-tree.html new file mode 100644 index 0000000..91379c6 --- /dev/null +++ b/cc/carm/lib/configuration/source/section/package-tree.html @@ -0,0 +1,82 @@ + + + + +cc.carm.lib.configuration.source.section Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.source.section

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/source/section/package-use.html b/cc/carm/lib/configuration/source/section/package-use.html new file mode 100644 index 0000000..824f915 --- /dev/null +++ b/cc/carm/lib/configuration/source/section/package-use.html @@ -0,0 +1,183 @@ + + + + +Uses of Package cc.carm.lib.configuration.source.section (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.source.section

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/ConfigValue.html b/cc/carm/lib/configuration/value/ConfigValue.html new file mode 100644 index 0000000..1a1f4ec --- /dev/null +++ b/cc/carm/lib/configuration/value/ConfigValue.html @@ -0,0 +1,421 @@ + + + + +ConfigValue (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfigValue<T,U>

+
+
java.lang.Object +
cc.carm.lib.configuration.value.ValueManifest<T,U> +
cc.carm.lib.configuration.value.ConfigValue<T,U>
+
+
+
+
+
Direct Known Subclasses:
+
CachedConfigValue
+
+
+
public abstract class ConfigValue<T,U> +extends ValueManifest<T,U>
+
Represents a configurable value with type safety and null-handling capabilities. +

+ This abstract class provides core functionalities for managing configuration values, + including value retrieval with fallback defaults, null safety enforcement, and value + persistence controls. It serves as the foundation for type-specific configuration + implementations. +

+ +

Functions:

+ + +

Persistence Behavior:

+ Value modifications via set(Object) or setDefault() methods + do NOT automatically persist to configuration sources. Explicit calls to + ConfigurationHolder.save() are required for permanent storage.
+
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ConfigValue

      +
      protected ConfigValue(@NotNull + @NotNull ValueManifest<T,U> manifest)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      get

      +
      @Nullable +public abstract T get()
      +
      Gets the configured value (i.e., the value read from the source). +
      If no default value was written during initialization, you can use + the getOrDefault() method to obtain the default value when this value is empty.
      +
      +
      Returns:
      +
      Configured value
      +
      +
      +
    • +
    • +
      +

      getOrDefault

      +
      public T getOrDefault()
      +
      Gets the configured value, or returns the default value if not present.
      +
      +
      Returns:
      +
      Configured value or default value
      +
      +
      +
    • +
    • +
      +

      getOr

      +
      @Contract("!null -> !null") +public T getOr(T defaults)
      +
      Gets the configured value, or returns the specified default value if not present.
      +
      +
      Parameters:
      +
      defaults - The default value to return if the configured value is not present
      +
      Returns:
      +
      Configured value or specified default value
      +
      +
      +
    • +
    • +
      +

      resolve

      +
      @NotNull +public T resolve()
      +
      Gets the non-null value of this configuration.
      +
      +
      Returns:
      +
      Non-null value
      +
      Throws:
      +
      NullPointerException - Thrown when the corresponding data is null
      +
      +
      +
    • +
    • +
      +

      getNotNull

      +
      @NotNull +public T getNotNull()
      +
      Gets the non-null value of this configuration.
      +
      +
      Returns:
      +
      Non-null value
      +
      Throws:
      +
      NullPointerException - Thrown when the corresponding data is null
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      optional

      +
      @NotNull +public @NotNull Optional<@Nullable T> optional()
      +
      Gets the value of this configuration as an Optional.
      +
      +
      Returns:
      +
      Optional value
      +
      +
      +
    • +
    • +
      +

      set

      +
      public abstract void set(@Nullable + T value)
      +
      Sets the value of this configuration. +
      After setting, the configuration file will NOT be saved automatically. + To save, call ConfigurationHolder.save().
      +
      +
      Parameters:
      +
      value - The value to set
      +
      +
      +
    • +
    • +
      +

      setDefault

      +
      public void setDefault()
      +
      Initializes the default value for this configuration. +
      After setting, the configuration file will NOT be saved automatically. + To save, call ConfigurationHolder.save().
      +
      +
    • +
    • +
      +

      setDefault

      +
      public void setDefault(boolean override)
      +
      Sets the configuration value to its default. +
      After setting, the configuration file will NOT be saved automatically. + To save, call ConfigurationHolder.save().
      +
      +
      Parameters:
      +
      override - Whether to overwrite existing configured value
      +
      +
      +
    • +
    • +
      +

      isDefault

      +
      public boolean isDefault()
      +
      Checks if the loaded configuration value matches the default value.
      +
      +
      Returns:
      +
      Whether the current value is the default value
      +
      +
      +
    • +
    • +
      +

      save

      +
      public void save() + throws Exception
      +
      Try to save the configuration. +
      To save multiple modifications, + it is recommended to call ConfigurationHolder.save() + after all modifications are completed instead of this.
      +
      +
      Throws:
      +
      Exception - Thrown when an error occurs during saving
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/ValueManifest.html b/cc/carm/lib/configuration/value/ValueManifest.html new file mode 100644 index 0000000..b5637cf --- /dev/null +++ b/cc/carm/lib/configuration/value/ValueManifest.html @@ -0,0 +1,569 @@ + + + + +ValueManifest (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ValueManifest<TYPE,UNIT>

+
+
java.lang.Object +
cc.carm.lib.configuration.value.ValueManifest<TYPE,UNIT>
+
+
+
+
Direct Known Subclasses:
+
ConfigValue
+
+
+
public class ValueManifest<TYPE,UNIT> +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      type

      +
      @NotNull +protected final @NotNull ValueType<TYPE> type
      +
      +
    • +
    • +
      +

      initializer

      +
      @NotNull +protected final @NotNull BiConsumer<@NotNull ConfigurationHolder<?>,@NotNull String> initializer
      +
      +
    • +
    • +
      +

      holder

      +
      @Nullable +protected @Nullable ConfigurationHolder<?> holder
      +
      +
    • +
    • +
      +

      path

      +
      @Nullable +protected @Nullable String path
      +
      +
    • +
    • +
      +

      validator

      +
      @NotNull +protected @NotNull ValueValidator<UNIT> validator
      +
      +
    • +
    • +
      +

      defaultSupplier

      +
      @NotNull +protected @NotNull Supplier<@Nullable TYPE> defaultSupplier
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      initialize

      +
      public void initialize(@NotNull + @NotNull ConfigurationHolder<?> holder, + @NotNull + @NotNull String path)
      +
      +
    • +
    • +
      +

      initialize

      +
      protected void initialize()
      +
      +
    • +
    • +
      +

      type

      +
      @NotNull +public @NotNull ValueType<TYPE> type()
      +
      +
    • +
    • +
      +

      holder

      +
      public void holder(@NotNull + @NotNull ConfigurationHolder<?> holder)
      +
      +
    • +
    • +
      +

      path

      +
      public void path(@NotNull + @NotNull String path)
      +
      +
    • +
    • +
      +

      defaults

      +
      @Nullable +public TYPE defaults()
      +
      +
    • +
    • +
      +

      defaults

      +
      public void defaults(@Nullable + TYPE defaultValue)
      +
      +
    • +
    • +
      +

      defaults

      +
      public void defaults(@NotNull + @NotNull Supplier<@Nullable TYPE> defaultValue)
      +
      +
    • +
    • +
      +

      hasDefaults

      +
      public boolean hasDefaults()
      +
      +
    • +
    • +
      +

      validator

      +
      @NotNull +public @NotNull ValueValidator<UNIT> validator()
      +
      +
    • +
    • +
      +

      validator

      +
      public void validator(@NotNull + @NotNull ValueValidator<UNIT> validator)
      +
      +
    • +
    • +
      +

      validate

      +
      public void validate(@NotNull + @NotNull ValueValidator<UNIT> validator)
      +
      +
    • +
    • +
      +

      withValidated

      +
      protected UNIT withValidated(@Nullable + UNIT value) + throws Exception
      +
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      path

      +
      @NotNull +public @NotNull String path()
      +
      +
    • +
    • +
      +

      holder

      +
      @NotNull +public @NotNull ConfigurationHolder<?> holder()
      +
      +
    • +
    • +
      +

      config

      +
      @NotNull +public @NotNull ConfigureSource<?,?,?> config()
      +
      +
    • +
    • +
      +

      metadata

      +
      @NotNull +public @NotNull ConfigurationMetaHolder metadata()
      +
      +
    • +
    • +
      +

      getData

      +
      @Internal +@Nullable +protected @Nullable Object getData()
      +
      +
    • +
    • +
      +

      setData

      +
      @Internal +protected void setData(@Nullable + @Nullable Object value)
      +
      +
    • +
    • +
      +

      throwing

      +
      protected void throwing(@NotNull + @NotNull Throwable throwable)
      +
      +
    • +
    • +
      +

      throwing

      +
      protected void throwing(@NotNull + @NotNull String path, + @NotNull + @NotNull Throwable throwable)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/class-use/ConfigValue.html b/cc/carm/lib/configuration/value/class-use/ConfigValue.html new file mode 100644 index 0000000..f8ebec4 --- /dev/null +++ b/cc/carm/lib/configuration/value/class-use/ConfigValue.html @@ -0,0 +1,234 @@ + + + + +Uses of Class cc.carm.lib.configuration.value.ConfigValue (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.value.ConfigValue

+
+
Packages that use ConfigValue
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/class-use/ValueManifest.html b/cc/carm/lib/configuration/value/class-use/ValueManifest.html new file mode 100644 index 0000000..a6ac881 --- /dev/null +++ b/cc/carm/lib/configuration/value/class-use/ValueManifest.html @@ -0,0 +1,244 @@ + + + + +Uses of Class cc.carm.lib.configuration.value.ValueManifest (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.value.ValueManifest

+
+
Packages that use ValueManifest
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/impl/CachedConfigValue.html b/cc/carm/lib/configuration/value/impl/CachedConfigValue.html new file mode 100644 index 0000000..fd924aa --- /dev/null +++ b/cc/carm/lib/configuration/value/impl/CachedConfigValue.html @@ -0,0 +1,340 @@ + + + + +CachedConfigValue (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class CachedConfigValue<T,U>

+
+
java.lang.Object +
cc.carm.lib.configuration.value.ValueManifest<T,U> +
cc.carm.lib.configuration.value.ConfigValue<T,U> +
cc.carm.lib.configuration.value.impl.CachedConfigValue<T,U>
+
+
+
+
+
+
Direct Known Subclasses:
+
CollectionConfigValue, ConfiguredMap, ConfiguredValue
+
+
+
public abstract class CachedConfigValue<T,U> +extends ConfigValue<T,U>
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      cachedValue

      +
      @Nullable +protected T cachedValue
      +
      +
    • +
    • +
      +

      parsedTime

      +
      protected long parsedTime
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      CachedConfigValue

      +
      protected CachedConfigValue(@NotNull + @NotNull ValueManifest<T,U> manifest)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      updateCache

      +
      protected T updateCache(T value)
      +
      +
    • +
    • +
      +

      getCachedValue

      +
      @Nullable +public T getCachedValue()
      +
      +
    • +
    • +
      +

      cacheExpired

      +
      public boolean cacheExpired()
      +
      +
    • +
    • +
      +

      getDefaultFirst

      +
      protected final T getDefaultFirst(@Nullable + T value)
      +
      +
    • +
    • +
      +

      getCachedOrDefault

      +
      @Nullable +protected T getCachedOrDefault()
      +
      Get the cached value or the default value if the cached value is null
      +
      +
      Returns:
      +
      the cached value or the default value
      +
      +
      +
    • +
    • +
      +

      getCachedOrDefault

      +
      @Contract("!null->!null") +protected T getCachedOrDefault(@Nullable + T emptyValue)
      +
      Get the cached value or the default value if the cached value is null
      +
      +
      Parameters:
      +
      emptyValue - the value to return if the cached value and the default value are null
      +
      Returns:
      +
      the cached value or the default value
      +
      +
      +
    • +
    • +
      +

      parserFor

      +
      @Nullable +protected <O> @Nullable ValueParser<O> parserFor(@NotNull + @NotNull ValueAdapter<O> adapter)
      +
      +
      Type Parameters:
      +
      O - Base object type
      +
      Parameters:
      +
      adapter - Value adapter
      +
      Returns:
      +
      Value's parser, parse base object to value.
      +
      +
      +
    • +
    • +
      +

      serializerFor

      +
      @Nullable +protected <O> @Nullable ValueSerializer<O> serializerFor(@NotNull + @NotNull ValueAdapter<O> adapter)
      +
      +
      Type Parameters:
      +
      O - Base object type
      +
      Parameters:
      +
      adapter - Value adapter
      +
      Returns:
      +
      Value's serializer, parse value to base object.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/impl/CollectionConfigValue.html b/cc/carm/lib/configuration/value/impl/CollectionConfigValue.html new file mode 100644 index 0000000..2320e57 --- /dev/null +++ b/cc/carm/lib/configuration/value/impl/CollectionConfigValue.html @@ -0,0 +1,573 @@ + + + + +CollectionConfigValue (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class CollectionConfigValue<V,C extends Collection<V>,SELF extends CollectionConfigValue<V,C,SELF>>

+
+ +
+
+
Type Parameters:
+
V - Value type
+
C - Collection type
+
SELF - Self reference type (used for internal call or recursive generics)
+
+
+
All Implemented Interfaces:
+
Iterable<V>, Collection<V>
+
+
+
Direct Known Subclasses:
+
ConfiguredList
+
+
+
public abstract class CollectionConfigValue<V,C extends Collection<V>,SELF extends CollectionConfigValue<V,C,SELF>> +extends CachedConfigValue<C,V> +implements Collection<V>
+
Base implementation of a collection config value, like List or Set.
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      constructor

      +
      @NotNull +protected final @NotNull Supplier<? extends C extends Collection<V>> constructor
      +
      +
    • +
    • +
      +

      paramAdapter

      +
      @NotNull +protected final @NotNull ValueAdapter<V> paramAdapter
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      CollectionConfigValue

      +
      public CollectionConfigValue(@NotNull + @NotNull ValueManifest<C,V> manifest, + @NotNull + @NotNull Supplier<? extends C> constructor, + @NotNull + @NotNull ValueAdapter<V> paramAdapter)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      adapter

      +
      @NotNull +public @NotNull ValueAdapter<V> adapter()
      +
      +
      Returns:
      +
      Adapter of this value.
      +
      +
      +
    • +
    • +
      +

      paramType

      +
      @NotNull +public @NotNull ValueType<V> paramType()
      +
      +
    • +
    • +
      +

      parser

      +
      @Nullable +public @Nullable ValueParser<V> parser()
      +
      +
      Returns:
      +
      Value's parser, parse base object to value.
      +
      +
      +
    • +
    • +
      +

      serializer

      +
      @Nullable +public @Nullable ValueSerializer<V> serializer()
      +
      +
      Returns:
      +
      Value's serializer, parse value to base object.
      +
      +
      +
    • +
    • +
      +

      get

      +
      @NotNull +public C get()
      +
      Description copied from class: ConfigValue
      +
      Gets the configured value (i.e., the value read from the source). +
      If no default value was written during initialization, you can use + the ConfigValue.getOrDefault() method to obtain the default value when this value is empty.
      +
      +
      Specified by:
      +
      get in class ConfigValue<C extends Collection<V>,V>
      +
      Returns:
      +
      Configured value
      +
      +
      +
    • +
    • +
      +

      set

      +
      public void set(@Nullable + C collection)
      +
      Description copied from class: ConfigValue
      +
      Sets the value of this configuration. +
      After setting, the configuration file will NOT be saved automatically. + To save, call ConfigurationHolder.save().
      +
      +
      Specified by:
      +
      set in class ConfigValue<C extends Collection<V>,V>
      +
      Parameters:
      +
      collection - The value to set
      +
      +
      +
    • +
    • +
      +

      copy

      +
      @NotNull +public C copy()
      +
      +
    • +
    • +
      +

      self

      +
      @NotNull +public abstract SELF self()
      +
      +
    • +
    • +
      +

      handle

      +
      @NotNull +public <T> T handle(Function<C,T> function)
      +
      +
    • +
    • +
      +

      modify

      +
      @NotNull +public SELF modify(Consumer<C> consumer)
      +
      +
    • +
    • +
      +

      size

      +
      public int size()
      +
      +
      Specified by:
      +
      size in interface Collection<V>
      +
      +
      +
    • +
    • +
      +

      isEmpty

      +
      public boolean isEmpty()
      +
      +
      Specified by:
      +
      isEmpty in interface Collection<V>
      +
      +
      +
    • +
    • +
      +

      contains

      +
      public boolean contains(Object o)
      +
      +
      Specified by:
      +
      contains in interface Collection<V>
      +
      +
      +
    • +
    • +
      +

      iterator

      +
      @NotNull +public @NotNull Iterator<V> iterator()
      +
      +
      Specified by:
      +
      iterator in interface Collection<V>
      +
      Specified by:
      +
      iterator in interface Iterable<V>
      +
      +
      +
    • +
    • +
      +

      toArray

      +
      @NotNull +public @NotNull Object @NotNull [] toArray()
      +
      +
      Specified by:
      +
      toArray in interface Collection<V>
      +
      +
      +
    • +
    • +
      +

      toArray

      +
      @NotNull +public <T> T @NotNull [] toArray(@NotNull + T[] a)
      +
      +
      Specified by:
      +
      toArray in interface Collection<V>
      +
      +
      +
    • +
    • +
      +

      containsAll

      +
      public boolean containsAll(@NotNull + @NotNull Collection<?> c)
      +
      +
      Specified by:
      +
      containsAll in interface Collection<V>
      +
      +
      +
    • +
    • +
      +

      add

      +
      public boolean add(V v)
      +
      +
      Specified by:
      +
      add in interface Collection<V>
      +
      +
      +
    • +
    • +
      +

      addAll

      +
      public boolean addAll(@NotNull + @NotNull Collection<? extends V> c)
      +
      +
      Specified by:
      +
      addAll in interface Collection<V>
      +
      +
      +
    • +
    • +
      +

      remove

      +
      public boolean remove(Object o)
      +
      +
      Specified by:
      +
      remove in interface Collection<V>
      +
      +
      +
    • +
    • +
      +

      removeAll

      +
      public boolean removeAll(@NotNull + @NotNull Collection<?> c)
      +
      +
      Specified by:
      +
      removeAll in interface Collection<V>
      +
      +
      +
    • +
    • +
      +

      retainAll

      +
      public boolean retainAll(@NotNull + @NotNull Collection<?> c)
      +
      +
      Specified by:
      +
      retainAll in interface Collection<V>
      +
      +
      +
    • +
    • +
      +

      clear

      +
      public void clear()
      +
      +
      Specified by:
      +
      clear in interface Collection<V>
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/impl/class-use/CachedConfigValue.html b/cc/carm/lib/configuration/value/impl/class-use/CachedConfigValue.html new file mode 100644 index 0000000..a267949 --- /dev/null +++ b/cc/carm/lib/configuration/value/impl/class-use/CachedConfigValue.html @@ -0,0 +1,111 @@ + + + + +Uses of Class cc.carm.lib.configuration.value.impl.CachedConfigValue (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.value.impl.CachedConfigValue

+
+
Packages that use CachedConfigValue
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/impl/class-use/CollectionConfigValue.html b/cc/carm/lib/configuration/value/impl/class-use/CollectionConfigValue.html new file mode 100644 index 0000000..1bf3282 --- /dev/null +++ b/cc/carm/lib/configuration/value/impl/class-use/CollectionConfigValue.html @@ -0,0 +1,148 @@ + + + + +Uses of Class cc.carm.lib.configuration.value.impl.CollectionConfigValue (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.value.impl.CollectionConfigValue

+
+
Packages that use CollectionConfigValue
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/impl/package-summary.html b/cc/carm/lib/configuration/value/impl/package-summary.html new file mode 100644 index 0000000..3c33f24 --- /dev/null +++ b/cc/carm/lib/configuration/value/impl/package-summary.html @@ -0,0 +1,113 @@ + + + + +cc.carm.lib.configuration.value.impl (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.value.impl

+
+
+
package cc.carm.lib.configuration.value.impl
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/impl/package-tree.html b/cc/carm/lib/configuration/value/impl/package-tree.html new file mode 100644 index 0000000..eee21b2 --- /dev/null +++ b/cc/carm/lib/configuration/value/impl/package-tree.html @@ -0,0 +1,88 @@ + + + + +cc.carm.lib.configuration.value.impl Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.value.impl

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/impl/package-use.html b/cc/carm/lib/configuration/value/impl/package-use.html new file mode 100644 index 0000000..34778f8 --- /dev/null +++ b/cc/carm/lib/configuration/value/impl/package-use.html @@ -0,0 +1,120 @@ + + + + +Uses of Package cc.carm.lib.configuration.value.impl (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.value.impl

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/package-summary.html b/cc/carm/lib/configuration/value/package-summary.html new file mode 100644 index 0000000..d029e43 --- /dev/null +++ b/cc/carm/lib/configuration/value/package-summary.html @@ -0,0 +1,125 @@ + + + + +cc.carm.lib.configuration.value (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.value

+
+
+
package cc.carm.lib.configuration.value
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/package-tree.html b/cc/carm/lib/configuration/value/package-tree.html new file mode 100644 index 0000000..52223b0 --- /dev/null +++ b/cc/carm/lib/configuration/value/package-tree.html @@ -0,0 +1,80 @@ + + + + +cc.carm.lib.configuration.value Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.value

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/package-use.html b/cc/carm/lib/configuration/value/package-use.html new file mode 100644 index 0000000..75b0a11 --- /dev/null +++ b/cc/carm/lib/configuration/value/package-use.html @@ -0,0 +1,210 @@ + + + + +Uses of Package cc.carm.lib.configuration.value (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.value

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/standard/ConfiguredList.html b/cc/carm/lib/configuration/value/standard/ConfiguredList.html new file mode 100644 index 0000000..4d5c4c0 --- /dev/null +++ b/cc/carm/lib/configuration/value/standard/ConfiguredList.html @@ -0,0 +1,441 @@ + + + + +ConfiguredList (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfiguredList<V>

+
+ +
+
+
All Implemented Interfaces:
+
Iterable<V>, Collection<V>, List<V>, SequencedCollection<V>
+
+
+
public class ConfiguredList<V> +extends CollectionConfigValue<V,List<V>,ConfiguredList<V>> +implements List<V>
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/standard/ConfiguredMap.html b/cc/carm/lib/configuration/value/standard/ConfiguredMap.html new file mode 100644 index 0000000..57f3c09 --- /dev/null +++ b/cc/carm/lib/configuration/value/standard/ConfiguredMap.html @@ -0,0 +1,635 @@ + + + + +ConfiguredMap (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfiguredMap<K,V>

+
+ +
+
+
All Implemented Interfaces:
+
Map<K,V>
+
+
+
public class ConfiguredMap<K,V> +extends CachedConfigValue<Map<K,V>,V> +implements Map<K,V>
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      constructor

      +
      @NotNull +protected final @NotNull Supplier<? extends Map<K,V>> constructor
      +
      +
    • +
    • +
      +

      keyAdapter

      +
      @NotNull +protected final @NotNull ValueAdapter<K> keyAdapter
      +
      +
    • +
    • +
      +

      valueAdapter

      +
      @NotNull +protected final @NotNull ValueAdapter<V> valueAdapter
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      builderOf

      +
      public static <V> ConfigMapCreator<String,V> builderOf(@NotNull + @NotNull Class<V> valueType)
      +
      +
    • +
    • +
      +

      builderOf

      +
      public static <K, +V> ConfigMapCreator<K,V> builderOf(@NotNull + @NotNull ValueType<K> keyType, + @NotNull + @NotNull ValueType<V> valueType)
      +
      +
    • +
    • +
      +

      builderOf

      +
      public static <K, +V> ConfigMapCreator<K,V> builderOf(@NotNull + @NotNull Class<K> keyType, + @NotNull + @NotNull Class<V> valueType)
      +
      +
    • +
    • +
      +

      with

      +
      @NotNull +public static <K, +V> +@NotNull SourceMapBuilder<LinkedHashMap<K,V>,Object,K,V> with(@NotNull + @NotNull Class<K> keyType, + @NotNull + @NotNull Class<V> valueType)
      +
      +
    • +
    • +
      +

      with

      +
      @NotNull +public static <K, +V> +@NotNull SourceMapBuilder<LinkedHashMap<K,V>,Object,K,V> with(@NotNull + @NotNull ValueType<K> keyType, + @NotNull + @NotNull ValueType<V> valueType)
      +
      +
    • +
    • +
      +

      of

      +
      public static <K, +V> ConfiguredMap<K,V> of(@NotNull + @NotNull Supplier<? extends Map<K,V>> constructor, + @NotNull + @NotNull ValueAdapter<K> keyAdapter, + @NotNull + @NotNull ValueAdapter<V> valueAdapter)
      +
      +
    • +
    • +
      +

      keyAdapter

      +
      @NotNull +public @NotNull ValueAdapter<K> keyAdapter()
      +
      +
    • +
    • +
      +

      keyType

      +
      @NotNull +public @NotNull ValueType<K> keyType()
      +
      +
    • +
    • +
      +

      valueAdapter

      +
      @NotNull +public @NotNull ValueAdapter<V> valueAdapter()
      +
      +
    • +
    • +
      +

      valueType

      +
      @NotNull +public @NotNull ValueType<V> valueType()
      +
      +
    • +
    • +
      +

      get

      +
      @NotNull +public @NotNull Map<K,V> get()
      +
      Description copied from class: ConfigValue
      +
      Gets the configured value (i.e., the value read from the source). +
      If no default value was written during initialization, you can use + the ConfigValue.getOrDefault() method to obtain the default value when this value is empty.
      +
      +
      Specified by:
      +
      get in class ConfigValue<Map<K,V>,V>
      +
      Returns:
      +
      Configured value
      +
      +
      +
    • +
    • +
      +

      get

      +
      public V get(Object key)
      +
      +
      Specified by:
      +
      get in interface Map<K,V>
      +
      +
      +
    • +
    • +
      +

      getNotNull

      +
      public V getNotNull(@Nullable + K key)
      +
      +
    • +
    • +
      +

      set

      +
      public void set(@Nullable + @Nullable Map<K,V> value)
      +
      Description copied from class: ConfigValue
      +
      Sets the value of this configuration. +
      After setting, the configuration file will NOT be saved automatically. + To save, call ConfigurationHolder.save().
      +
      +
      Specified by:
      +
      set in class ConfigValue<Map<K,V>,V>
      +
      Parameters:
      +
      value - The value to set
      +
      +
      +
    • +
    • +
      +

      handle

      +
      @NotNull +public <T> T handle(Function<Map<K,V>,T> function)
      +
      +
    • +
    • +
      +

      modify

      +
      @NotNull +public @NotNull ConfiguredMap<K,V> modify(Consumer<Map<K,V>> consumer)
      +
      +
    • +
    • +
      +

      size

      +
      public int size()
      +
      +
      Specified by:
      +
      size in interface Map<K,V>
      +
      +
      +
    • +
    • +
      +

      isEmpty

      +
      public boolean isEmpty()
      +
      +
      Specified by:
      +
      isEmpty in interface Map<K,V>
      +
      +
      +
    • +
    • +
      +

      containsKey

      +
      public boolean containsKey(Object key)
      +
      +
      Specified by:
      +
      containsKey in interface Map<K,V>
      +
      +
      +
    • +
    • +
      +

      containsValue

      +
      public boolean containsValue(Object value)
      +
      +
      Specified by:
      +
      containsValue in interface Map<K,V>
      +
      +
      +
    • +
    • +
      +

      put

      +
      @Nullable +public V put(K key, + V value)
      +
      +
      Specified by:
      +
      put in interface Map<K,V>
      +
      +
      +
    • +
    • +
      +

      remove

      +
      public V remove(Object key)
      +
      +
      Specified by:
      +
      remove in interface Map<K,V>
      +
      +
      +
    • +
    • +
      +

      putAll

      +
      public void putAll(@NotNull + @NotNull Map<? extends K,? extends V> m)
      +
      +
      Specified by:
      +
      putAll in interface Map<K,V>
      +
      +
      +
    • +
    • +
      +

      clear

      +
      public void clear()
      +
      +
      Specified by:
      +
      clear in interface Map<K,V>
      +
      +
      +
    • +
    • +
      +

      keySet

      +
      @NotNull +public @NotNull Set<K> keySet()
      +
      +
      Specified by:
      +
      keySet in interface Map<K,V>
      +
      +
      +
    • +
    • +
      +

      values

      +
      @NotNull +public @NotNull Collection<V> values()
      +
      +
      Specified by:
      +
      values in interface Map<K,V>
      +
      +
      +
    • +
    • +
      +

      entrySet

      +
      @NotNull +public @NotNull @Unmodifiable Set<Map.Entry<K,V>> entrySet()
      +
      +
      Specified by:
      +
      entrySet in interface Map<K,V>
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/standard/ConfiguredValue.html b/cc/carm/lib/configuration/value/standard/ConfiguredValue.html new file mode 100644 index 0000000..e3bcc96 --- /dev/null +++ b/cc/carm/lib/configuration/value/standard/ConfiguredValue.html @@ -0,0 +1,500 @@ + + + + +ConfiguredValue (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ConfiguredValue<V>

+
+ +
+
+
public class ConfiguredValue<V> +extends CachedConfigValue<V,V>
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      adapter

      +
      @NotNull +protected final @NotNull ValueAdapter<V> adapter
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ConfiguredValue

      +
      public ConfiguredValue(@NotNull + @NotNull ValueManifest<V,V> manifest, + @NotNull + @NotNull ValueAdapter<V> adapter)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      builderOf

      +
      public static <V> ConfigValueBuilder<V> builderOf(@NotNull + @NotNull Class<V> type)
      +
      Create a new value builder.
      +
      +
      Type Parameters:
      +
      V - The type of the value.
      +
      Parameters:
      +
      type - The type of the value.
      +
      Returns:
      +
      a ConfigValueBuilder with the specified type.
      +
      +
      +
    • +
    • +
      +

      builderOf

      +
      public static <V> ConfigValueBuilder<V> builderOf(@NotNull + @NotNull ValueType<V> type)
      +
      Create a new value builder.
      +
      +
      Type Parameters:
      +
      V - The type of the value.
      +
      Parameters:
      +
      type - The type of the value.
      +
      Returns:
      +
      a ConfigValueBuilder with the specified type.
      +
      +
      +
    • +
    • +
      +

      with

      +
      public static <V> SourceValueBuilder<V,V> with(@NotNull + @NotNull Class<V> registeredType)
      +
      Create a new value builder with the specified ConfigurationHolder.registeredValues() type.
      +
      +
      Type Parameters:
      +
      V - The type of the value.
      +
      Parameters:
      +
      registeredType - The type of the value.
      +
      Returns:
      +
      a SourceValueBuilder with the specified registered type.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      with

      +
      public static <V> SourceValueBuilder<V,V> with(@NotNull + @NotNull ValueType<V> registeredType)
      +
      Create a new value builder with the specified ConfigurationHolder.registeredValues() type.
      +
      +
      Type Parameters:
      +
      V - The type of the value.
      +
      Parameters:
      +
      registeredType - The type of the value.
      +
      Returns:
      +
      a SourceValueBuilder with the specified registered type.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      of

      +
      public static <V> ConfiguredValue<V> of(@NotNull + V defaults)
      +
      +
    • +
    • +
      +

      of

      +
      public static <V> ConfiguredValue<V> of(@NotNull + @NotNull Class<V> type)
      +
      +
    • +
    • +
      +

      of

      +
      public static <V> ConfiguredValue<V> of(@NotNull + @NotNull Class<V> type, + @NotNull + V defaults)
      +
      +
    • +
    • +
      +

      of

      +
      public static <V> ConfiguredValue<V> of(@NotNull + @NotNull Class<V> type, + @NotNull + @NotNull Supplier<@Nullable V> defaultSupplier)
      +
      +
    • +
    • +
      +

      of

      +
      public static <V> ConfiguredValue<V> of(@NotNull + @NotNull ValueType<V> type)
      +
      +
    • +
    • +
      +

      of

      +
      public static <V> ConfiguredValue<V> of(@NotNull + @NotNull ValueType<V> type, + @NotNull + @NotNull Supplier<@Nullable V> defaultSupplier)
      +
      +
    • +
    • +
      +

      of

      +
      public static <V> ConfiguredValue<V> of(@NotNull + @NotNull ValueManifest<V,V> manifest, + @Nullable + @Nullable ValueParser<V> parser, + @Nullable + @Nullable ValueSerializer<V> serializer)
      +
      +
    • +
    • +
      +

      of

      +
      public static <V> ConfiguredValue<V> of(@NotNull + @NotNull ValueManifest<V,V> manifest, + @NotNull + @NotNull ValueAdapter<V> adapter)
      +
      +
    • +
    • +
      +

      adapter

      +
      @NotNull +public @NotNull ValueAdapter<V> adapter()
      +
      +
      Returns:
      +
      Adapter of this value.
      +
      +
      +
    • +
    • +
      +

      parser

      +
      @Nullable +public @Nullable ValueParser<V> parser()
      +
      +
      Returns:
      +
      Value's parser, parse base object to value.
      +
      +
      +
    • +
    • +
      +

      serializer

      +
      @Nullable +public @Nullable ValueSerializer<V> serializer()
      +
      +
      Returns:
      +
      Value's serializer, parse value to base object.
      +
      +
      +
    • +
    • +
      +

      get

      +
      public V get()
      +
      Description copied from class: ConfigValue
      +
      Gets the configured value (i.e., the value read from the source). +
      If no default value was written during initialization, you can use + the ConfigValue.getOrDefault() method to obtain the default value when this value is empty.
      +
      +
      Specified by:
      +
      get in class ConfigValue<V,V>
      +
      Returns:
      +
      Configured value
      +
      +
      +
    • +
    • +
      +

      set

      +
      public void set(@Nullable + V value)
      +
      Set the value of the configuration path. + Will use serializer() to serialize the value.
      +
      +
      Specified by:
      +
      set in class ConfigValue<V,V>
      +
      Parameters:
      +
      value - The value to be set
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/standard/class-use/ConfiguredList.html b/cc/carm/lib/configuration/value/standard/class-use/ConfiguredList.html new file mode 100644 index 0000000..5db8d14 --- /dev/null +++ b/cc/carm/lib/configuration/value/standard/class-use/ConfiguredList.html @@ -0,0 +1,103 @@ + + + + +Uses of Class cc.carm.lib.configuration.value.standard.ConfiguredList (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.value.standard.ConfiguredList

+
+
Packages that use ConfiguredList
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/standard/class-use/ConfiguredMap.html b/cc/carm/lib/configuration/value/standard/class-use/ConfiguredMap.html new file mode 100644 index 0000000..b66d28a --- /dev/null +++ b/cc/carm/lib/configuration/value/standard/class-use/ConfiguredMap.html @@ -0,0 +1,112 @@ + + + + +Uses of Class cc.carm.lib.configuration.value.standard.ConfiguredMap (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.value.standard.ConfiguredMap

+
+
Packages that use ConfiguredMap
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/standard/class-use/ConfiguredValue.html b/cc/carm/lib/configuration/value/standard/class-use/ConfiguredValue.html new file mode 100644 index 0000000..acdba21 --- /dev/null +++ b/cc/carm/lib/configuration/value/standard/class-use/ConfiguredValue.html @@ -0,0 +1,133 @@ + + + + +Uses of Class cc.carm.lib.configuration.value.standard.ConfiguredValue (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
cc.carm.lib.configuration.value.standard.ConfiguredValue

+
+
Packages that use ConfiguredValue
+ +
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/standard/package-summary.html b/cc/carm/lib/configuration/value/standard/package-summary.html new file mode 100644 index 0000000..d6bed26 --- /dev/null +++ b/cc/carm/lib/configuration/value/standard/package-summary.html @@ -0,0 +1,113 @@ + + + + +cc.carm.lib.configuration.value.standard (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package cc.carm.lib.configuration.value.standard

+
+
+
package cc.carm.lib.configuration.value.standard
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/standard/package-tree.html b/cc/carm/lib/configuration/value/standard/package-tree.html new file mode 100644 index 0000000..7cc9b93 --- /dev/null +++ b/cc/carm/lib/configuration/value/standard/package-tree.html @@ -0,0 +1,94 @@ + + + + +cc.carm.lib.configuration.value.standard Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package cc.carm.lib.configuration.value.standard

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/cc/carm/lib/configuration/value/standard/package-use.html b/cc/carm/lib/configuration/value/standard/package-use.html new file mode 100644 index 0000000..3280d05 --- /dev/null +++ b/cc/carm/lib/configuration/value/standard/package-use.html @@ -0,0 +1,114 @@ + + + + +Uses of Package cc.carm.lib.configuration.value.standard (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
cc.carm.lib.configuration.value.standard

+
+ + +
+ +
+
+
+
+ +
+
+
+ + diff --git a/copy.svg b/copy.svg new file mode 100644 index 0000000..7c46ab1 --- /dev/null +++ b/copy.svg @@ -0,0 +1,33 @@ + + + + + + + + diff --git a/element-list b/element-list new file mode 100644 index 0000000..3534f75 --- /dev/null +++ b/element-list @@ -0,0 +1,19 @@ +cc.carm.lib.configuration +cc.carm.lib.configuration.adapter +cc.carm.lib.configuration.adapter.strandard +cc.carm.lib.configuration.annotation +cc.carm.lib.configuration.builder +cc.carm.lib.configuration.builder.collection +cc.carm.lib.configuration.builder.impl +cc.carm.lib.configuration.builder.list +cc.carm.lib.configuration.builder.map +cc.carm.lib.configuration.builder.value +cc.carm.lib.configuration.function +cc.carm.lib.configuration.source +cc.carm.lib.configuration.source.loader +cc.carm.lib.configuration.source.meta +cc.carm.lib.configuration.source.option +cc.carm.lib.configuration.source.section +cc.carm.lib.configuration.value +cc.carm.lib.configuration.value.impl +cc.carm.lib.configuration.value.standard diff --git a/help-doc.html b/help-doc.html new file mode 100644 index 0000000..430e411 --- /dev/null +++ b/help-doc.html @@ -0,0 +1,198 @@ + + + + +API Help (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+

JavaDoc Help

+ +
+
+

Navigation

+Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
+
+
+

Kinds of Pages

+The following sections describe the different kinds of pages in this collection. +
+

Overview

+

The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

+
+
+

Package

+

Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

+
    +
  • Interfaces
  • +
  • Classes
  • +
  • Enums
  • +
  • Exception Classes
  • +
  • Annotation Types
  • +
+
+
+

Class or Interface

+

Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

+
    +
  • Class Inheritance Diagram
  • +
  • Direct Subclasses
  • +
  • All Known Subinterfaces
  • +
  • All Known Implementing Classes
  • +
  • Class or Interface Declaration
  • +
  • Class or Interface Description
  • +
+
+
    +
  • Nested Class Summary
  • +
  • Enum Constant Summary
  • +
  • Field Summary
  • +
  • Property Summary
  • +
  • Constructor Summary
  • +
  • Method Summary
  • +
  • Required Element Summary
  • +
  • Optional Element Summary
  • +
+
+
    +
  • Enum Constant Details
  • +
  • Field Details
  • +
  • Property Details
  • +
  • Constructor Details
  • +
  • Method Details
  • +
  • Element Details
  • +
+

Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

+

The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

+
+
+

Other Files

+

Packages and modules may contain pages with additional information related to the declarations nearby.

+
+
+

Use

+

Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.

+
+
+

Tree (Class Hierarchy)

+

There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

+
    +
  • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
  • +
  • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
  • +
+
+
+

Serialized Form

+

Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.

+
+
+

All Packages

+

The All Packages page contains an alphabetic index of all packages contained in the documentation.

+
+
+

All Classes and Interfaces

+

The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

+
+
+

Index

+

The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

+
+
+
+This help file applies to API documentation generated by the standard doclet.
+
+
+ +
+
+
+ + diff --git a/index-all.html b/index-all.html new file mode 100644 index 0000000..a0d85b2 --- /dev/null +++ b/index-all.html @@ -0,0 +1,1944 @@ + + + + +Index (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I K L M N O P R S T U V W 
All Classes and Interfaces|All Packages|Serialized Form +

A

+
+
AbstractConfigBuilder<TYPE,UNIT,RESULT,HOLDER,SELF> - Class in cc.carm.lib.configuration.builder
+
 
+
AbstractConfigBuilder(Class<? super HOLDER>, ValueType<TYPE>) - Constructor for class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
AbstractSectionBuilder<TYPE,UNIT,RESULT,SELF> - Class in cc.carm.lib.configuration.builder.impl
+
 
+
AbstractSectionBuilder(ValueType<TYPE>, ValueType<UNIT>, ValueHandler<ConfigureSection, UNIT>, ValueHandler<UNIT, ? extends Map<String, Object>>) - Constructor for class cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder
+
 
+
AbstractSourceBuilder<V,SOURCE,UNIT,RESULT,SELF> - Class in cc.carm.lib.configuration.builder.impl
+
 
+
AbstractSourceBuilder(ValueType<V>, ValueType<SOURCE>, ValueType<UNIT>, ValueHandler<SOURCE, UNIT>, ValueHandler<UNIT, SOURCE>) - Constructor for class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
accept(ConfigurationHolder<?>, T, U) - Method in interface cc.carm.lib.configuration.function.ValueComposer
+
+
Accept the value and the data, and then compose the value.
+
+
accept(T) - Method in interface cc.carm.lib.configuration.function.DataConsumer
+
 
+
adapter - Variable in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
adapter() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
adapter() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
adapter(ValueAdapter<T>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
adapter(ValueType<FROM>, ValueType<TO>, DataFunction<FROM, TO>, DataFunction<TO, FROM>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
adapter(ValueType<T>, ValueParser<T>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
adapter(ValueType<T>, ValueSerializer<T>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
adapter(ValueType<T>, ValueSerializer<T>, ValueParser<T>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
adapter(Class<FROM>, Class<TO>, DataFunction<FROM, TO>, DataFunction<TO, FROM>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
adapter(Class<T>, ValueSerializer<T>, ValueParser<T>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
adapter(Consumer<ValueAdapterRegistry>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
adapterCache - Variable in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
adapterOf(ValueType<T>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
adapterOf(Class<T>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
adapterOf(T) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
adapters - Variable in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
adapters - Variable in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
adapters - Variable in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
adapters() - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
adapters(ValueAdapterRegistry) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
add(int, V) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
add(V) - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
addAll(int, Collection<? extends V>) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
addAll(Collection<? extends V>) - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
and(ValueValidator<? super T>) - Method in interface cc.carm.lib.configuration.function.ValueValidator
+
 
+
andThen(DataFunction<? super R, V>) - Method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
andThen(ValueHandler<R, V>) - Method in interface cc.carm.lib.configuration.function.ValueHandler
+
 
+
andThen(DataConsumer<? super T>) - Method in interface cc.carm.lib.configuration.function.DataConsumer
+
 
+
andThen(ValueComposer<? super T, ? super U>) - Method in interface cc.carm.lib.configuration.function.ValueComposer
+
 
+
andThen(ConfigInitializeHandler<T, V>) - Method in interface cc.carm.lib.configuration.source.loader.ConfigInitializeHandler
+
 
+
append(BiConsumer<ConfigurationHolder<?>, String>) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
append(Consumer<ConfigurationHolder<?>>) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
appendClassInitializer(ConfigInitializeHandler<Class<? extends Configuration>, Object>) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
appendFieldInitializer(ConfigInitializeHandler<Field, ConfigValue<?, ?>>) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
asHashMap() - Method in class cc.carm.lib.configuration.builder.map.ConfigMapCreator
+
 
+
asLinkedMap() - Method in class cc.carm.lib.configuration.builder.map.ConfigMapCreator
+
 
+
asMap() - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get this section as a map.
+
+
asMap() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
asTreeMap() - Method in class cc.carm.lib.configuration.builder.map.ConfigMapCreator
+
 
+
asTreeMap(Comparator<? super K>) - Method in class cc.carm.lib.configuration.builder.map.ConfigMapCreator
+
 
+
+

B

+
+
BOOLEAN - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
BOOLEAN_TYPE - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
booleanValue() - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
build() - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
build() - Method in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Section
+
 
+
build() - Method in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Source
+
 
+
build() - Method in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
build() - Method in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
build() - Method in class cc.carm.lib.configuration.builder.value.SectionValueBuilder
+
 
+
build() - Method in class cc.carm.lib.configuration.builder.value.SourceValueBuilder
+
 
+
build() - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
+
Build the configuration holder.
+
+
build(ValueManifest<C, V>, Supplier<? extends C>, ValueAdapter<V>) - Method in interface cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.CollectionValueFactory
+
 
+
buildAdapter() - Method in class cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder
+
 
+
buildAdapter() - Method in class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
builderOf(ValueType<K>, ValueType<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
builderOf(ValueType<T>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
builderOf(ValueType<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
+
Create a new value builder.
+
+
builderOf(Class<K>, Class<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
builderOf(Class<T>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
builderOf(Class<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
builderOf(Class<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
+
Create a new value builder.
+
+
buildKeyAdapter() - Method in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
buildKeyAdapter() - Method in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
buildManifest() - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
BYTE - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
BYTE_TYPE - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
byteValue() - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
+

C

+
+
CachedConfigValue<T,U> - Class in cc.carm.lib.configuration.value.impl
+
 
+
CachedConfigValue(ValueManifest<T, U>) - Constructor for class cc.carm.lib.configuration.value.impl.CachedConfigValue
+
 
+
cachedValue - Variable in class cc.carm.lib.configuration.value.impl.CachedConfigValue
+
 
+
cacheExpired() - Method in class cc.carm.lib.configuration.value.impl.CachedConfigValue
+
 
+
cast(Object) - Method in class cc.carm.lib.configuration.adapter.ValueType
+
+
Casts the object to the type represented by this ValueType.
+
+
castFromString(Class<V>) - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
castObject(Class<V>) - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
castToString() - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
cc.carm.lib.configuration - package cc.carm.lib.configuration
+
 
+
cc.carm.lib.configuration.adapter - package cc.carm.lib.configuration.adapter
+
 
+
cc.carm.lib.configuration.adapter.strandard - package cc.carm.lib.configuration.adapter.strandard
+
 
+
cc.carm.lib.configuration.annotation - package cc.carm.lib.configuration.annotation
+
 
+
cc.carm.lib.configuration.builder - package cc.carm.lib.configuration.builder
+
 
+
cc.carm.lib.configuration.builder.collection - package cc.carm.lib.configuration.builder.collection
+
 
+
cc.carm.lib.configuration.builder.impl - package cc.carm.lib.configuration.builder.impl
+
 
+
cc.carm.lib.configuration.builder.list - package cc.carm.lib.configuration.builder.list
+
 
+
cc.carm.lib.configuration.builder.map - package cc.carm.lib.configuration.builder.map
+
 
+
cc.carm.lib.configuration.builder.value - package cc.carm.lib.configuration.builder.value
+
 
+
cc.carm.lib.configuration.function - package cc.carm.lib.configuration.function
+
 
+
cc.carm.lib.configuration.source - package cc.carm.lib.configuration.source
+
 
+
cc.carm.lib.configuration.source.loader - package cc.carm.lib.configuration.source.loader
+
 
+
cc.carm.lib.configuration.source.meta - package cc.carm.lib.configuration.source.meta
+
 
+
cc.carm.lib.configuration.source.option - package cc.carm.lib.configuration.source.option
+
 
+
cc.carm.lib.configuration.source.section - package cc.carm.lib.configuration.source.section
+
 
+
cc.carm.lib.configuration.value - package cc.carm.lib.configuration.value
+
 
+
cc.carm.lib.configuration.value.impl - package cc.carm.lib.configuration.value.impl
+
 
+
cc.carm.lib.configuration.value.standard - package cc.carm.lib.configuration.value.standard
+
 
+
CHAR - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
CHAR_TYPE - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
childPath(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
 
+
classInitializer - Variable in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
classInitializer() - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
classInitializer(ConfigInitializeHandler<Class<? extends Configuration>, Object>) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
clear() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
clear() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
clear(ConfigurationOption<V>) - Method in class cc.carm.lib.configuration.source.option.ConfigurationOptionHolder
+
+
Set the value of option to option's defaults().
+
+
CollectionConfigValue<V,C,SELF> - Class in cc.carm.lib.configuration.value.impl
+
+
Base implementation of a collection config value, like List or Set.
+
+
CollectionConfigValue(ValueManifest<C, V>, Supplier<? extends C>, ValueAdapter<V>) - Constructor for class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
CommonConfigBuilder<TYPE,UNIT,RESULT,SELF> - Class in cc.carm.lib.configuration.builder
+
 
+
CommonConfigBuilder(ValueType<TYPE>) - Constructor for class cc.carm.lib.configuration.builder.CommonConfigBuilder
+
 
+
compose(DataFunction<? super V, ? extends T>) - Method in interface cc.carm.lib.configuration.function.ValueHandler
+
 
+
compose(ValueHandler<? super V, ? extends T>) - Method in interface cc.carm.lib.configuration.function.ValueHandler
+
 
+
compose(DataValidator<? super T>) - Method in interface cc.carm.lib.configuration.function.DataValidator
+
 
+
compose(ConfigInitializeHandler<T, V>) - Method in interface cc.carm.lib.configuration.source.loader.ConfigInitializeHandler
+
 
+
computeSection(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get or create a section at the given path.
+
+
computeSection(String, Map<?, ?>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get or create a section at the given path.
+
+
computeSection(String, Consumer<Map<String, Object>>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get or create a section at the given path.
+
+
computeSection(String, Supplier<Map<String, Object>>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get or create a section at the given path.
+
+
config() - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
config() - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
ConfigExceptionHandler - Interface in cc.carm.lib.configuration.function
+
 
+
ConfigInitializeHandler<T,V> - Interface in cc.carm.lib.configuration.source.loader
+
 
+
ConfigListCreator<V> - Class in cc.carm.lib.configuration.builder.list
+
 
+
ConfigListCreator(ValueType<V>) - Constructor for class cc.carm.lib.configuration.builder.list.ConfigListCreator
+
 
+
ConfigMapBuilder<M,K,V> - Class in cc.carm.lib.configuration.builder.map
+
 
+
ConfigMapBuilder(Supplier<M>, ValueType<K>, ValueType<V>) - Constructor for class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
ConfigMapCreator<K,V> - Class in cc.carm.lib.configuration.builder.map
+
 
+
ConfigMapCreator(ValueType<K>, ValueType<V>) - Constructor for class cc.carm.lib.configuration.builder.map.ConfigMapCreator
+
 
+
ConfigPath - Annotation Type in cc.carm.lib.configuration.annotation
+
+
The configuration path used to mark the corresponding class or parameter.
+
+
Configuration - Interface in cc.carm.lib.configuration
+
+
The root interface of the configuration file interfaces, + which is used to label a class as a configuration.
+
+
ConfigurationFactory<SOURCE,HOLDER,SELF> - Class in cc.carm.lib.configuration.source
+
+
ConfigurationFactory, used to create configuration holder.
+
+
ConfigurationFactory() - Constructor for class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
ConfigurationHolder<SOURCE> - Class in cc.carm.lib.configuration.source
+
 
+
ConfigurationHolder(ValueAdapterRegistry, ConfigurationOptionHolder, Map<String, ConfigurationMetaHolder>, ConfigurationInitializer) - Constructor for class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
ConfigurationHolder(ValueAdapterRegistry, ConfigurationOptionHolder, Map<String, ConfigurationMetaHolder>, ConfigurationInitializer, ConfigExceptionHandler) - Constructor for class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
ConfigurationInitializer - Class in cc.carm.lib.configuration.source.loader
+
+
Configuration initializer, + used to initialize ConfigValues from Configuration classes.
+
+
ConfigurationInitializer() - Constructor for class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
ConfigurationInitializer(PathGenerator, ConfigInitializeHandler<Field, ConfigValue<?, ?>>, ConfigInitializeHandler<Class<? extends Configuration>, Object>) - Constructor for class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
ConfigurationMetadata<T> - Class in cc.carm.lib.configuration.source.meta
+
 
+
ConfigurationMetadata(Supplier<T>) - Constructor for class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
ConfigurationMetaHolder - Class in cc.carm.lib.configuration.source.meta
+
 
+
ConfigurationMetaHolder() - Constructor for class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
 
+
ConfigurationMetaHolder(Map<ConfigurationMetadata<?>, Object>) - Constructor for class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
 
+
ConfigurationOption<V> - Class in cc.carm.lib.configuration.source.option
+
 
+
ConfigurationOption(V) - Constructor for class cc.carm.lib.configuration.source.option.ConfigurationOption
+
 
+
ConfigurationOptionHolder - Class in cc.carm.lib.configuration.source.option
+
 
+
ConfigurationOptionHolder() - Constructor for class cc.carm.lib.configuration.source.option.ConfigurationOptionHolder
+
 
+
ConfigurationOptionHolder(Map<ConfigurationOption<?>, Object>) - Constructor for class cc.carm.lib.configuration.source.option.ConfigurationOptionHolder
+
 
+
ConfiguredList<V> - Class in cc.carm.lib.configuration.value.standard
+
 
+
ConfiguredList(ValueManifest<List<V>, V>, Supplier<? extends List<V>>, ValueAdapter<V>) - Constructor for class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
ConfiguredMap<K,V> - Class in cc.carm.lib.configuration.value.standard
+
 
+
ConfiguredMap(ValueManifest<Map<K, V>, V>, Supplier<? extends Map<K, V>>, ValueAdapter<K>, ValueAdapter<V>) - Constructor for class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
ConfiguredValue<V> - Class in cc.carm.lib.configuration.value.standard
+
 
+
ConfiguredValue(ValueManifest<V, V>, ValueAdapter<V>) - Constructor for class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
ConfigureSection - Interface in cc.carm.lib.configuration.source.section
+
+
Represents a section of a configuration.
+
+
ConfigureSource<SECTION,ORIGINAL,SELF> - Class in cc.carm.lib.configuration.source.section
+
+
ConfigureSource represents the source of configuration, + which can be a file, a database, or any other source.
+
+
ConfigureSource(ConfigurationHolder<? extends SELF>, long) - Constructor for class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
ConfigValue<T,U> - Class in cc.carm.lib.configuration.value
+
+
Represents a configurable value with type safety and null-handling capabilities.
+
+
ConfigValue(ValueManifest<T, U>) - Constructor for class cc.carm.lib.configuration.value.ConfigValue
+
 
+
ConfigValueBuilder<V> - Class in cc.carm.lib.configuration.builder.value
+
 
+
ConfigValueBuilder(ValueType<V>) - Constructor for class cc.carm.lib.configuration.builder.value.ConfigValueBuilder
+
 
+
construct(C) - Method in class cc.carm.lib.configuration.builder.collection.SectionCollectionBuilder
+
 
+
construct(C) - Method in class cc.carm.lib.configuration.builder.collection.SourceCollectionBuilder
+
 
+
constructor - Variable in class cc.carm.lib.configuration.builder.collection.SectionCollectionBuilder
+
 
+
constructor - Variable in class cc.carm.lib.configuration.builder.collection.SourceCollectionBuilder
+
 
+
constructor - Variable in class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
constructor - Variable in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
constructor - Variable in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
constructor - Variable in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
constructor - Variable in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
constructor(Class<W>) - Method in class cc.carm.lib.configuration.builder.map.ConfigMapCreator
+
 
+
constructor(Supplier<? extends C>) - Method in class cc.carm.lib.configuration.builder.collection.SectionCollectionBuilder
+
 
+
constructor(Supplier<? extends C>) - Method in class cc.carm.lib.configuration.builder.collection.SourceCollectionBuilder
+
 
+
constructor(Supplier<M>) - Method in class cc.carm.lib.configuration.builder.map.ConfigMapCreator
+
 
+
constructor(Supplier<W>) - Method in class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
contains(ConfigurationMetadata<?>) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
 
+
contains(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Check if the given path is present.
+
+
contains(Object) - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
containsAll(Collection<?>) - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
containsKey(Object) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
containsValue(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Check if the value of given path is present.
+
+
containsValue(Object) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
copy() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
covertPath(String) - Method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
covertPathName(String) - Static method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
+
Get the configuration name of the specified element.
+
+
create(ValueType<V>, Supplier<? extends C>, SimpleCollectionCreator.CollectionValueFactory<V, C, RESULT>) - Static method in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator
+
 
+
createSection(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Creates a new empty ConfigureSection.
+
+
createSection(String, Map<?, ?>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Creates a new ConfigureSection with specified values.
+
+
createSection(String, Map<?, ?>) - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
createSection(String, Consumer<Map<String, Object>>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Creates a new ConfigureSection with specified values.
+
+
createSection(String, Supplier<Map<String, Object>>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Creates a new ConfigureSection with specified values.
+
+
+

D

+
+
DataConsumer<T> - Interface in cc.carm.lib.configuration.function
+
 
+
DataFunction<T,R> - Interface in cc.carm.lib.configuration.function
+
 
+
DataValidator<T> - Interface in cc.carm.lib.configuration.function
+
 
+
defaultConstructor - Variable in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator
+
 
+
defaultOrSupply(Supplier<T>) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
defaultOrSupply(T) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
defaults() - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
defaults() - Method in class cc.carm.lib.configuration.source.option.ConfigurationOption
+
 
+
defaults() - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
defaults(Consumer<C>) - Method in class cc.carm.lib.configuration.builder.collection.SectionCollectionBuilder
+
 
+
defaults(Consumer<C>) - Method in class cc.carm.lib.configuration.builder.collection.SourceCollectionBuilder
+
 
+
defaults(Consumer<MAP>) - Method in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
defaults(Consumer<MAP>) - Method in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
defaults(Supplier<TYPE>) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
defaults(Supplier<TYPE>) - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
defaults(K, V) - Method in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
defaults(K, V) - Method in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
defaults(MAP) - Method in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
defaults(MAP) - Method in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
defaults(TYPE) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
defaults(TYPE) - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
defaults(V) - Method in class cc.carm.lib.configuration.source.option.ConfigurationOption
+
+
Set the default value of option.
+
+
defaults(V...) - Method in class cc.carm.lib.configuration.builder.collection.SectionCollectionBuilder
+
 
+
defaults(V...) - Method in class cc.carm.lib.configuration.builder.collection.SourceCollectionBuilder
+
 
+
defaultsSupplier - Variable in class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
defaultSupplier - Variable in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
defaultValueSupplier - Variable in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
deserialize(ValueType<T>, Object) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
deserialize(ValueType<T>) - Static method in interface cc.carm.lib.configuration.function.ValueHandler
+
 
+
deserialize(ConfigurationHolder<?>, ValueType<T>, Object) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
deserialize(ConfigurationHolder<?>, Class<T>, Object) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
deserialize(Class<T>, Object) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
deserializeList(ConfigurationHolder<?>, ValueType<T>, Object) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
deserializer - Variable in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
DOUBLE - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
DOUBLE_TYPE - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
doubleValue() - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
+

E

+
+
entrySet() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
ENUMS - Static variable in interface cc.carm.lib.configuration.adapter.strandard.StandardAdapters
+
 
+
equals(Object) - Method in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
equals(Object) - Method in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
exceptionally(ConfigExceptionHandler) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
exceptionally(ConfigExceptionHandler) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
exceptionHandler - Variable in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
exceptionHandler - Variable in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
extractMetadata(ConfigurationMetadata<M>) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
extractMetadata(ConfigurationMetadata<M>, Predicate<M>) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
+

F

+
+
factory - Variable in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator
+
 
+
factory - Variable in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Section
+
 
+
factory - Variable in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Source
+
 
+
FALSE_VALUES - Static variable in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
fieldInitializer() - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
fieldInitializer(ConfigInitializeHandler<Field, ConfigValue<?, ?>>) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
FLOAT - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
FLOAT_TYPE - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
floatValue() - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
forEach(BiConsumer<String, Object>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Iterates over all key-values in this section (include child sections)
+
+
from(ValueType<S>) - Method in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator
+
 
+
from(ValueType<S>) - Method in class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
from(ValueType<S>) - Method in class cc.carm.lib.configuration.builder.value.ConfigValueBuilder
+
 
+
from(ValueType<S>, ValueHandler<String, K>, ValueHandler<K, String>, ValueHandler<S, V>, ValueHandler<V, S>) - Method in class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
from(ValueType<S>, ValueHandler<S, V>, ValueHandler<V, S>) - Method in class cc.carm.lib.configuration.builder.value.ConfigValueBuilder
+
 
+
from(Class<S>) - Method in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator
+
 
+
from(Class<S>) - Method in class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
from(Class<S>) - Method in class cc.carm.lib.configuration.builder.value.ConfigValueBuilder
+
 
+
fromObject() - Method in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator
+
 
+
fromObject() - Method in class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
fromSection() - Method in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator
+
 
+
fromSection() - Method in class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
fromSection() - Method in class cc.carm.lib.configuration.builder.value.ConfigValueBuilder
+
 
+
fromSection(ValueHandler<ConfigureSection, V>, ValueHandler<V, ? extends Map<String, Object>>) - Method in class cc.carm.lib.configuration.builder.value.ConfigValueBuilder
+
 
+
fromSection(ValueHandler<String, K>, ValueHandler<K, String>, ValueHandler<ConfigureSection, V>, ValueHandler<V, Map<String, Object>>) - Method in class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
fromString() - Method in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator
+
 
+
fromString() - Method in class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
fromString() - Method in class cc.carm.lib.configuration.builder.value.ConfigValueBuilder
+
 
+
fullPath() - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the full path of this section.
+
+
Functions: - Search tag in class cc.carm.lib.configuration.value.ConfigValue
+
Section
+
+

G

+
+
get() - Method in class cc.carm.lib.configuration.value.ConfigValue
+
+
Gets the configured value (i.e., the value read from the source).
+
+
get() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
get() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
get() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
get(int) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
get(ConfigurationMetadata<V>) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
+
Get the value of option.
+
+
get(ConfigurationMetadata<V>, Supplier<V>) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
+
Get the value of option.
+
+
get(ConfigurationMetadata<V>, V) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
+
Get the value of option.
+
+
get(ConfigurationOption<V>) - Method in class cc.carm.lib.configuration.source.option.ConfigurationOptionHolder
+
+
Get the value of option.
+
+
get(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the origin value of the path.
+
+
get(String) - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
get(String, DataFunction<Object, T>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value of the path using a parser function, + if the path does not exist, return NULL.
+
+
get(String, Class<T>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value of the path for specific type, + if the path does not exist, return null.
+
+
get(String, T, DataFunction<Object, T>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value of the path using a parser function, + if the path does not exist, return the default value.
+
+
get(String, T, Class<T>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value of the path for specific type, + if the path does not exist, return the default value.
+
+
get(Object) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
getBoolean(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Boolean from the specified path.
+
+
getBoolean(String, Boolean) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Boolean from the specified path.
+
+
getByte(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Byte from the specified path.
+
+
getByte(String, Byte) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Byte from the specified path.
+
+
getByteList(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get a list of bytes from current section
+
+
getCachedOrDefault() - Method in class cc.carm.lib.configuration.value.impl.CachedConfigValue
+
+
Get the cached value or the default value if the cached value is null
+
+
getCachedOrDefault(T) - Method in class cc.carm.lib.configuration.value.impl.CachedConfigValue
+
+
Get the cached value or the default value if the cached value is null
+
+
getCachedValue() - Method in class cc.carm.lib.configuration.value.impl.CachedConfigValue
+
 
+
getChar(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Character from the specified path.
+
+
getChar(String, Character) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Character from the specified path.
+
+
getCharList(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get a list of char from current section
+
+
getClassPath(ConfigurationHolder<?>, String, Class<?>, Field) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
getClassPath(ConfigurationHolder<?>, String, Class<?>, Field) - Method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
getCollection(String, Supplier<C>, DataFunction<Object, T>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the specific type of collection from current section.
+
+
getData() - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
getDefaultFirst(T) - Method in class cc.carm.lib.configuration.value.impl.CachedConfigValue
+
 
+
getDouble(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Double from the specified path.
+
+
getDouble(String, Double) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Double from the specified path.
+
+
getDoubleList(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get a list of double from current section
+
+
getFieldPath(ConfigurationHolder<?>, String, Field) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
getFieldPath(ConfigurationHolder<?>, String, Field) - Method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
getFloat(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Float from the specified path.
+
+
getFloat(String, Float) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Float from the specified path.
+
+
getFloatList(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get a list of floats from current section
+
+
getInt(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Integer from the specified path.
+
+
getInt(String, Integer) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Integer from the specified path.
+
+
getIntegerList(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get a list of integer from current section
+
+
getKeys(boolean) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Gets a set containing all keys in this section.
+
+
getKeys(boolean) - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
getLastUpdateMillis() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
getList(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a List from the specified path.
+
+
getList(String, DataFunction<Object, V>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get a list of values from current section
+
+
getLong(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Long from the specified path.
+
+
getLong(String, Long) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Long from the specified path.
+
+
getLongList(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get a list of long from current section
+
+
getNotNull() - Method in class cc.carm.lib.configuration.value.ConfigValue
+
+
Gets the non-null value of this configuration.
+
+
getNotNull(K) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
getOr(T) - Method in class cc.carm.lib.configuration.value.ConfigValue
+
+
Gets the configured value, or returns the specified default value if not present.
+
+
getOrDefault() - Method in class cc.carm.lib.configuration.value.ConfigValue
+
+
Gets the configured value, or returns the default value if not present.
+
+
getPathConverter() - Method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
getRawType() - Method in class cc.carm.lib.configuration.adapter.ValueType
+
+
Extracts the raw type from the generic type.
+
+
getSection(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a ConfigureSection from the specified path.
+
+
getSectionList(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get a list of ConfigureSection from current section
+
+
getShort(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Short from the specified path.
+
+
getShort(String, Short) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a Short from the specified path.
+
+
getString(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a String from the specified path.
+
+
getString(String, String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the value as a String from the specified path.
+
+
getStringList(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get a list of strings from current section
+
+
getType() - Method in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
getValues(boolean) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Gets a set containing all values in this section.
+
+
getValues(boolean) - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
+

H

+
+
handle(ConfigurationHolder<?>, T) - Method in interface cc.carm.lib.configuration.function.ValueHandler
+
 
+
handle(String, Throwable) - Method in interface cc.carm.lib.configuration.function.ConfigExceptionHandler
+
 
+
handle(Function<C, T>) - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
handle(Function<Map<K, V>, T>) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
handle(T) - Method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
hasDefaults() - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
hasDefaults() - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
hashCode() - Method in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
hashCode() - Method in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
holder - Variable in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
holder - Variable in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
holder - Variable in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
holder() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
holder() - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
holder(ConfigurationHolder<?>) - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
holder(HOLDER) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
+

I

+
+
identity() - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
identity() - Static method in interface cc.carm.lib.configuration.function.ValueHandler
+
 
+
identity(Class<T>) - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
indexOf(Object) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
initialize() - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
initialize(Configuration) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
initialize(ConfigurationHolder<?>, Configuration) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
initialize(ConfigurationHolder<?>, Class<? extends Configuration>) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
initialize(ConfigurationHolder<?>, String) - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
initialize(ValueManifest<?, ?>) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
initialize(Class<? extends Configuration>) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
initializeField(ConfigurationHolder<?>, Object, Field, String) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
initializeInstance(ConfigurationHolder<?>, Configuration, String, Field) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
initializer - Variable in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
initializer - Variable in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
initializer - Variable in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
initializer - Variable in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
initializer() - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
initializer(ConfigurationInitializer) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
initializer(BiConsumer<ConfigurationHolder<?>, String>) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
initializer(Consumer<ConfigurationInitializer>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
initializeStaticClass(ConfigurationHolder<?>, Class<?>, String, Field) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
INTEGER - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
INTEGER_TYPE - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
intValue() - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
isBlank(String) - Static method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
isBoolean(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is a Boolean.
+
+
isByte(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is a Byte.
+
+
isChar(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is a Character.
+
+
isDefault() - Method in class cc.carm.lib.configuration.value.ConfigValue
+
+
Checks if the loaded configuration value matches the default value.
+
+
isDefault(T) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
isDefault(V) - Method in class cc.carm.lib.configuration.source.option.ConfigurationOption
+
 
+
isDouble(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is a Double.
+
+
isEmpty() - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Gets if this section is empty.
+
+
isEmpty() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
isEmpty() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
isExpired(long) - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
isFloat(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is a Float.
+
+
isInstance(Object) - Method in class cc.carm.lib.configuration.adapter.ValueType
+
+
Checks if the given object is an instance of the type represented by this ValueType.
+
+
isInt(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is a Integer.
+
+
isList(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is a List.
+
+
isLong(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is a Long.F
+
+
isRoot() - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Gets if this section is a root section.
+
+
isSection(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is a ConfigureSection.
+
+
isShort(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is a Short.
+
+
isString(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is a String.
+
+
isSubtypeOf(ValueType<?>) - Method in class cc.carm.lib.configuration.adapter.ValueType
+
+
Checks if this ValueType is a subtype of the given ValueType.
+
+
isSubtypeOf(Class<?>) - Method in class cc.carm.lib.configuration.adapter.ValueType
+
+
Checks if this ValueType is a subtype of the given Class.
+
+
isType(String, Class<T>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Predicate the value of given path is specific type.
+
+
iterator() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
+

K

+
+
keyAdapter - Variable in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
keyAdapter() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
keyParser - Variable in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
keyParser - Variable in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
keys() - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Gets a set containing all primary keys in this section.
+
+
keySerializer - Variable in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
keySerializer - Variable in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
keySet() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
keyType - Variable in class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
keyType - Variable in class cc.carm.lib.configuration.builder.map.ConfigMapCreator
+
 
+
keyType - Variable in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
keyType - Variable in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
keyType() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
+

L

+
+
lastIndexOf(Object) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
lastUpdateMillis - Variable in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
link(ConfigurationHolder<?>, String, boolean, String) - Method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
listIterator() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
listIterator(int) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
LOAD_SUB_CLASSES - Static variable in interface cc.carm.lib.configuration.source.option.StandardOptions
+
+
Whether to load subclasses of configuration class.
+
+
LONG - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
LONG_TYPE - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
longValue() - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
+

M

+
+
meta(ConfigurationMetadata<M>, M) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
meta(Consumer<ConfigurationMetaHolder>) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
metaAnnotation(Class<A>, ConfigurationMetadata<M>, Function<A, M>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
+
Register a new annotation for metadata to the configuration loader
+
+
metadata - Variable in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
metadata - Variable in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
metadata() - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
metadata() - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
metadata(String) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
metadata(String, ConfigurationMetaHolder) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
metadata(String, Consumer<ConfigurationMetaHolder>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
metadata(Map<String, ConfigurationMetaHolder>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
metadata(Consumer<Map<String, ConfigurationMetaHolder>>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
modify(Consumer<C>) - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
modify(Consumer<Map<K, V>>) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
+

N

+
+
none() - Static method in interface cc.carm.lib.configuration.function.ValueValidator
+
 
+
nonnull() - Static method in interface cc.carm.lib.configuration.function.ValueValidator
+
 
+
nonnull(String) - Static method in interface cc.carm.lib.configuration.function.ValueValidator
+
 
+
+

O

+
+
OBJECT - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
of() - Static method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
of() - Static method in class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
of(ValueType<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
of(ValueType<V>, Supplier<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
of(ValueManifest<V, V>, ValueAdapter<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
of(ValueManifest<V, V>, ValueParser<V>, ValueSerializer<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
of(Class<T>) - Static method in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
of(Class<T>, DataFunction<Object, T>) - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
of(Class<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
of(Class<V>, Supplier<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
of(Class<V>, V) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
of(Class<?>, Type...) - Static method in class cc.carm.lib.configuration.adapter.ValueType
+
+
Get the generic type of the complex type.
+
+
of(Type) - Static method in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
of(Map<ConfigurationOption<?>, Object>) - Static method in class cc.carm.lib.configuration.source.option.ConfigurationOptionHolder
+
 
+
of(Supplier<? extends Map<K, V>>, ValueAdapter<K>, ValueAdapter<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
of(Supplier<T>) - Static method in class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
of(Supplier<T>) - Static method in class cc.carm.lib.configuration.source.option.ConfigurationOption
+
 
+
of(UnaryOperator<String>) - Static method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
of(T) - Static method in class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
of(T) - Static method in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
of(T) - Static method in class cc.carm.lib.configuration.source.option.ConfigurationOption
+
 
+
of(T, T...) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
of(V) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
ofBoolean() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofBooleanType() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofByte() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofByteType() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofCharacter() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofCharacterType() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofDouble() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofDoubleType() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofEnum() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofFloat() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofFloatType() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofInteger() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofIntegerType() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofList(ValueType<T>) - Static method in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
ofList(Class<T>) - Static method in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
ofLong() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofLongType() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofMap(ValueType<K>, ValueType<V>) - Static method in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
ofMap(Class<K>, Class<V>) - Static method in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
ofNumber(Class<T>, DataFunction<Number, T>, DataFunction<String, T>) - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofShort() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofShortType() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
ofString() - Static method in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
onReload() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
+
Reload the configuration.
+
+
option(ConfigurationOption<O>) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
option(ConfigurationOption<O>, Consumer<O>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
option(ConfigurationOption<O>, Supplier<O>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
option(ConfigurationOption<O>, O) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
option(Consumer<ConfigurationOptionHolder>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
optional() - Method in class cc.carm.lib.configuration.value.ConfigValue
+
+
Gets the value of this configuration as an Optional.
+
+
options - Variable in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
options - Variable in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
options - Variable in class cc.carm.lib.configuration.source.option.ConfigurationOptionHolder
+
 
+
options() - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
options(ConfigurationOptionHolder) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
original() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
+

P

+
+
paramAdapter - Variable in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
paramType - Variable in class cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder
+
 
+
paramType - Variable in class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
paramType() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
parent() - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Gets the parent section of this section.
+
+
parent() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
+
Source also represents the root section, so it has no parent
+
+
parse(DataFunction<ConfigureSection, UNIT>) - Method in class cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder
+
 
+
parse(DataFunction<SOURCE, UNIT>) - Method in class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
parse(ValueHandler<ConfigureSection, UNIT>) - Method in class cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder
+
 
+
parse(ValueHandler<SOURCE, UNIT>) - Method in class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
parse(ConfigurationHolder<?>, ValueType<? super TYPE>, Object) - Method in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
parse(ConfigurationHolder<?>, ValueType<? super TYPE>, Object) - Method in interface cc.carm.lib.configuration.adapter.ValueParser
+
 
+
parseCollection(List<?>, Supplier<C>, DataFunction<Object, T>) - Static method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
 
+
parsedTime - Variable in class cc.carm.lib.configuration.value.impl.CachedConfigValue
+
 
+
parseKey(DataFunction<String, K>) - Method in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
parseKey(DataFunction<String, K>) - Method in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
parseKey(ValueHandler<String, K>) - Method in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
parseKey(ValueHandler<String, K>) - Method in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
parser - Variable in class cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder
+
 
+
parser() - Method in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
parser() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
parser() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
parser(ValueParser<UNIT>) - Method in class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
parser(ValueParser<TYPE>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
parserFor(ValueAdapter<O>) - Method in class cc.carm.lib.configuration.value.impl.CachedConfigValue
+
 
+
parseString(Class<V>) - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
path - Variable in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
path - Variable in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
path() - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the current section's path from ConfigureSection.parent() of this section.
+
+
path() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
path() - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
path(String) - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
path(String) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
PATH_SEPARATOR - Static variable in interface cc.carm.lib.configuration.source.option.StandardOptions
+
+
The configuration path separator.
+
+
pathConverter - Variable in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
pathGenerator - Variable in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
pathGenerator() - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
pathGenerator(PathGenerator) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
pathGenerator(PathGenerator) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
+
Supply the base path generator for this configuration holder
+
+
PathGenerator - Class in cc.carm.lib.configuration.source.loader
+
+
Path generator for configuration.
+
+
PathGenerator(UnaryOperator<String>) - Constructor for class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
pathSeparator() - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the path separator for the section.
+
+
pathSeparator() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
pathSeparator(ConfigurationHolder<?>) - Static method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
Persistence Behavior: - Search tag in class cc.carm.lib.configuration.value.ConfigValue
+
Section
+
PRELOAD - Static variable in interface cc.carm.lib.configuration.source.option.StandardOptions
+
+
Whether to pre parse the config values, + may good to set true if you want to keep the config format.
+
+
PRIMITIVE_TYPES - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
PrimitiveAdapter<T> - Class in cc.carm.lib.configuration.adapter.strandard
+
 
+
PrimitiveAdapter(Class<T>, ValueParser<T>) - Constructor for class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
PRIMITIVES - Static variable in interface cc.carm.lib.configuration.adapter.strandard.StandardAdapters
+
 
+
print() - Static method in interface cc.carm.lib.configuration.function.ConfigExceptionHandler
+
 
+
providerClass - Variable in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
put(K, V) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
putAll(Map<? extends K, ? extends V>) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
+

R

+
+
range(V, V) - Static method in interface cc.carm.lib.configuration.function.ValueValidator
+
 
+
range(V, V, String) - Static method in interface cc.carm.lib.configuration.function.ValueValidator
+
 
+
register(ValueAdapter<?>...) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
register(ValueType<FROM>, ValueType<TO>, DataFunction<FROM, TO>, DataFunction<TO, FROM>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
register(ValueType<T>, ValueParser<T>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
register(ValueType<T>, ValueSerializer<T>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
register(ValueType<T>, ValueSerializer<T>, ValueParser<T>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
register(Class<FROM>, Class<TO>, DataFunction<FROM, TO>, DataFunction<TO, FROM>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
register(Class<T>, ValueParser<T>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
register(Class<T>, ValueSerializer<T>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
registerAnnotation(Class<A>, ConfigurationMetadata<T>, Function<A, T>) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
registerClassAnnotation(Class<A>, ConfigurationMetadata<T>, Function<A, T>) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
registeredValues() - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
registerFieldAnnotation(Class<A>, ConfigurationMetadata<T>, Function<A, T>) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
registerValidAnnotation(Class<A>, Function<A, ValueValidator<Object>>) - Method in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
reload() - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
reload() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
remove(int) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
remove(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Removes the value at the given path.
+
+
remove(String) - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
remove(Object) - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
remove(Object) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
removeAll(Collection<?>) - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
required() - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
required() - Static method in interface cc.carm.lib.configuration.function.ValueHandler
+
 
+
required(ValueType<V>) - Static method in interface cc.carm.lib.configuration.function.ValueHandler
+
 
+
resolve() - Method in class cc.carm.lib.configuration.value.ConfigValue
+
+
Gets the non-null value of this configuration.
+
+
retainAll(Collection<?>) - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
root() - Element in annotation type cc.carm.lib.configuration.annotation.ConfigPath
+
+
Whether to start with the root node.
+
+
+

S

+
+
save() - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
save() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
+
Save the whole configuration.
+
+
save() - Method in class cc.carm.lib.configuration.value.ConfigValue
+
+
Try to save the configuration.
+
+
section() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
Section(Supplier<? extends C>, ValueType<V>, ValueHandler<ConfigureSection, V>, ValueHandler<V, ? extends Map<String, Object>>, SimpleCollectionCreator.CollectionValueFactory<V, C, RESULT>) - Constructor for class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Section
+
 
+
SectionCollectionBuilder<V,C,RESULT,SELF> - Class in cc.carm.lib.configuration.builder.collection
+
 
+
SectionCollectionBuilder(Supplier<? extends C>, ValueType<V>, ValueHandler<ConfigureSection, V>, ValueHandler<V, ? extends Map<String, Object>>) - Constructor for class cc.carm.lib.configuration.builder.collection.SectionCollectionBuilder
+
 
+
SectionMapBuilder<MAP,K,V> - Class in cc.carm.lib.configuration.builder.map
+
 
+
SectionMapBuilder(Supplier<? extends MAP>, ValueType<K>, ValueType<V>, ValueHandler<String, K>, ValueHandler<K, String>, ValueHandler<ConfigureSection, V>, ValueHandler<V, Map<String, Object>>) - Constructor for class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
SECTIONS - Static variable in interface cc.carm.lib.configuration.adapter.strandard.StandardAdapters
+
 
+
SectionValueBuilder<V> - Class in cc.carm.lib.configuration.builder.value
+
 
+
SectionValueBuilder(ValueType<V>, ValueHandler<ConfigureSection, V>, ValueHandler<V, ? extends Map<String, Object>>) - Constructor for class cc.carm.lib.configuration.builder.value.SectionValueBuilder
+
 
+
select(String, String) - Method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
self() - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
self() - Method in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Section
+
 
+
self() - Method in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Source
+
 
+
self() - Method in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
self() - Method in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
self() - Method in class cc.carm.lib.configuration.builder.value.SectionValueBuilder
+
 
+
self() - Method in class cc.carm.lib.configuration.builder.value.SourceValueBuilder
+
 
+
self() - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
 
+
self() - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
self() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
self() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
serialize(DataFunction<UNIT, ? extends Map<String, Object>>) - Method in class cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder
+
 
+
serialize(DataFunction<UNIT, SOURCE>) - Method in class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
serialize(ValueComposer<Map<String, Object>, UNIT>) - Method in class cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder
+
 
+
serialize(ValueHandler<UNIT, ? extends Map<String, Object>>) - Method in class cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder
+
 
+
serialize(ValueHandler<UNIT, SOURCE>) - Method in class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
serialize(ConfigurationHolder<?>, ValueType<? super TYPE>, TYPE) - Method in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
serialize(ConfigurationHolder<?>, ValueType<? super TYPE>, TYPE) - Method in interface cc.carm.lib.configuration.adapter.ValueSerializer
+
 
+
serialize(ConfigurationHolder<?>, T) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
serialize(T) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
serializeKey(DataFunction<K, String>) - Method in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
serializeKey(DataFunction<K, String>) - Method in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
serializeKey(ValueHandler<K, String>) - Method in class cc.carm.lib.configuration.builder.map.SectionMapBuilder
+
 
+
serializeKey(ValueHandler<K, String>) - Method in class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
serializer - Variable in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
serializer - Variable in class cc.carm.lib.configuration.builder.impl.AbstractSectionBuilder
+
 
+
serializer() - Method in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
serializer() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
serializer() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
 
+
serializer(ValueSerializer<UNIT>) - Method in class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
serializer(ValueSerializer<TYPE>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
serializerFor(ValueAdapter<O>) - Method in class cc.carm.lib.configuration.value.impl.CachedConfigValue
+
 
+
set(int, V) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
set(C) - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
set(ConfigurationMetadata<V>, V) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
+
Set the value of meta, if the value is null, the meta will be removed.
+
+
set(ConfigurationOption<V>, V) - Method in class cc.carm.lib.configuration.source.option.ConfigurationOptionHolder
+
+
Set the value of option.
+
+
set(String, Object) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Sets the value at the given path.
+
+
set(String, Object) - Method in class cc.carm.lib.configuration.source.section.ConfigureSource
+
 
+
set(Map<K, V>) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
set(T) - Method in class cc.carm.lib.configuration.value.ConfigValue
+
+
Sets the value of this configuration.
+
+
set(V) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
+
Set the value of the configuration path.
+
+
SET_DEFAULTS - Static variable in interface cc.carm.lib.configuration.source.option.StandardOptions
+
+
Whether to set and save default values if offered and not exists in configuration.
+
+
setData(Object) - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
setDefault() - Method in class cc.carm.lib.configuration.value.ConfigValue
+
+
Initializes the default value for this configuration.
+
+
setDefault(boolean) - Method in class cc.carm.lib.configuration.value.ConfigValue
+
+
Sets the configuration value to its default.
+
+
setDefaults(Supplier<T>) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
setDefaults(T) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetadata
+
 
+
setIfAbsent(ConfigurationMetadata<V>, V) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
+
Set the value of meta, if the value is null, the meta will not be changed.
+
+
setIfPresent(ConfigurationMetadata<V>, V) - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
+
Set the value of meta, if the value is null, the meta will not be changed.
+
+
setPathConverter(UnaryOperator<String>) - Method in class cc.carm.lib.configuration.source.loader.PathGenerator
+
 
+
SHORT - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
SHORT_TYPE - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
shortValue() - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
silence() - Static method in interface cc.carm.lib.configuration.function.ConfigExceptionHandler
+
 
+
SimpleCollectionCreator<V,C,RESULT> - Class in cc.carm.lib.configuration.builder.collection
+
 
+
SimpleCollectionCreator(ValueType<V>, Supplier<? extends C>, SimpleCollectionCreator.CollectionValueFactory<V, C, RESULT>) - Constructor for class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator
+
 
+
SimpleCollectionCreator.CollectionValueFactory<V,C,RESULT> - Interface in cc.carm.lib.configuration.builder.collection
+
 
+
SimpleCollectionCreator.Section<V,C,RESULT> - Class in cc.carm.lib.configuration.builder.collection
+
 
+
SimpleCollectionCreator.Source<SOURCE,V,C,RESULT> - Class in cc.carm.lib.configuration.builder.collection
+
 
+
size() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
size() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
size(boolean) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Gets the number of keys in this section.
+
+
Source(Supplier<? extends C>, ValueType<SOURCE>, ValueType<V>, ValueHandler<SOURCE, V>, ValueHandler<V, SOURCE>, SimpleCollectionCreator.CollectionValueFactory<V, C, RESULT>) - Constructor for class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.Source
+
 
+
SourceCollectionBuilder<SOURCE,V,C,RESULT,SELF> - Class in cc.carm.lib.configuration.builder.collection
+
 
+
SourceCollectionBuilder(Supplier<? extends C>, ValueType<SOURCE>, ValueType<V>, ValueHandler<SOURCE, V>, ValueHandler<V, SOURCE>) - Constructor for class cc.carm.lib.configuration.builder.collection.SourceCollectionBuilder
+
 
+
SourceMapBuilder<MAP,SOURCE,K,V> - Class in cc.carm.lib.configuration.builder.map
+
 
+
SourceMapBuilder(Supplier<? extends MAP>, ValueType<SOURCE>, ValueType<K>, ValueType<V>, ValueHandler<String, K>, ValueHandler<K, String>, ValueHandler<SOURCE, V>, ValueHandler<V, SOURCE>) - Constructor for class cc.carm.lib.configuration.builder.map.SourceMapBuilder
+
 
+
sourceType - Variable in class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
SourceValueBuilder<S,V> - Class in cc.carm.lib.configuration.builder.value
+
 
+
SourceValueBuilder(ValueType<S>, ValueType<V>, ValueHandler<S, V>, ValueHandler<V, S>) - Constructor for class cc.carm.lib.configuration.builder.value.SourceValueBuilder
+
 
+
StandardAdapters - Interface in cc.carm.lib.configuration.adapter.strandard
+
 
+
StandardMeta - Interface in cc.carm.lib.configuration.source.meta
+
 
+
StandardOptions - Interface in cc.carm.lib.configuration.source.option
+
 
+
start() - Static method in interface cc.carm.lib.configuration.source.loader.ConfigInitializeHandler
+
 
+
stream() - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Create a stream of all values in this section.
+
+
stream(String) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the specific type of steam from current section.
+
+
stream(String, Function<Object, T>) - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Get the specific type of steam from current section.
+
+
STRING - Static variable in class cc.carm.lib.configuration.adapter.ValueType
+
 
+
stringValue() - Static method in interface cc.carm.lib.configuration.function.ValueHandler
+
 
+
subList(int, int) - Method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
+

T

+
+
throwing(String, Throwable) - Method in class cc.carm.lib.configuration.source.ConfigurationHolder
+
 
+
throwing(String, Throwable) - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
throwing(Throwable) - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
toArray() - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
toArray(T[]) - Method in class cc.carm.lib.configuration.value.impl.CollectionConfigValue
+
 
+
toObject() - Static method in interface cc.carm.lib.configuration.function.DataFunction
+
 
+
toObject() - Static method in interface cc.carm.lib.configuration.function.ValueHandler
+
 
+
toString() - Method in class cc.carm.lib.configuration.adapter.ValueType
+
+
Returns a string representation of the type.
+
+
TRUE_VALUES - Static variable in class cc.carm.lib.configuration.adapter.strandard.PrimitiveAdapter
+
 
+
type - Variable in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
type - Variable in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
type - Variable in class cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator
+
 
+
type - Variable in class cc.carm.lib.configuration.builder.value.ConfigValueBuilder
+
 
+
type - Variable in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
type() - Method in class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
type() - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
type() - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
+

U

+
+
unregister(ValueType<?>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
unregister(Class<?>) - Method in class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
updateCache(T) - Method in class cc.carm.lib.configuration.value.impl.CachedConfigValue
+
 
+
UUID - Static variable in interface cc.carm.lib.configuration.adapter.strandard.StandardAdapters
+
 
+
+

V

+
+
validAnnotation(Class<A>, Function<A, ValueValidator<Object>>) - Method in class cc.carm.lib.configuration.source.ConfigurationFactory
+
+
Register a new annotation for ValueValidator to the configuration loader
+
+
validate(DataValidator<? super UNIT>) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
+
Validate the value with the specified condition.
+
+
validate(ValueValidator<? super UNIT>) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
+
Validate the value with the specified condition.
+
+
validate(ValueValidator<UNIT>) - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
validate(ConfigurationHolder<?>, T) - Method in interface cc.carm.lib.configuration.function.ValueValidator
+
 
+
validate(Predicate<? super UNIT>, Exception) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
+
Validate the value with the specified condition.
+
+
validate(Predicate<? super UNIT>, String) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
+
Validate the value with the specified condition.
+
+
validate(T) - Method in interface cc.carm.lib.configuration.function.DataValidator
+
 
+
validator - Variable in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
validator() - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
validator(DataValidator<? super UNIT>) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
+
Set the DataValidator for the value.
+
+
validator(ValueValidator<UNIT>) - Method in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
+
Set the ValueValidator for the value.
+
+
validator(ValueValidator<UNIT>) - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
value() - Element in annotation type cc.carm.lib.configuration.annotation.ConfigPath
+
+
The path value of the current configuration.
+
+
VALUE - Static variable in interface cc.carm.lib.configuration.source.meta.StandardMeta
+
+
To mark the ConfigValue instance of specific path.
+
+
valueAdapter - Variable in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
valueAdapter() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
ValueAdapter<TYPE> - Class in cc.carm.lib.configuration.adapter
+
+
Value adapter, used to convert the value of the configuration file into the objects.
+
+
ValueAdapter(ValueType<TYPE>) - Constructor for class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
ValueAdapter(ValueType<TYPE>, ValueSerializer<TYPE>, ValueParser<TYPE>) - Constructor for class cc.carm.lib.configuration.adapter.ValueAdapter
+
 
+
ValueAdapterRegistry - Class in cc.carm.lib.configuration.adapter
+
 
+
ValueAdapterRegistry() - Constructor for class cc.carm.lib.configuration.adapter.ValueAdapterRegistry
+
 
+
ValueComposer<T,U> - Interface in cc.carm.lib.configuration.function
+
 
+
ValueHandler<T,R> - Interface in cc.carm.lib.configuration.function
+
 
+
valueInitializer - Variable in class cc.carm.lib.configuration.source.loader.ConfigurationInitializer
+
 
+
ValueManifest<TYPE,UNIT> - Class in cc.carm.lib.configuration.value
+
 
+
ValueManifest(ValueType<TYPE>) - Constructor for class cc.carm.lib.configuration.value.ValueManifest
+
 
+
ValueManifest(ValueType<TYPE>, Supplier<TYPE>) - Constructor for class cc.carm.lib.configuration.value.ValueManifest
+
 
+
ValueManifest(ValueType<TYPE>, Supplier<TYPE>, ValueValidator<UNIT>) - Constructor for class cc.carm.lib.configuration.value.ValueManifest
+
 
+
ValueManifest(ValueType<TYPE>, Supplier<TYPE>, ValueValidator<UNIT>, BiConsumer<ConfigurationHolder<?>, String>) - Constructor for class cc.carm.lib.configuration.value.ValueManifest
+
 
+
ValueManifest(ValueType<TYPE>, Supplier<TYPE>, ValueValidator<UNIT>, BiConsumer<ConfigurationHolder<?>, String>, ConfigurationHolder<?>, String) - Constructor for class cc.carm.lib.configuration.value.ValueManifest
+
 
+
ValueManifest(ValueManifest<TYPE, UNIT>) - Constructor for class cc.carm.lib.configuration.value.ValueManifest
+
 
+
ValueManifest(TYPE) - Constructor for class cc.carm.lib.configuration.value.ValueManifest
+
 
+
valueParser - Variable in class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
ValueParser<TYPE> - Interface in cc.carm.lib.configuration.adapter
+
+
Value deserializer, convert base data to target value.
+
+
values - Variable in class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
 
+
values() - Method in class cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder
+
 
+
values() - Method in class cc.carm.lib.configuration.source.option.ConfigurationOptionHolder
+
 
+
values() - Method in interface cc.carm.lib.configuration.source.section.ConfigureSection
+
+
Gets a set containing all key-values in this section.
+
+
values() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
valueSerializer - Variable in class cc.carm.lib.configuration.builder.impl.AbstractSourceBuilder
+
 
+
ValueSerializer<TYPE> - Interface in cc.carm.lib.configuration.adapter
+
+
Value serializer, convert target value to base data.
+
+
valueType - Variable in class cc.carm.lib.configuration.builder.map.ConfigMapBuilder
+
 
+
valueType - Variable in class cc.carm.lib.configuration.builder.map.ConfigMapCreator
+
 
+
valueType() - Method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
ValueType<T> - Class in cc.carm.lib.configuration.adapter
+
+
ValueType used to get the generic type of the value, + It can be used to check if an object is an instance of a specific type, + and to cast objects to the correct type.
+
+
ValueType() - Constructor for class cc.carm.lib.configuration.adapter.ValueType
+
 
+
valueValidator - Variable in class cc.carm.lib.configuration.builder.AbstractConfigBuilder
+
 
+
ValueValidator<T> - Interface in cc.carm.lib.configuration.function
+
 
+
+

W

+
+
whenInitialize(ConfigurationHolder<?>, String, T, V) - Method in interface cc.carm.lib.configuration.source.loader.ConfigInitializeHandler
+
 
+
with(ValueType<K>, ValueType<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
with(ValueType<T>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
with(ValueType<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
+
Create a new value builder with the specified ConfigurationHolder.registeredValues() type.
+
+
with(Class<K>, Class<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredMap
+
 
+
with(Class<T>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredList
+
 
+
with(Class<V>) - Static method in class cc.carm.lib.configuration.value.standard.ConfiguredValue
+
+
Create a new value builder with the specified ConfigurationHolder.registeredValues() type.
+
+
withValidated(UNIT) - Method in class cc.carm.lib.configuration.value.ValueManifest
+
 
+
+A B C D E F G H I K L M N O P R S T U V W 
All Classes and Interfaces|All Packages|Serialized Form
+
+
+ +
+
+
+ + diff --git a/index.html b/index.html new file mode 100644 index 0000000..4b56301 --- /dev/null +++ b/index.html @@ -0,0 +1,107 @@ + + + + +Overview (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ + +
+ + diff --git a/legal/ADDITIONAL_LICENSE_INFO b/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..ff700cd --- /dev/null +++ b/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1,37 @@ + ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. diff --git a/legal/ASSEMBLY_EXCEPTION b/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..4296666 --- /dev/null +++ b/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available by Oracle America, Inc. (Oracle) at +openjdk.org ("OpenJDK Code") is distributed under the terms of the GNU +General Public License version 2 +only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + https://openjdk.org/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + +As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code +to build an executable that includes those portions of necessary code that +Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 +with the Classpath exception). If you modify or add to the OpenJDK code, +that new GPL2 code may still be combined with Designated Exception Modules +if the new code is made subject to this exception by its copyright holder. diff --git a/legal/LICENSE b/legal/LICENSE new file mode 100644 index 0000000..8b400c7 --- /dev/null +++ b/legal/LICENSE @@ -0,0 +1,347 @@ +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. diff --git a/legal/jquery.md b/legal/jquery.md new file mode 100644 index 0000000..a763ec6 --- /dev/null +++ b/legal/jquery.md @@ -0,0 +1,26 @@ +## jQuery v3.7.1 + +### jQuery License +``` +jQuery v 3.7.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +``` diff --git a/legal/jqueryUI.md b/legal/jqueryUI.md new file mode 100644 index 0000000..8bda9d7 --- /dev/null +++ b/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.13.2 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/link.svg b/link.svg new file mode 100644 index 0000000..7ccc5ed --- /dev/null +++ b/link.svg @@ -0,0 +1,31 @@ + + + + + + + + diff --git a/member-search-index.js b/member-search-index.js new file mode 100644 index 0000000..59f78b9 --- /dev/null +++ b/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"AbstractConfigBuilder(Class, ValueType)","u":"%3Cinit%3E(java.lang.Class,cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSectionBuilder","l":"AbstractSectionBuilder(ValueType, ValueType, ValueHandler, ValueHandler>)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"AbstractSourceBuilder(ValueType, ValueType, ValueType, ValueHandler, ValueHandler)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.function","c":"ValueComposer","l":"accept(ConfigurationHolder, T, U)","u":"accept(cc.carm.lib.configuration.source.ConfigurationHolder,T,U)"},{"p":"cc.carm.lib.configuration.function","c":"DataConsumer","l":"accept(T)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"adapter"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"adapter()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"adapter()"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"adapter(Class, Class, DataFunction, DataFunction)","u":"adapter(java.lang.Class,java.lang.Class,cc.carm.lib.configuration.function.DataFunction,cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"adapter(Class, ValueSerializer, ValueParser)","u":"adapter(java.lang.Class,cc.carm.lib.configuration.adapter.ValueSerializer,cc.carm.lib.configuration.adapter.ValueParser)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"adapter(Consumer)","u":"adapter(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"adapter(ValueAdapter)","u":"adapter(cc.carm.lib.configuration.adapter.ValueAdapter)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"adapter(ValueType, ValueType, DataFunction, DataFunction)","u":"adapter(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.DataFunction,cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"adapter(ValueType, ValueParser)","u":"adapter(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueParser)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"adapter(ValueType, ValueSerializer)","u":"adapter(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueSerializer)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"adapter(ValueType, ValueSerializer, ValueParser)","u":"adapter(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueSerializer,cc.carm.lib.configuration.adapter.ValueParser)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"adapterCache"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"adapterOf(Class)","u":"adapterOf(java.lang.Class)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"adapterOf(T)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"adapterOf(ValueType)","u":"adapterOf(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"adapters"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"adapters"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"adapters"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"adapters()"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"adapters(ValueAdapterRegistry)","u":"adapters(cc.carm.lib.configuration.adapter.ValueAdapterRegistry)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"add(int, V)","u":"add(int,V)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"add(V)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"addAll(Collection)","u":"addAll(java.util.Collection)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"addAll(int, Collection)","u":"addAll(int,java.util.Collection)"},{"p":"cc.carm.lib.configuration.function","c":"ValueValidator","l":"and(ValueValidator)","u":"and(cc.carm.lib.configuration.function.ValueValidator)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigInitializeHandler","l":"andThen(ConfigInitializeHandler)","u":"andThen(cc.carm.lib.configuration.source.loader.ConfigInitializeHandler)"},{"p":"cc.carm.lib.configuration.function","c":"DataConsumer","l":"andThen(DataConsumer)","u":"andThen(cc.carm.lib.configuration.function.DataConsumer)"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"andThen(DataFunction)","u":"andThen(cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.function","c":"ValueComposer","l":"andThen(ValueComposer)","u":"andThen(cc.carm.lib.configuration.function.ValueComposer)"},{"p":"cc.carm.lib.configuration.function","c":"ValueHandler","l":"andThen(ValueHandler)","u":"andThen(cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"append(BiConsumer, String>)","u":"append(java.util.function.BiConsumer)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"append(Consumer>)","u":"append(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"appendClassInitializer(ConfigInitializeHandler, Object>)","u":"appendClassInitializer(cc.carm.lib.configuration.source.loader.ConfigInitializeHandler)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"appendFieldInitializer(ConfigInitializeHandler>)","u":"appendFieldInitializer(cc.carm.lib.configuration.source.loader.ConfigInitializeHandler)"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapCreator","l":"asHashMap()"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapCreator","l":"asLinkedMap()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"asMap()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"asMap()"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapCreator","l":"asTreeMap()"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapCreator","l":"asTreeMap(Comparator)","u":"asTreeMap(java.util.Comparator)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"BOOLEAN"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"BOOLEAN_TYPE"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"booleanValue()"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"build()"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator.Section","l":"build()"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator.Source","l":"build()"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"build()"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"build()"},{"p":"cc.carm.lib.configuration.builder.value","c":"SectionValueBuilder","l":"build()"},{"p":"cc.carm.lib.configuration.builder.value","c":"SourceValueBuilder","l":"build()"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"build()"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator.CollectionValueFactory","l":"build(ValueManifest, Supplier, ValueAdapter)","u":"build(cc.carm.lib.configuration.value.ValueManifest,java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueAdapter)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSectionBuilder","l":"buildAdapter()"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"buildAdapter()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"builderOf(Class, Class)","u":"builderOf(java.lang.Class,java.lang.Class)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"builderOf(Class)","u":"builderOf(java.lang.Class)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"builderOf(Class)","u":"builderOf(java.lang.Class)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"builderOf(Class)","u":"builderOf(java.lang.Class)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"builderOf(ValueType, ValueType)","u":"builderOf(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"builderOf(ValueType)","u":"builderOf(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"builderOf(ValueType)","u":"builderOf(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"buildKeyAdapter()"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"buildKeyAdapter()"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"buildManifest()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"BYTE"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"BYTE_TYPE"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"byteValue()"},{"p":"cc.carm.lib.configuration.value.impl","c":"CachedConfigValue","l":"CachedConfigValue(ValueManifest)","u":"%3Cinit%3E(cc.carm.lib.configuration.value.ValueManifest)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CachedConfigValue","l":"cachedValue"},{"p":"cc.carm.lib.configuration.value.impl","c":"CachedConfigValue","l":"cacheExpired()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"cast(Object)","u":"cast(java.lang.Object)"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"castFromString(Class)","u":"castFromString(java.lang.Class)"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"castObject(Class)","u":"castObject(java.lang.Class)"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"castToString()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"CHAR"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"CHAR_TYPE"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"childPath(String)","u":"childPath(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"classInitializer"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"classInitializer()"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"classInitializer(ConfigInitializeHandler, Object>)","u":"classInitializer(cc.carm.lib.configuration.source.loader.ConfigInitializeHandler)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"clear()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"clear()"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOptionHolder","l":"clear(ConfigurationOption)","u":"clear(cc.carm.lib.configuration.source.option.ConfigurationOption)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"CollectionConfigValue(ValueManifest, Supplier, ValueAdapter)","u":"%3Cinit%3E(cc.carm.lib.configuration.value.ValueManifest,java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueAdapter)"},{"p":"cc.carm.lib.configuration.builder","c":"CommonConfigBuilder","l":"CommonConfigBuilder(ValueType)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigInitializeHandler","l":"compose(ConfigInitializeHandler)","u":"compose(cc.carm.lib.configuration.source.loader.ConfigInitializeHandler)"},{"p":"cc.carm.lib.configuration.function","c":"ValueHandler","l":"compose(DataFunction)","u":"compose(cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.function","c":"DataValidator","l":"compose(DataValidator)","u":"compose(cc.carm.lib.configuration.function.DataValidator)"},{"p":"cc.carm.lib.configuration.function","c":"ValueHandler","l":"compose(ValueHandler)","u":"compose(cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"computeSection(String)","u":"computeSection(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"computeSection(String, Consumer>)","u":"computeSection(java.lang.String,java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"computeSection(String, Map)","u":"computeSection(java.lang.String,java.util.Map)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"computeSection(String, Supplier>)","u":"computeSection(java.lang.String,java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"config()"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"config()"},{"p":"cc.carm.lib.configuration.builder.list","c":"ConfigListCreator","l":"ConfigListCreator(ValueType)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"ConfigMapBuilder(Supplier, ValueType, ValueType)","u":"%3Cinit%3E(java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapCreator","l":"ConfigMapCreator(ValueType, ValueType)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"ConfigurationFactory()","u":"%3Cinit%3E()"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"ConfigurationHolder(ValueAdapterRegistry, ConfigurationOptionHolder, Map, ConfigurationInitializer)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueAdapterRegistry,cc.carm.lib.configuration.source.option.ConfigurationOptionHolder,java.util.Map,cc.carm.lib.configuration.source.loader.ConfigurationInitializer)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"ConfigurationHolder(ValueAdapterRegistry, ConfigurationOptionHolder, Map, ConfigurationInitializer, ConfigExceptionHandler)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueAdapterRegistry,cc.carm.lib.configuration.source.option.ConfigurationOptionHolder,java.util.Map,cc.carm.lib.configuration.source.loader.ConfigurationInitializer,cc.carm.lib.configuration.function.ConfigExceptionHandler)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"ConfigurationInitializer()","u":"%3Cinit%3E()"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"ConfigurationInitializer(PathGenerator, ConfigInitializeHandler>, ConfigInitializeHandler, Object>)","u":"%3Cinit%3E(cc.carm.lib.configuration.source.loader.PathGenerator,cc.carm.lib.configuration.source.loader.ConfigInitializeHandler,cc.carm.lib.configuration.source.loader.ConfigInitializeHandler)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"ConfigurationMetadata(Supplier)","u":"%3Cinit%3E(java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetaHolder","l":"ConfigurationMetaHolder()","u":"%3Cinit%3E()"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetaHolder","l":"ConfigurationMetaHolder(Map, Object>)","u":"%3Cinit%3E(java.util.Map)"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOption","l":"ConfigurationOption(V)","u":"%3Cinit%3E(V)"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOptionHolder","l":"ConfigurationOptionHolder()","u":"%3Cinit%3E()"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOptionHolder","l":"ConfigurationOptionHolder(Map, Object>)","u":"%3Cinit%3E(java.util.Map)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"ConfiguredList(ValueManifest, V>, Supplier>, ValueAdapter)","u":"%3Cinit%3E(cc.carm.lib.configuration.value.ValueManifest,java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueAdapter)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"ConfiguredMap(ValueManifest, V>, Supplier>, ValueAdapter, ValueAdapter)","u":"%3Cinit%3E(cc.carm.lib.configuration.value.ValueManifest,java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueAdapter,cc.carm.lib.configuration.adapter.ValueAdapter)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"ConfiguredValue(ValueManifest, ValueAdapter)","u":"%3Cinit%3E(cc.carm.lib.configuration.value.ValueManifest,cc.carm.lib.configuration.adapter.ValueAdapter)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"ConfigureSource(ConfigurationHolder, long)","u":"%3Cinit%3E(cc.carm.lib.configuration.source.ConfigurationHolder,long)"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"ConfigValue(ValueManifest)","u":"%3Cinit%3E(cc.carm.lib.configuration.value.ValueManifest)"},{"p":"cc.carm.lib.configuration.builder.value","c":"ConfigValueBuilder","l":"ConfigValueBuilder(ValueType)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SectionCollectionBuilder","l":"construct(C)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SourceCollectionBuilder","l":"construct(C)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SectionCollectionBuilder","l":"constructor"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SourceCollectionBuilder","l":"constructor"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"constructor"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"constructor"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"constructor"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"constructor"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"constructor"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapCreator","l":"constructor(Class)","u":"constructor(java.lang.Class)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SectionCollectionBuilder","l":"constructor(Supplier)","u":"constructor(java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SourceCollectionBuilder","l":"constructor(Supplier)","u":"constructor(java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapCreator","l":"constructor(Supplier)","u":"constructor(java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"constructor(Supplier)","u":"constructor(java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetaHolder","l":"contains(ConfigurationMetadata)","u":"contains(cc.carm.lib.configuration.source.meta.ConfigurationMetadata)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"contains(Object)","u":"contains(java.lang.Object)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"contains(String)","u":"contains(java.lang.String)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"containsAll(Collection)","u":"containsAll(java.util.Collection)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"containsKey(Object)","u":"containsKey(java.lang.Object)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"containsValue(Object)","u":"containsValue(java.lang.Object)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"containsValue(String)","u":"containsValue(java.lang.String)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"copy()"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"covertPath(String)","u":"covertPath(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"covertPathName(String)","u":"covertPathName(java.lang.String)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator","l":"create(ValueType, Supplier, SimpleCollectionCreator.CollectionValueFactory)","u":"create(cc.carm.lib.configuration.adapter.ValueType,java.util.function.Supplier,cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.CollectionValueFactory)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"createSection(String)","u":"createSection(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"createSection(String, Consumer>)","u":"createSection(java.lang.String,java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"createSection(String, Map)","u":"createSection(java.lang.String,java.util.Map)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"createSection(String, Map)","u":"createSection(java.lang.String,java.util.Map)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"createSection(String, Supplier>)","u":"createSection(java.lang.String,java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator","l":"defaultConstructor"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"defaultOrSupply(Supplier)","u":"defaultOrSupply(java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"defaultOrSupply(T)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"defaults()"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOption","l":"defaults()"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"defaults()"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SectionCollectionBuilder","l":"defaults(Consumer)","u":"defaults(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SourceCollectionBuilder","l":"defaults(Consumer)","u":"defaults(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"defaults(Consumer)","u":"defaults(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"defaults(Consumer)","u":"defaults(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"defaults(K, V)","u":"defaults(K,V)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"defaults(K, V)","u":"defaults(K,V)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"defaults(MAP)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"defaults(MAP)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"defaults(Supplier)","u":"defaults(java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"defaults(Supplier)","u":"defaults(java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"defaults(TYPE)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"defaults(TYPE)"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOption","l":"defaults(V)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SectionCollectionBuilder","l":"defaults(V...)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SourceCollectionBuilder","l":"defaults(V...)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"defaultsSupplier"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"defaultSupplier"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"defaultValueSupplier"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"deserialize(Class, Object)","u":"deserialize(java.lang.Class,java.lang.Object)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"deserialize(ConfigurationHolder, Class, Object)","u":"deserialize(cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.Class,java.lang.Object)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"deserialize(ConfigurationHolder, ValueType, Object)","u":"deserialize(cc.carm.lib.configuration.source.ConfigurationHolder,cc.carm.lib.configuration.adapter.ValueType,java.lang.Object)"},{"p":"cc.carm.lib.configuration.function","c":"ValueHandler","l":"deserialize(ValueType)","u":"deserialize(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"deserialize(ValueType, Object)","u":"deserialize(cc.carm.lib.configuration.adapter.ValueType,java.lang.Object)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"deserializeList(ConfigurationHolder, ValueType, Object)","u":"deserializeList(cc.carm.lib.configuration.source.ConfigurationHolder,cc.carm.lib.configuration.adapter.ValueType,java.lang.Object)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"deserializer"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"DOUBLE"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"DOUBLE_TYPE"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"doubleValue()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"entrySet()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"StandardAdapters","l":"ENUMS"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"exceptionally(ConfigExceptionHandler)","u":"exceptionally(cc.carm.lib.configuration.function.ConfigExceptionHandler)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"exceptionally(ConfigExceptionHandler)","u":"exceptionally(cc.carm.lib.configuration.function.ConfigExceptionHandler)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"exceptionHandler"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"exceptionHandler"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"extractMetadata(ConfigurationMetadata)","u":"extractMetadata(cc.carm.lib.configuration.source.meta.ConfigurationMetadata)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"extractMetadata(ConfigurationMetadata, Predicate)","u":"extractMetadata(cc.carm.lib.configuration.source.meta.ConfigurationMetadata,java.util.function.Predicate)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator","l":"factory"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator.Section","l":"factory"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator.Source","l":"factory"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"FALSE_VALUES"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"fieldInitializer()"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"fieldInitializer(ConfigInitializeHandler>)","u":"fieldInitializer(cc.carm.lib.configuration.source.loader.ConfigInitializeHandler)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"FLOAT"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"FLOAT_TYPE"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"floatValue()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"forEach(BiConsumer)","u":"forEach(java.util.function.BiConsumer)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator","l":"from(Class)","u":"from(java.lang.Class)"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"from(Class)","u":"from(java.lang.Class)"},{"p":"cc.carm.lib.configuration.builder.value","c":"ConfigValueBuilder","l":"from(Class)","u":"from(java.lang.Class)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator","l":"from(ValueType)","u":"from(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"from(ValueType)","u":"from(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.builder.value","c":"ConfigValueBuilder","l":"from(ValueType)","u":"from(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.builder.value","c":"ConfigValueBuilder","l":"from(ValueType, ValueHandler, ValueHandler)","u":"from(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"from(ValueType, ValueHandler, ValueHandler, ValueHandler, ValueHandler)","u":"from(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator","l":"fromObject()"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"fromObject()"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator","l":"fromSection()"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"fromSection()"},{"p":"cc.carm.lib.configuration.builder.value","c":"ConfigValueBuilder","l":"fromSection()"},{"p":"cc.carm.lib.configuration.builder.value","c":"ConfigValueBuilder","l":"fromSection(ValueHandler, ValueHandler>)","u":"fromSection(cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"fromSection(ValueHandler, ValueHandler, ValueHandler, ValueHandler>)","u":"fromSection(cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator","l":"fromString()"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"fromString()"},{"p":"cc.carm.lib.configuration.builder.value","c":"ConfigValueBuilder","l":"fromString()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"fullPath()"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"get()"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"get()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"get()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"get()"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetaHolder","l":"get(ConfigurationMetadata)","u":"get(cc.carm.lib.configuration.source.meta.ConfigurationMetadata)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetaHolder","l":"get(ConfigurationMetadata, Supplier)","u":"get(cc.carm.lib.configuration.source.meta.ConfigurationMetadata,java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetaHolder","l":"get(ConfigurationMetadata, V)","u":"get(cc.carm.lib.configuration.source.meta.ConfigurationMetadata,V)"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOptionHolder","l":"get(ConfigurationOption)","u":"get(cc.carm.lib.configuration.source.option.ConfigurationOption)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"get(int)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"get(Object)","u":"get(java.lang.Object)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"get(String)","u":"get(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"get(String)","u":"get(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"get(String, Class)","u":"get(java.lang.String,java.lang.Class)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"get(String, DataFunction)","u":"get(java.lang.String,cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"get(String, T, Class)","u":"get(java.lang.String,T,java.lang.Class)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"get(String, T, DataFunction)","u":"get(java.lang.String,T,cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getBoolean(String)","u":"getBoolean(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getBoolean(String, Boolean)","u":"getBoolean(java.lang.String,java.lang.Boolean)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getByte(String)","u":"getByte(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getByte(String, Byte)","u":"getByte(java.lang.String,java.lang.Byte)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getByteList(String)","u":"getByteList(java.lang.String)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CachedConfigValue","l":"getCachedOrDefault()"},{"p":"cc.carm.lib.configuration.value.impl","c":"CachedConfigValue","l":"getCachedOrDefault(T)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CachedConfigValue","l":"getCachedValue()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getChar(String)","u":"getChar(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getChar(String, Character)","u":"getChar(java.lang.String,java.lang.Character)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getCharList(String)","u":"getCharList(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"getClassPath(ConfigurationHolder, String, Class, Field)","u":"getClassPath(cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.String,java.lang.Class,java.lang.reflect.Field)"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"getClassPath(ConfigurationHolder, String, Class, Field)","u":"getClassPath(cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.String,java.lang.Class,java.lang.reflect.Field)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getCollection(String, Supplier, DataFunction)","u":"getCollection(java.lang.String,java.util.function.Supplier,cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"getData()"},{"p":"cc.carm.lib.configuration.value.impl","c":"CachedConfigValue","l":"getDefaultFirst(T)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getDouble(String)","u":"getDouble(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getDouble(String, Double)","u":"getDouble(java.lang.String,java.lang.Double)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getDoubleList(String)","u":"getDoubleList(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"getFieldPath(ConfigurationHolder, String, Field)","u":"getFieldPath(cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.String,java.lang.reflect.Field)"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"getFieldPath(ConfigurationHolder, String, Field)","u":"getFieldPath(cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.String,java.lang.reflect.Field)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getFloat(String)","u":"getFloat(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getFloat(String, Float)","u":"getFloat(java.lang.String,java.lang.Float)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getFloatList(String)","u":"getFloatList(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getInt(String)","u":"getInt(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getInt(String, Integer)","u":"getInt(java.lang.String,java.lang.Integer)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getIntegerList(String)","u":"getIntegerList(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getKeys(boolean)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"getKeys(boolean)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"getLastUpdateMillis()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getList(String)","u":"getList(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getList(String, DataFunction)","u":"getList(java.lang.String,cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getLong(String)","u":"getLong(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getLong(String, Long)","u":"getLong(java.lang.String,java.lang.Long)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getLongList(String)","u":"getLongList(java.lang.String)"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"getNotNull()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"getNotNull(K)"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"getOr(T)"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"getOrDefault()"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"getPathConverter()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"getRawType()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getSection(String)","u":"getSection(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getSectionList(String)","u":"getSectionList(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getShort(String)","u":"getShort(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getShort(String, Short)","u":"getShort(java.lang.String,java.lang.Short)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getString(String)","u":"getString(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getString(String, String)","u":"getString(java.lang.String,java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getStringList(String)","u":"getStringList(java.lang.String)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"getType()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"getValues(boolean)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"getValues(boolean)"},{"p":"cc.carm.lib.configuration.function","c":"ValueHandler","l":"handle(ConfigurationHolder, T)","u":"handle(cc.carm.lib.configuration.source.ConfigurationHolder,T)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"handle(Function)","u":"handle(java.util.function.Function)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"handle(Function, T>)","u":"handle(java.util.function.Function)"},{"p":"cc.carm.lib.configuration.function","c":"ConfigExceptionHandler","l":"handle(String, Throwable)","u":"handle(java.lang.String,java.lang.Throwable)"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"handle(T)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"hasDefaults()"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"hasDefaults()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"hashCode()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"hashCode()"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"holder"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"holder"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"holder"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"holder()"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"holder()"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"holder(ConfigurationHolder)","u":"holder(cc.carm.lib.configuration.source.ConfigurationHolder)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"holder(HOLDER)"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"identity()"},{"p":"cc.carm.lib.configuration.function","c":"ValueHandler","l":"identity()"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"identity(Class)","u":"identity(java.lang.Class)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"indexOf(Object)","u":"indexOf(java.lang.Object)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"initialize()"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"initialize(Class)","u":"initialize(java.lang.Class)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"initialize(Configuration)","u":"initialize(cc.carm.lib.configuration.Configuration)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"initialize(ConfigurationHolder, Class)","u":"initialize(cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.Class)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"initialize(ConfigurationHolder, Configuration)","u":"initialize(cc.carm.lib.configuration.source.ConfigurationHolder,cc.carm.lib.configuration.Configuration)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"initialize(ConfigurationHolder, String)","u":"initialize(cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.String)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"initialize(ValueManifest)","u":"initialize(cc.carm.lib.configuration.value.ValueManifest)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"initializeField(ConfigurationHolder, Object, Field, String)","u":"initializeField(cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.Object,java.lang.reflect.Field,java.lang.String)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"initializeInstance(ConfigurationHolder, Configuration, String, Field)","u":"initializeInstance(cc.carm.lib.configuration.source.ConfigurationHolder,cc.carm.lib.configuration.Configuration,java.lang.String,java.lang.reflect.Field)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"initializer"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"initializer"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"initializer"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"initializer"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"initializer()"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"initializer(BiConsumer, String>)","u":"initializer(java.util.function.BiConsumer)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"initializer(ConfigurationInitializer)","u":"initializer(cc.carm.lib.configuration.source.loader.ConfigurationInitializer)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"initializer(Consumer)","u":"initializer(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"initializeStaticClass(ConfigurationHolder, Class, String, Field)","u":"initializeStaticClass(cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.Class,java.lang.String,java.lang.reflect.Field)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"INTEGER"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"INTEGER_TYPE"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"intValue()"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"isBlank(String)","u":"isBlank(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isBoolean(String)","u":"isBoolean(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isByte(String)","u":"isByte(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isChar(String)","u":"isChar(java.lang.String)"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"isDefault()"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"isDefault(T)"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOption","l":"isDefault(V)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isDouble(String)","u":"isDouble(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isEmpty()"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"isEmpty()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"isEmpty()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"isExpired(long)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isFloat(String)","u":"isFloat(java.lang.String)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"isInstance(Object)","u":"isInstance(java.lang.Object)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isInt(String)","u":"isInt(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isList(String)","u":"isList(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isLong(String)","u":"isLong(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isRoot()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isSection(String)","u":"isSection(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isShort(String)","u":"isShort(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isString(String)","u":"isString(java.lang.String)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"isSubtypeOf(Class)","u":"isSubtypeOf(java.lang.Class)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"isSubtypeOf(ValueType)","u":"isSubtypeOf(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"isType(String, Class)","u":"isType(java.lang.String,java.lang.Class)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"iterator()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"keyAdapter"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"keyAdapter()"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"keyParser"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"keyParser"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"keys()"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"keySerializer"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"keySerializer"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"keySet()"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"keyType"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapCreator","l":"keyType"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"keyType"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"keyType"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"keyType()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"lastIndexOf(Object)","u":"lastIndexOf(java.lang.Object)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"lastUpdateMillis"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"link(ConfigurationHolder, String, boolean, String)","u":"link(cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.String,boolean,java.lang.String)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"listIterator()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"listIterator(int)"},{"p":"cc.carm.lib.configuration.source.option","c":"StandardOptions","l":"LOAD_SUB_CLASSES"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"LONG"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"LONG_TYPE"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"longValue()"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"meta(ConfigurationMetadata, M)","u":"meta(cc.carm.lib.configuration.source.meta.ConfigurationMetadata,M)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"meta(Consumer)","u":"meta(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"metaAnnotation(Class, ConfigurationMetadata, Function)","u":"metaAnnotation(java.lang.Class,cc.carm.lib.configuration.source.meta.ConfigurationMetadata,java.util.function.Function)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"metadata"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"metadata"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"metadata()"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"metadata()"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"metadata(Consumer>)","u":"metadata(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"metadata(Map)","u":"metadata(java.util.Map)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"metadata(String)","u":"metadata(java.lang.String)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"metadata(String, ConfigurationMetaHolder)","u":"metadata(java.lang.String,cc.carm.lib.configuration.source.meta.ConfigurationMetaHolder)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"metadata(String, Consumer)","u":"metadata(java.lang.String,java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"modify(Consumer)","u":"modify(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"modify(Consumer>)","u":"modify(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.function","c":"ValueValidator","l":"none()"},{"p":"cc.carm.lib.configuration.function","c":"ValueValidator","l":"nonnull()"},{"p":"cc.carm.lib.configuration.function","c":"ValueValidator","l":"nonnull(String)","u":"nonnull(java.lang.String)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"OBJECT"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"of()"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"of()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"of(Class, Type...)","u":"of(java.lang.Class,java.lang.reflect.Type...)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"of(Class)","u":"of(java.lang.Class)"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"of(Class, DataFunction)","u":"of(java.lang.Class,cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"of(Class)","u":"of(java.lang.Class)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"of(Class, Supplier)","u":"of(java.lang.Class,java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"of(Class, V)","u":"of(java.lang.Class,V)"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOptionHolder","l":"of(Map, Object>)","u":"of(java.util.Map)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"of(Supplier>, ValueAdapter, ValueAdapter)","u":"of(java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueAdapter,cc.carm.lib.configuration.adapter.ValueAdapter)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"of(Supplier)","u":"of(java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOption","l":"of(Supplier)","u":"of(java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"of(T)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"of(T)"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOption","l":"of(T)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"of(T, T...)","u":"of(T,T...)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"of(Type)","u":"of(java.lang.reflect.Type)"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"of(UnaryOperator)","u":"of(java.util.function.UnaryOperator)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"of(V)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"of(ValueManifest, ValueAdapter)","u":"of(cc.carm.lib.configuration.value.ValueManifest,cc.carm.lib.configuration.adapter.ValueAdapter)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"of(ValueManifest, ValueParser, ValueSerializer)","u":"of(cc.carm.lib.configuration.value.ValueManifest,cc.carm.lib.configuration.adapter.ValueParser,cc.carm.lib.configuration.adapter.ValueSerializer)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"of(ValueType)","u":"of(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"of(ValueType, Supplier)","u":"of(cc.carm.lib.configuration.adapter.ValueType,java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofBoolean()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofBooleanType()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofByte()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofByteType()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofCharacter()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofCharacterType()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofDouble()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofDoubleType()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofEnum()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofFloat()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofFloatType()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofInteger()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofIntegerType()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"ofList(Class)","u":"ofList(java.lang.Class)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"ofList(ValueType)","u":"ofList(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofLong()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofLongType()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"ofMap(Class, Class)","u":"ofMap(java.lang.Class,java.lang.Class)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"ofMap(ValueType, ValueType)","u":"ofMap(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofNumber(Class, DataFunction, DataFunction)","u":"ofNumber(java.lang.Class,cc.carm.lib.configuration.function.DataFunction,cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofShort()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofShortType()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"ofString()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"onReload()"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"option(ConfigurationOption)","u":"option(cc.carm.lib.configuration.source.option.ConfigurationOption)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"option(ConfigurationOption, Consumer)","u":"option(cc.carm.lib.configuration.source.option.ConfigurationOption,java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"option(ConfigurationOption, O)","u":"option(cc.carm.lib.configuration.source.option.ConfigurationOption,O)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"option(ConfigurationOption, Supplier)","u":"option(cc.carm.lib.configuration.source.option.ConfigurationOption,java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"option(Consumer)","u":"option(java.util.function.Consumer)"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"optional()"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"options"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"options"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOptionHolder","l":"options"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"options()"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"options(ConfigurationOptionHolder)","u":"options(cc.carm.lib.configuration.source.option.ConfigurationOptionHolder)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"original()"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"paramAdapter"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSectionBuilder","l":"paramType"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"paramType"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"paramType()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"parent()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"parent()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"parse(ConfigurationHolder, ValueType, Object)","u":"parse(cc.carm.lib.configuration.source.ConfigurationHolder,cc.carm.lib.configuration.adapter.ValueType,java.lang.Object)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueParser","l":"parse(ConfigurationHolder, ValueType, Object)","u":"parse(cc.carm.lib.configuration.source.ConfigurationHolder,cc.carm.lib.configuration.adapter.ValueType,java.lang.Object)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSectionBuilder","l":"parse(DataFunction)","u":"parse(cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"parse(DataFunction)","u":"parse(cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSectionBuilder","l":"parse(ValueHandler)","u":"parse(cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"parse(ValueHandler)","u":"parse(cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"parseCollection(List, Supplier, DataFunction)","u":"parseCollection(java.util.List,java.util.function.Supplier,cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CachedConfigValue","l":"parsedTime"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"parseKey(DataFunction)","u":"parseKey(cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"parseKey(DataFunction)","u":"parseKey(cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"parseKey(ValueHandler)","u":"parseKey(cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"parseKey(ValueHandler)","u":"parseKey(cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSectionBuilder","l":"parser"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"parser()"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"parser()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"parser()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"parser(ValueParser)","u":"parser(cc.carm.lib.configuration.adapter.ValueParser)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"parser(ValueParser)","u":"parser(cc.carm.lib.configuration.adapter.ValueParser)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CachedConfigValue","l":"parserFor(ValueAdapter)","u":"parserFor(cc.carm.lib.configuration.adapter.ValueAdapter)"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"parseString(Class)","u":"parseString(java.lang.Class)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"path"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"path"},{"p":"cc.carm.lib.configuration.source.option","c":"StandardOptions","l":"PATH_SEPARATOR"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"path()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"path()"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"path()"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"path(String)","u":"path(java.lang.String)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"path(String)","u":"path(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"pathConverter"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"pathGenerator"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"pathGenerator()"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"pathGenerator(PathGenerator)","u":"pathGenerator(cc.carm.lib.configuration.source.loader.PathGenerator)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"pathGenerator(PathGenerator)","u":"pathGenerator(cc.carm.lib.configuration.source.loader.PathGenerator)"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"PathGenerator(UnaryOperator)","u":"%3Cinit%3E(java.util.function.UnaryOperator)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"pathSeparator()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"pathSeparator()"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"pathSeparator(ConfigurationHolder)","u":"pathSeparator(cc.carm.lib.configuration.source.ConfigurationHolder)"},{"p":"cc.carm.lib.configuration.source.option","c":"StandardOptions","l":"PRELOAD"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"PRIMITIVE_TYPES"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"PrimitiveAdapter(Class, ValueParser)","u":"%3Cinit%3E(java.lang.Class,cc.carm.lib.configuration.adapter.ValueParser)"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"StandardAdapters","l":"PRIMITIVES"},{"p":"cc.carm.lib.configuration.function","c":"ConfigExceptionHandler","l":"print()"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"providerClass"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"put(K, V)","u":"put(K,V)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"putAll(Map)","u":"putAll(java.util.Map)"},{"p":"cc.carm.lib.configuration.function","c":"ValueValidator","l":"range(V, V)","u":"range(V,V)"},{"p":"cc.carm.lib.configuration.function","c":"ValueValidator","l":"range(V, V, String)","u":"range(V,V,java.lang.String)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"register(Class, Class, DataFunction, DataFunction)","u":"register(java.lang.Class,java.lang.Class,cc.carm.lib.configuration.function.DataFunction,cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"register(Class, ValueParser)","u":"register(java.lang.Class,cc.carm.lib.configuration.adapter.ValueParser)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"register(Class, ValueSerializer)","u":"register(java.lang.Class,cc.carm.lib.configuration.adapter.ValueSerializer)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"register(ValueAdapter...)","u":"register(cc.carm.lib.configuration.adapter.ValueAdapter...)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"register(ValueType, ValueType, DataFunction, DataFunction)","u":"register(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.DataFunction,cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"register(ValueType, ValueParser)","u":"register(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueParser)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"register(ValueType, ValueSerializer)","u":"register(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueSerializer)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"register(ValueType, ValueSerializer, ValueParser)","u":"register(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueSerializer,cc.carm.lib.configuration.adapter.ValueParser)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"registerAnnotation(Class, ConfigurationMetadata, Function)","u":"registerAnnotation(java.lang.Class,cc.carm.lib.configuration.source.meta.ConfigurationMetadata,java.util.function.Function)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"registerClassAnnotation(Class, ConfigurationMetadata, Function)","u":"registerClassAnnotation(java.lang.Class,cc.carm.lib.configuration.source.meta.ConfigurationMetadata,java.util.function.Function)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"registeredValues()"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"registerFieldAnnotation(Class, ConfigurationMetadata, Function)","u":"registerFieldAnnotation(java.lang.Class,cc.carm.lib.configuration.source.meta.ConfigurationMetadata,java.util.function.Function)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"registerValidAnnotation(Class, Function>)","u":"registerValidAnnotation(java.lang.Class,java.util.function.Function)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"reload()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"reload()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"remove(int)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"remove(Object)","u":"remove(java.lang.Object)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"remove(Object)","u":"remove(java.lang.Object)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"remove(String)","u":"remove(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"remove(String)","u":"remove(java.lang.String)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"removeAll(Collection)","u":"removeAll(java.util.Collection)"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"required()"},{"p":"cc.carm.lib.configuration.function","c":"ValueHandler","l":"required()"},{"p":"cc.carm.lib.configuration.function","c":"ValueHandler","l":"required(ValueType)","u":"required(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"resolve()"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"retainAll(Collection)","u":"retainAll(java.util.Collection)"},{"p":"cc.carm.lib.configuration.annotation","c":"ConfigPath","l":"root()"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"save()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"save()"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"save()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"section()"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator.Section","l":"Section(Supplier, ValueType, ValueHandler, ValueHandler>, SimpleCollectionCreator.CollectionValueFactory)","u":"%3Cinit%3E(java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.CollectionValueFactory)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SectionCollectionBuilder","l":"SectionCollectionBuilder(Supplier, ValueType, ValueHandler, ValueHandler>)","u":"%3Cinit%3E(java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"SectionMapBuilder(Supplier, ValueType, ValueType, ValueHandler, ValueHandler, ValueHandler, ValueHandler>)","u":"%3Cinit%3E(java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"StandardAdapters","l":"SECTIONS"},{"p":"cc.carm.lib.configuration.builder.value","c":"SectionValueBuilder","l":"SectionValueBuilder(ValueType, ValueHandler, ValueHandler>)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"select(String, String)","u":"select(java.lang.String,java.lang.String)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"self()"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator.Section","l":"self()"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator.Source","l":"self()"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"self()"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"self()"},{"p":"cc.carm.lib.configuration.builder.value","c":"SectionValueBuilder","l":"self()"},{"p":"cc.carm.lib.configuration.builder.value","c":"SourceValueBuilder","l":"self()"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"self()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"self()"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"self()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"self()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"serialize(ConfigurationHolder, T)","u":"serialize(cc.carm.lib.configuration.source.ConfigurationHolder,T)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"serialize(ConfigurationHolder, ValueType, TYPE)","u":"serialize(cc.carm.lib.configuration.source.ConfigurationHolder,cc.carm.lib.configuration.adapter.ValueType,TYPE)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueSerializer","l":"serialize(ConfigurationHolder, ValueType, TYPE)","u":"serialize(cc.carm.lib.configuration.source.ConfigurationHolder,cc.carm.lib.configuration.adapter.ValueType,TYPE)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSectionBuilder","l":"serialize(DataFunction>)","u":"serialize(cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"serialize(DataFunction)","u":"serialize(cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"serialize(T)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSectionBuilder","l":"serialize(ValueComposer, UNIT>)","u":"serialize(cc.carm.lib.configuration.function.ValueComposer)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSectionBuilder","l":"serialize(ValueHandler>)","u":"serialize(cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"serialize(ValueHandler)","u":"serialize(cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"serializeKey(DataFunction)","u":"serializeKey(cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"serializeKey(DataFunction)","u":"serializeKey(cc.carm.lib.configuration.function.DataFunction)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SectionMapBuilder","l":"serializeKey(ValueHandler)","u":"serializeKey(cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"serializeKey(ValueHandler)","u":"serializeKey(cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"serializer"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSectionBuilder","l":"serializer"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"serializer()"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"serializer()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"serializer()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"serializer(ValueSerializer)","u":"serializer(cc.carm.lib.configuration.adapter.ValueSerializer)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"serializer(ValueSerializer)","u":"serializer(cc.carm.lib.configuration.adapter.ValueSerializer)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CachedConfigValue","l":"serializerFor(ValueAdapter)","u":"serializerFor(cc.carm.lib.configuration.adapter.ValueAdapter)"},{"p":"cc.carm.lib.configuration.source.option","c":"StandardOptions","l":"SET_DEFAULTS"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"set(C)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetaHolder","l":"set(ConfigurationMetadata, V)","u":"set(cc.carm.lib.configuration.source.meta.ConfigurationMetadata,V)"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOptionHolder","l":"set(ConfigurationOption, V)","u":"set(cc.carm.lib.configuration.source.option.ConfigurationOption,V)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"set(int, V)","u":"set(int,V)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"set(Map)","u":"set(java.util.Map)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"set(String, Object)","u":"set(java.lang.String,java.lang.Object)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSource","l":"set(String, Object)","u":"set(java.lang.String,java.lang.Object)"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"set(T)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"set(V)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"setData(Object)","u":"setData(java.lang.Object)"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"setDefault()"},{"p":"cc.carm.lib.configuration.value","c":"ConfigValue","l":"setDefault(boolean)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"setDefaults(Supplier)","u":"setDefaults(java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetadata","l":"setDefaults(T)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetaHolder","l":"setIfAbsent(ConfigurationMetadata, V)","u":"setIfAbsent(cc.carm.lib.configuration.source.meta.ConfigurationMetadata,V)"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetaHolder","l":"setIfPresent(ConfigurationMetadata, V)","u":"setIfPresent(cc.carm.lib.configuration.source.meta.ConfigurationMetadata,V)"},{"p":"cc.carm.lib.configuration.source.loader","c":"PathGenerator","l":"setPathConverter(UnaryOperator)","u":"setPathConverter(java.util.function.UnaryOperator)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"SHORT"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"SHORT_TYPE"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"shortValue()"},{"p":"cc.carm.lib.configuration.function","c":"ConfigExceptionHandler","l":"silence()"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator","l":"SimpleCollectionCreator(ValueType, Supplier, SimpleCollectionCreator.CollectionValueFactory)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType,java.util.function.Supplier,cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.CollectionValueFactory)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"size()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"size()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"size(boolean)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator.Source","l":"Source(Supplier, ValueType, ValueType, ValueHandler, ValueHandler, SimpleCollectionCreator.CollectionValueFactory)","u":"%3Cinit%3E(java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.builder.collection.SimpleCollectionCreator.CollectionValueFactory)"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SourceCollectionBuilder","l":"SourceCollectionBuilder(Supplier, ValueType, ValueType, ValueHandler, ValueHandler)","u":"%3Cinit%3E(java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.map","c":"SourceMapBuilder","l":"SourceMapBuilder(Supplier, ValueType, ValueType, ValueType, ValueHandler, ValueHandler, ValueHandler, ValueHandler)","u":"%3Cinit%3E(java.util.function.Supplier,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"sourceType"},{"p":"cc.carm.lib.configuration.builder.value","c":"SourceValueBuilder","l":"SourceValueBuilder(ValueType, ValueType, ValueHandler, ValueHandler)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.function.ValueHandler,cc.carm.lib.configuration.function.ValueHandler)"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigInitializeHandler","l":"start()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"stream()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"stream(String)","u":"stream(java.lang.String)"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"stream(String, Function)","u":"stream(java.lang.String,java.util.function.Function)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"STRING"},{"p":"cc.carm.lib.configuration.function","c":"ValueHandler","l":"stringValue()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"subList(int, int)","u":"subList(int,int)"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationHolder","l":"throwing(String, Throwable)","u":"throwing(java.lang.String,java.lang.Throwable)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"throwing(String, Throwable)","u":"throwing(java.lang.String,java.lang.Throwable)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"throwing(Throwable)","u":"throwing(java.lang.Throwable)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"toArray()"},{"p":"cc.carm.lib.configuration.value.impl","c":"CollectionConfigValue","l":"toArray(T[])"},{"p":"cc.carm.lib.configuration.function","c":"DataFunction","l":"toObject()"},{"p":"cc.carm.lib.configuration.function","c":"ValueHandler","l":"toObject()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"toString()"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"PrimitiveAdapter","l":"TRUE_VALUES"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"type"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"type"},{"p":"cc.carm.lib.configuration.builder.collection","c":"SimpleCollectionCreator","l":"type"},{"p":"cc.carm.lib.configuration.builder.value","c":"ConfigValueBuilder","l":"type"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"type"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"type()"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"type()"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"type()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"unregister(Class)","u":"unregister(java.lang.Class)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"unregister(ValueType)","u":"unregister(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.value.impl","c":"CachedConfigValue","l":"updateCache(T)"},{"p":"cc.carm.lib.configuration.adapter.strandard","c":"StandardAdapters","l":"UUID"},{"p":"cc.carm.lib.configuration.source","c":"ConfigurationFactory","l":"validAnnotation(Class, Function>)","u":"validAnnotation(java.lang.Class,java.util.function.Function)"},{"p":"cc.carm.lib.configuration.function","c":"ValueValidator","l":"validate(ConfigurationHolder, T)","u":"validate(cc.carm.lib.configuration.source.ConfigurationHolder,T)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"validate(DataValidator)","u":"validate(cc.carm.lib.configuration.function.DataValidator)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"validate(Predicate, Exception)","u":"validate(java.util.function.Predicate,java.lang.Exception)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"validate(Predicate, String)","u":"validate(java.util.function.Predicate,java.lang.String)"},{"p":"cc.carm.lib.configuration.function","c":"DataValidator","l":"validate(T)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"validate(ValueValidator)","u":"validate(cc.carm.lib.configuration.function.ValueValidator)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"validate(ValueValidator)","u":"validate(cc.carm.lib.configuration.function.ValueValidator)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"validator"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"validator()"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"validator(DataValidator)","u":"validator(cc.carm.lib.configuration.function.DataValidator)"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"validator(ValueValidator)","u":"validator(cc.carm.lib.configuration.function.ValueValidator)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"validator(ValueValidator)","u":"validator(cc.carm.lib.configuration.function.ValueValidator)"},{"p":"cc.carm.lib.configuration.source.meta","c":"StandardMeta","l":"VALUE"},{"p":"cc.carm.lib.configuration.annotation","c":"ConfigPath","l":"value()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"valueAdapter"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"valueAdapter()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"ValueAdapter(ValueType)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapter","l":"ValueAdapter(ValueType, ValueSerializer, ValueParser)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueSerializer,cc.carm.lib.configuration.adapter.ValueParser)"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueAdapterRegistry","l":"ValueAdapterRegistry()","u":"%3Cinit%3E()"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigurationInitializer","l":"valueInitializer"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"ValueManifest(TYPE)","u":"%3Cinit%3E(TYPE)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"ValueManifest(ValueManifest)","u":"%3Cinit%3E(cc.carm.lib.configuration.value.ValueManifest)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"ValueManifest(ValueType)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"ValueManifest(ValueType, Supplier)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType,java.util.function.Supplier)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"ValueManifest(ValueType, Supplier, ValueValidator)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType,java.util.function.Supplier,cc.carm.lib.configuration.function.ValueValidator)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"ValueManifest(ValueType, Supplier, ValueValidator, BiConsumer, String>)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType,java.util.function.Supplier,cc.carm.lib.configuration.function.ValueValidator,java.util.function.BiConsumer)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"ValueManifest(ValueType, Supplier, ValueValidator, BiConsumer, String>, ConfigurationHolder, String)","u":"%3Cinit%3E(cc.carm.lib.configuration.adapter.ValueType,java.util.function.Supplier,cc.carm.lib.configuration.function.ValueValidator,java.util.function.BiConsumer,cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.String)"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"valueParser"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetaHolder","l":"values"},{"p":"cc.carm.lib.configuration.source.meta","c":"ConfigurationMetaHolder","l":"values()"},{"p":"cc.carm.lib.configuration.source.option","c":"ConfigurationOptionHolder","l":"values()"},{"p":"cc.carm.lib.configuration.source.section","c":"ConfigureSection","l":"values()"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"values()"},{"p":"cc.carm.lib.configuration.builder.impl","c":"AbstractSourceBuilder","l":"valueSerializer"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapBuilder","l":"valueType"},{"p":"cc.carm.lib.configuration.builder.map","c":"ConfigMapCreator","l":"valueType"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"valueType()"},{"p":"cc.carm.lib.configuration.adapter","c":"ValueType","l":"ValueType()","u":"%3Cinit%3E()"},{"p":"cc.carm.lib.configuration.builder","c":"AbstractConfigBuilder","l":"valueValidator"},{"p":"cc.carm.lib.configuration.source.loader","c":"ConfigInitializeHandler","l":"whenInitialize(ConfigurationHolder, String, T, V)","u":"whenInitialize(cc.carm.lib.configuration.source.ConfigurationHolder,java.lang.String,T,V)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"with(Class, Class)","u":"with(java.lang.Class,java.lang.Class)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"with(Class)","u":"with(java.lang.Class)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"with(Class)","u":"with(java.lang.Class)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredMap","l":"with(ValueType, ValueType)","u":"with(cc.carm.lib.configuration.adapter.ValueType,cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredList","l":"with(ValueType)","u":"with(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.value.standard","c":"ConfiguredValue","l":"with(ValueType)","u":"with(cc.carm.lib.configuration.adapter.ValueType)"},{"p":"cc.carm.lib.configuration.value","c":"ValueManifest","l":"withValidated(UNIT)"}];updateSearchResults(); \ No newline at end of file diff --git a/module-search-index.js b/module-search-index.js new file mode 100644 index 0000000..0d59754 --- /dev/null +++ b/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/overview-summary.html b/overview-summary.html new file mode 100644 index 0000000..0e284ba --- /dev/null +++ b/overview-summary.html @@ -0,0 +1,26 @@ + + + + +Configured - Core 4.2.0 API + + + + + + + + + + + +
+ +

index.html

+
+ + diff --git a/overview-tree.html b/overview-tree.html new file mode 100644 index 0000000..c33fb98 --- /dev/null +++ b/overview-tree.html @@ -0,0 +1,197 @@ + + + + +Class Hierarchy (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For All Packages

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+

Annotation Type Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/package-search-index.js b/package-search-index.js new file mode 100644 index 0000000..e77cf38 --- /dev/null +++ b/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"cc.carm.lib.configuration"},{"l":"cc.carm.lib.configuration.adapter"},{"l":"cc.carm.lib.configuration.adapter.strandard"},{"l":"cc.carm.lib.configuration.annotation"},{"l":"cc.carm.lib.configuration.builder"},{"l":"cc.carm.lib.configuration.builder.collection"},{"l":"cc.carm.lib.configuration.builder.impl"},{"l":"cc.carm.lib.configuration.builder.list"},{"l":"cc.carm.lib.configuration.builder.map"},{"l":"cc.carm.lib.configuration.builder.value"},{"l":"cc.carm.lib.configuration.function"},{"l":"cc.carm.lib.configuration.source"},{"l":"cc.carm.lib.configuration.source.loader"},{"l":"cc.carm.lib.configuration.source.meta"},{"l":"cc.carm.lib.configuration.source.option"},{"l":"cc.carm.lib.configuration.source.section"},{"l":"cc.carm.lib.configuration.value"},{"l":"cc.carm.lib.configuration.value.impl"},{"l":"cc.carm.lib.configuration.value.standard"}];updateSearchResults(); \ No newline at end of file diff --git a/resources/glass.png b/resources/glass.png new file mode 100644 index 0000000..a7f591f Binary files /dev/null and b/resources/glass.png differ diff --git a/resources/x.png b/resources/x.png new file mode 100644 index 0000000..30548a7 Binary files /dev/null and b/resources/x.png differ diff --git a/script-dir/jquery-3.7.1.min.js b/script-dir/jquery-3.7.1.min.js new file mode 100644 index 0000000..7f37b5d --- /dev/null +++ b/script-dir/jquery-3.7.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("
    ").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("
    ").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("
    ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(x("
    ").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1").text(e))},100))}});x.ui.autocomplete}); \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..bb9c8a2 --- /dev/null +++ b/script.js @@ -0,0 +1,253 @@ +/* + * Copyright (c) 2013, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var moduleSearchIndex; +var packageSearchIndex; +var typeSearchIndex; +var memberSearchIndex; +var tagSearchIndex; + +var oddRowColor = "odd-row-color"; +var evenRowColor = "even-row-color"; +var sortAsc = "sort-asc"; +var sortDesc = "sort-desc"; +var tableTab = "table-tab"; +var activeTableTab = "active-table-tab"; + +function loadScripts(doc, tag) { + createElem(doc, tag, 'search.js'); + + createElem(doc, tag, 'module-search-index.js'); + createElem(doc, tag, 'package-search-index.js'); + createElem(doc, tag, 'type-search-index.js'); + createElem(doc, tag, 'member-search-index.js'); + createElem(doc, tag, 'tag-search-index.js'); +} + +function createElem(doc, tag, path) { + var script = doc.createElement(tag); + var scriptElement = doc.getElementsByTagName(tag)[0]; + script.src = pathtoroot + path; + scriptElement.parentNode.insertBefore(script, scriptElement); +} + +// Helper for making content containing release names comparable lexicographically +function makeComparable(s) { + return s.toLowerCase().replace(/(\d+)/g, + function(n, m) { + return ("000" + m).slice(-4); + }); +} + +// Switches between two styles depending on a condition +function toggleStyle(classList, condition, trueStyle, falseStyle) { + if (condition) { + classList.remove(falseStyle); + classList.add(trueStyle); + } else { + classList.remove(trueStyle); + classList.add(falseStyle); + } +} + +// Sorts the rows in a table lexicographically by the content of a specific column +function sortTable(header, columnIndex, columns) { + var container = header.parentElement; + var descending = header.classList.contains(sortAsc); + container.querySelectorAll("div.table-header").forEach( + function(header) { + header.classList.remove(sortAsc); + header.classList.remove(sortDesc); + } + ) + var cells = container.children; + var rows = []; + for (var i = columns; i < cells.length; i += columns) { + rows.push(Array.prototype.slice.call(cells, i, i + columns)); + } + var comparator = function(a, b) { + var ka = makeComparable(a[columnIndex].textContent); + var kb = makeComparable(b[columnIndex].textContent); + if (ka < kb) + return descending ? 1 : -1; + if (ka > kb) + return descending ? -1 : 1; + return 0; + }; + var sorted = rows.sort(comparator); + var visible = 0; + sorted.forEach(function(row) { + if (row[0].style.display !== 'none') { + var isEvenRow = visible++ % 2 === 0; + } + row.forEach(function(cell) { + toggleStyle(cell.classList, isEvenRow, evenRowColor, oddRowColor); + container.appendChild(cell); + }) + }); + toggleStyle(header.classList, descending, sortDesc, sortAsc); +} + +// Toggles the visibility of a table category in all tables in a page +function toggleGlobal(checkbox, selected, columns) { + var display = checkbox.checked ? '' : 'none'; + document.querySelectorAll("div.table-tabs").forEach(function(t) { + var id = t.parentElement.getAttribute("id"); + var selectedClass = id + "-tab" + selected; + // if selected is empty string it selects all uncategorized entries + var selectUncategorized = !Boolean(selected); + var visible = 0; + document.querySelectorAll('div.' + id) + .forEach(function(elem) { + if (selectUncategorized) { + if (elem.className.indexOf(selectedClass) === -1) { + elem.style.display = display; + } + } else if (elem.classList.contains(selectedClass)) { + elem.style.display = display; + } + if (elem.style.display === '') { + var isEvenRow = visible++ % (columns * 2) < columns; + toggleStyle(elem.classList, isEvenRow, evenRowColor, oddRowColor); + } + }); + var displaySection = visible === 0 ? 'none' : ''; + t.parentElement.style.display = displaySection; + document.querySelector("li#contents-" + id).style.display = displaySection; + }) +} + +// Shows the elements of a table belonging to a specific category +function show(tableId, selected, columns) { + if (tableId !== selected) { + document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') + .forEach(function(elem) { + elem.style.display = 'none'; + }); + } + document.querySelectorAll('div.' + selected) + .forEach(function(elem, index) { + elem.style.display = ''; + var isEvenRow = index % (columns * 2) < columns; + toggleStyle(elem.classList, isEvenRow, evenRowColor, oddRowColor); + }); + updateTabs(tableId, selected); +} + +function updateTabs(tableId, selected) { + document.getElementById(tableId + '.tabpanel') + .setAttribute('aria-labelledby', selected); + document.querySelectorAll('button[id^="' + tableId + '"]') + .forEach(function(tab, index) { + if (selected === tab.id || (tableId === selected && index === 0)) { + tab.className = activeTableTab; + tab.setAttribute('aria-selected', true); + tab.setAttribute('tabindex',0); + } else { + tab.className = tableTab; + tab.setAttribute('aria-selected', false); + tab.setAttribute('tabindex',-1); + } + }); +} + +function switchTab(e) { + var selected = document.querySelector('[aria-selected=true]'); + if (selected) { + if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { + // left or up arrow key pressed: move focus to previous tab + selected.previousSibling.click(); + selected.previousSibling.focus(); + e.preventDefault(); + } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { + // right or down arrow key pressed: move focus to next tab + selected.nextSibling.click(); + selected.nextSibling.focus(); + e.preventDefault(); + } + } +} + +var updateSearchResults = function() {}; + +function indexFilesLoaded() { + return moduleSearchIndex + && packageSearchIndex + && typeSearchIndex + && memberSearchIndex + && tagSearchIndex; +} +// Copy the contents of the local snippet to the clipboard +function copySnippet(button) { + copyToClipboard(button.nextElementSibling.innerText); + switchCopyLabel(button, button.firstElementChild); +} +function copyToClipboard(content) { + var textarea = document.createElement("textarea"); + textarea.style.height = 0; + document.body.appendChild(textarea); + textarea.value = content; + textarea.select(); + document.execCommand("copy"); + document.body.removeChild(textarea); +} +function switchCopyLabel(button, span) { + var copied = span.getAttribute("data-copied"); + button.classList.add("visible"); + var initialLabel = span.innerHTML; + span.innerHTML = copied; + setTimeout(function() { + button.classList.remove("visible"); + setTimeout(function() { + if (initialLabel !== copied) { + span.innerHTML = initialLabel; + } + }, 100); + }, 1900); +} +// Workaround for scroll position not being included in browser history (8249133) +document.addEventListener("DOMContentLoaded", function(e) { + var contentDiv = document.querySelector("div.flex-content"); + window.addEventListener("popstate", function(e) { + if (e.state !== null) { + contentDiv.scrollTop = e.state; + } + }); + window.addEventListener("hashchange", function(e) { + history.replaceState(contentDiv.scrollTop, document.title); + }); + var timeoutId; + contentDiv.addEventListener("scroll", function(e) { + if (timeoutId) { + clearTimeout(timeoutId); + } + timeoutId = setTimeout(function() { + history.replaceState(contentDiv.scrollTop, document.title); + }, 100); + }); + if (!location.hash) { + history.replaceState(contentDiv.scrollTop, document.title); + } +}); diff --git a/search-page.js b/search-page.js new file mode 100644 index 0000000..540c90f --- /dev/null +++ b/search-page.js @@ -0,0 +1,284 @@ +/* + * Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +"use strict"; +$(function() { + var copy = $("#page-search-copy"); + var expand = $("#page-search-expand"); + var searchLink = $("span#page-search-link"); + var redirect = $("input#search-redirect"); + function setSearchUrlTemplate() { + var href = document.location.href.split(/[#?]/)[0]; + href += "?q=" + "%s"; + if (redirect.is(":checked")) { + href += "&r=1"; + } + searchLink.html(href); + copy[0].onmouseenter(); + } + function copyLink(e) { + copyToClipboard(this.previousSibling.innerText); + switchCopyLabel(this, this.lastElementChild); + } + copy.click(copyLink); + copy[0].onmouseenter = function() {}; + redirect.click(setSearchUrlTemplate); + setSearchUrlTemplate(); + copy.prop("disabled", false); + redirect.prop("disabled", false); + expand.click(function (e) { + var searchInfo = $("div.page-search-info"); + if(this.parentElement.hasAttribute("open")) { + searchInfo.attr("style", "border-width: 0;"); + } else { + searchInfo.attr("style", "border-width: 1px;").height(searchInfo.prop("scrollHeight")); + } + }); +}); +$(window).on("load", function() { + var input = $("#page-search-input"); + var reset = $("#page-search-reset"); + var notify = $("#page-search-notify"); + var resultSection = $("div#result-section"); + var resultContainer = $("div#result-container"); + var searchTerm = ""; + var activeTab = ""; + var fixedTab = false; + var visibleTabs = []; + var feelingLucky = false; + function renderResults(result) { + if (!result.length) { + notify.html(messages.noResult); + } else if (result.length === 1) { + notify.html(messages.oneResult); + } else { + notify.html(messages.manyResults.replace("{0}", result.length)); + } + resultContainer.empty(); + var r = { + "types": [], + "members": [], + "packages": [], + "modules": [], + "searchTags": [] + }; + for (var i in result) { + var item = result[i]; + var arr = r[item.category]; + arr.push(item); + } + if (!activeTab || r[activeTab].length === 0 || !fixedTab) { + Object.keys(r).reduce(function(prev, curr) { + if (r[curr].length > 0 && r[curr][0].score > prev) { + activeTab = curr; + return r[curr][0].score; + } + return prev; + }, 0); + } + if (feelingLucky && activeTab) { + notify.html(messages.redirecting) + var firstItem = r[activeTab][0]; + window.location = getURL(firstItem.indexItem, firstItem.category); + return; + } + if (result.length > 20) { + if (searchTerm[searchTerm.length - 1] === ".") { + if (activeTab === "types" && r["members"].length > r["types"].length) { + activeTab = "members"; + } else if (activeTab === "packages" && r["types"].length > r["packages"].length) { + activeTab = "types"; + } + } + } + var categoryCount = Object.keys(r).reduce(function(prev, curr) { + return prev + (r[curr].length > 0 ? 1 : 0); + }, 0); + visibleTabs = []; + var tabContainer = $("
    ").appendTo(resultContainer); + for (var key in r) { + var id = "#result-tab-" + key.replace("searchTags", "search_tags"); + if (r[key].length) { + var count = r[key].length >= 1000 ? "999+" : r[key].length; + if (result.length > 20 && categoryCount > 1) { + var button = $("").appendTo(tabContainer); + button.click(key, function(e) { + fixedTab = true; + renderResult(e.data, $(this)); + }); + visibleTabs.push(key); + } else { + $("" + categories[key] + + " (" + count + ")").appendTo(tabContainer); + renderTable(key, r[key]).appendTo(resultContainer); + tabContainer = $("
    ").appendTo(resultContainer); + + } + } + } + if (activeTab && result.length > 20 && categoryCount > 1) { + $("button#result-tab-" + activeTab).addClass("active-table-tab"); + renderTable(activeTab, r[activeTab]).appendTo(resultContainer); + } + resultSection.show(); + function renderResult(category, button) { + activeTab = category; + setSearchUrl(); + resultContainer.find("div.summary-table").remove(); + renderTable(activeTab, r[activeTab]).appendTo(resultContainer); + button.siblings().removeClass("active-table-tab"); + button.addClass("active-table-tab"); + } + } + function selectTab(category) { + $("button#result-tab-" + category).click(); + } + function renderTable(category, items) { + var table = $("
    ") + .addClass(category === "modules" + ? "one-column-search-results" + : "two-column-search-results"); + var col1, col2; + if (category === "modules") { + col1 = "Module"; + } else if (category === "packages") { + col1 = "Module"; + col2 = "Package"; + } else if (category === "types") { + col1 = "Package"; + col2 = "Class" + } else if (category === "members") { + col1 = "Class"; + col2 = "Member"; + } else if (category === "searchTags") { + col1 = "Location"; + col2 = "Name"; + } + $("
    " + col1 + "
    ").appendTo(table); + if (category !== "modules") { + $("
    " + col2 + "
    ").appendTo(table); + } + $.each(items, function(index, item) { + var rowColor = index % 2 ? "odd-row-color" : "even-row-color"; + renderItem(item, table, rowColor); + }); + return table; + } + function renderItem(item, table, rowColor) { + var label = getHighlightedText(item.input, item.boundaries, item.prefix.length, item.input.length); + var link = $("") + .attr("href", getURL(item.indexItem, item.category)) + .attr("tabindex", "0") + .addClass("search-result-link") + .html(label); + var container = getHighlightedText(item.input, item.boundaries, 0, item.prefix.length - 1); + if (item.category === "searchTags") { + container = item.indexItem.h || ""; + } + if (item.category !== "modules") { + $("
    ").html(container).addClass("col-plain").addClass(rowColor).appendTo(table); + } + $("
    ").html(link).addClass("col-last").addClass(rowColor).appendTo(table); + } + var timeout; + function schedulePageSearch() { + if (timeout) { + clearTimeout(timeout); + } + timeout = setTimeout(function () { + doPageSearch() + }, 100); + } + function doPageSearch() { + setSearchUrl(); + var term = searchTerm = input.val().trim(); + if (term === "") { + notify.html(messages.enterTerm); + activeTab = ""; + fixedTab = false; + resultContainer.empty(); + resultSection.hide(); + } else { + notify.html(messages.searching); + doSearch({ term: term, maxResults: 1200 }, renderResults); + } + } + function setSearchUrl() { + var query = input.val().trim(); + var url = document.location.pathname; + if (query) { + url += "?q=" + encodeURI(query); + if (activeTab && fixedTab) { + url += "&c=" + activeTab; + } + } + history.replaceState({query: query}, "", url); + } + input.on("input", function(e) { + feelingLucky = false; + schedulePageSearch(); + }); + $(document).keydown(function(e) { + if ((e.ctrlKey || e.metaKey) && (e.key === "ArrowLeft" || e.key === "ArrowRight")) { + if (activeTab && visibleTabs.length > 1) { + var idx = visibleTabs.indexOf(activeTab); + idx += e.key === "ArrowLeft" ? visibleTabs.length - 1 : 1; + selectTab(visibleTabs[idx % visibleTabs.length]); + return false; + } + } + }); + reset.click(function() { + notify.html(messages.enterTerm); + resultSection.hide(); + activeTab = ""; + fixedTab = false; + resultContainer.empty(); + input.val('').focus(); + setSearchUrl(); + }); + input.prop("disabled", false); + reset.prop("disabled", false); + + var urlParams = new URLSearchParams(window.location.search); + if (urlParams.has("q")) { + input.val(urlParams.get("q")) + } + if (urlParams.has("c")) { + activeTab = urlParams.get("c"); + fixedTab = true; + } + if (urlParams.get("r")) { + feelingLucky = true; + } + if (input.val()) { + doPageSearch(); + } else { + notify.html(messages.enterTerm); + } + input.select().focus(); +}); diff --git a/search.html b/search.html new file mode 100644 index 0000000..e951ef4 --- /dev/null +++ b/search.html @@ -0,0 +1,77 @@ + + + + +Search (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
    + +
    +
    +

    Search

    +
    + + +
    +Additional resources +
    +
    +
    +

    The help page provides an introduction to the scope and syntax of JavaDoc search.

    +

    You can use the <ctrl> or <cmd> keys in combination with the left and right arrow keys to switch between result tabs in this page.

    +

    The URL template below may be used to configure this page as a search engine in browsers that support this feature. It has been tested to work in Google Chrome and Mozilla Firefox. Note that other browsers may not support this feature or require a different URL format.

    +link +

    + +

    +
    +

    Loading search index...

    + +
    +
    +
    + +
    +
    +
    + + diff --git a/search.js b/search.js new file mode 100644 index 0000000..7673397 --- /dev/null +++ b/search.js @@ -0,0 +1,458 @@ +/* + * Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ +"use strict"; +const messages = { + enterTerm: "Enter a search term", + noResult: "No results found", + oneResult: "Found one result", + manyResults: "Found {0} results", + loading: "Loading search index...", + searching: "Searching...", + redirecting: "Redirecting to first result...", + linkIcon: "Link icon", + linkToSection: "Link to this section" +} +const categories = { + modules: "Modules", + packages: "Packages", + types: "Types", + members: "Members", + searchTags: "Search Tags" +}; +const highlight = "$&"; +const NO_MATCH = {}; +const MAX_RESULTS = 300; +function checkUnnamed(name, separator) { + return name === "" || !name ? "" : name + separator; +} +function escapeHtml(str) { + return str.replace(//g, ">"); +} +function getHighlightedText(str, boundaries, from, to) { + var start = from; + var text = ""; + for (var i = 0; i < boundaries.length; i += 2) { + var b0 = boundaries[i]; + var b1 = boundaries[i + 1]; + if (b0 >= to || b1 <= from) { + continue; + } + text += escapeHtml(str.slice(start, Math.max(start, b0))); + text += ""; + text += escapeHtml(str.slice(Math.max(start, b0), Math.min(to, b1))); + text += ""; + start = Math.min(to, b1); + } + text += escapeHtml(str.slice(start, to)); + return text; +} +function getURLPrefix(item, category) { + var urlPrefix = ""; + var slash = "/"; + if (category === "modules") { + return item.l + slash; + } else if (category === "packages" && item.m) { + return item.m + slash; + } else if (category === "types" || category === "members") { + if (item.m) { + urlPrefix = item.m + slash; + } else { + $.each(packageSearchIndex, function(index, it) { + if (it.m && item.p === it.l) { + urlPrefix = it.m + slash; + } + }); + } + } + return urlPrefix; +} +function getURL(item, category) { + if (item.url) { + return item.url; + } + var url = getURLPrefix(item, category); + if (category === "modules") { + url += "module-summary.html"; + } else if (category === "packages") { + if (item.u) { + url = item.u; + } else { + url += item.l.replace(/\./g, '/') + "/package-summary.html"; + } + } else if (category === "types") { + if (item.u) { + url = item.u; + } else { + url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.l + ".html"; + } + } else if (category === "members") { + url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.c + ".html" + "#"; + if (item.u) { + url += item.u; + } else { + url += item.l; + } + } else if (category === "searchTags") { + url += item.u; + } + item.url = url; + return url; +} +function createMatcher(term, camelCase) { + if (camelCase && !isUpperCase(term)) { + return null; // no need for camel-case matcher for lower case query + } + var pattern = ""; + var upperCase = []; + term.trim().split(/\s+/).forEach(function(w, index, array) { + var tokens = w.split(/(?=[A-Z,.()<>?[\/])/); + for (var i = 0; i < tokens.length; i++) { + var s = tokens[i]; + // ',' and '?' are the only delimiters commonly followed by space in java signatures + pattern += "(" + $.ui.autocomplete.escapeRegex(s).replace(/[,?]/g, "$&\\s*?") + ")"; + upperCase.push(false); + var isWordToken = /\w$/.test(s); + if (isWordToken) { + if (i === tokens.length - 1 && index < array.length - 1) { + // space in query string matches all delimiters + pattern += "(.*?)"; + upperCase.push(isUpperCase(s[0])); + } else { + if (!camelCase && isUpperCase(s) && s.length === 1) { + pattern += "()"; + } else { + pattern += "([a-z0-9$<>?[\\]]*?)"; + } + upperCase.push(isUpperCase(s[0])); + } + } else { + pattern += "()"; + upperCase.push(false); + } + } + }); + var re = new RegExp(pattern, "gi"); + re.upperCase = upperCase; + return re; +} +function findMatch(matcher, input, startOfName, endOfName) { + var from = startOfName; + matcher.lastIndex = from; + var match = matcher.exec(input); + // Expand search area until we get a valid result or reach the beginning of the string + while (!match || match.index + match[0].length < startOfName || endOfName < match.index) { + if (from === 0) { + return NO_MATCH; + } + from = input.lastIndexOf(".", from - 2) + 1; + matcher.lastIndex = from; + match = matcher.exec(input); + } + var boundaries = []; + var matchEnd = match.index + match[0].length; + var score = 5; + var start = match.index; + var prevEnd = -1; + for (var i = 1; i < match.length; i += 2) { + var isUpper = isUpperCase(input[start]); + var isMatcherUpper = matcher.upperCase[i]; + // capturing groups come in pairs, match and non-match + boundaries.push(start, start + match[i].length); + // make sure groups are anchored on a left word boundary + var prevChar = input[start - 1] || ""; + var nextChar = input[start + 1] || ""; + if (start !== 0 && !/[\W_]/.test(prevChar) && !/[\W_]/.test(input[start])) { + if (isUpper && (isLowerCase(prevChar) || isLowerCase(nextChar))) { + score -= 0.1; + } else if (isMatcherUpper && start === prevEnd) { + score -= isUpper ? 0.1 : 1.0; + } else { + return NO_MATCH; + } + } + prevEnd = start + match[i].length; + start += match[i].length + match[i + 1].length; + + // lower score for parts of the name that are missing + if (match[i + 1] && prevEnd < endOfName) { + score -= rateNoise(match[i + 1]); + } + } + // lower score if a type name contains unmatched camel-case parts + if (input[matchEnd - 1] !== "." && endOfName > matchEnd) + score -= rateNoise(input.slice(matchEnd, endOfName)); + score -= rateNoise(input.slice(0, Math.max(startOfName, match.index))); + + if (score <= 0) { + return NO_MATCH; + } + return { + input: input, + score: score, + boundaries: boundaries + }; +} +function isUpperCase(s) { + return s !== s.toLowerCase(); +} +function isLowerCase(s) { + return s !== s.toUpperCase(); +} +function rateNoise(str) { + return (str.match(/([.(])/g) || []).length / 5 + + (str.match(/([A-Z]+)/g) || []).length / 10 + + str.length / 20; +} +function doSearch(request, response) { + var term = request.term.trim(); + var maxResults = request.maxResults || MAX_RESULTS; + if (term.length === 0) { + return this.close(); + } + var matcher = { + plainMatcher: createMatcher(term, false), + camelCaseMatcher: createMatcher(term, true) + } + var indexLoaded = indexFilesLoaded(); + + function getPrefix(item, category) { + switch (category) { + case "packages": + return checkUnnamed(item.m, "/"); + case "types": + return checkUnnamed(item.p, "."); + case "members": + return checkUnnamed(item.p, ".") + item.c + "."; + default: + return ""; + } + } + function useQualifiedName(category) { + switch (category) { + case "packages": + return /[\s/]/.test(term); + case "types": + case "members": + return /[\s.]/.test(term); + default: + return false; + } + } + function searchIndex(indexArray, category) { + var matches = []; + if (!indexArray) { + if (!indexLoaded) { + matches.push({ l: messages.loading, category: category }); + } + return matches; + } + $.each(indexArray, function (i, item) { + var prefix = getPrefix(item, category); + var simpleName = item.l; + var qualifiedName = prefix + simpleName; + var useQualified = useQualifiedName(category); + var input = useQualified ? qualifiedName : simpleName; + var startOfName = useQualified ? prefix.length : 0; + var endOfName = category === "members" && input.indexOf("(", startOfName) > -1 + ? input.indexOf("(", startOfName) : input.length; + var m = findMatch(matcher.plainMatcher, input, startOfName, endOfName); + if (m === NO_MATCH && matcher.camelCaseMatcher) { + m = findMatch(matcher.camelCaseMatcher, input, startOfName, endOfName); + } + if (m !== NO_MATCH) { + m.indexItem = item; + m.prefix = prefix; + m.category = category; + if (!useQualified) { + m.input = qualifiedName; + m.boundaries = m.boundaries.map(function(b) { + return b + prefix.length; + }); + } + matches.push(m); + } + return true; + }); + return matches.sort(function(e1, e2) { + return e2.score - e1.score; + }).slice(0, maxResults); + } + + var result = searchIndex(moduleSearchIndex, "modules") + .concat(searchIndex(packageSearchIndex, "packages")) + .concat(searchIndex(typeSearchIndex, "types")) + .concat(searchIndex(memberSearchIndex, "members")) + .concat(searchIndex(tagSearchIndex, "searchTags")); + + if (!indexLoaded) { + updateSearchResults = function() { + doSearch(request, response); + } + } else { + updateSearchResults = function() {}; + } + response(result); +} +// JQuery search menu implementation +$.widget("custom.catcomplete", $.ui.autocomplete, { + _create: function() { + this._super(); + this.widget().menu("option", "items", "> .result-item"); + // workaround for search result scrolling + this.menu._scrollIntoView = function _scrollIntoView( item ) { + var borderTop, paddingTop, offset, scroll, elementHeight, itemHeight; + if ( this._hasScroll() ) { + borderTop = parseFloat( $.css( this.activeMenu[ 0 ], "borderTopWidth" ) ) || 0; + paddingTop = parseFloat( $.css( this.activeMenu[ 0 ], "paddingTop" ) ) || 0; + offset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop; + scroll = this.activeMenu.scrollTop(); + elementHeight = this.activeMenu.height() - 26; + itemHeight = item.outerHeight(); + + if ( offset < 0 ) { + this.activeMenu.scrollTop( scroll + offset ); + } else if ( offset + itemHeight > elementHeight ) { + this.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight ); + } + } + }; + }, + _renderMenu: function(ul, items) { + var currentCategory = ""; + var widget = this; + widget.menu.bindings = $(); + $.each(items, function(index, item) { + if (item.category && item.category !== currentCategory) { + ul.append("
  • " + categories[item.category] + "
  • "); + currentCategory = item.category; + } + var li = widget._renderItemData(ul, item); + if (item.category) { + li.attr("aria-label", categories[item.category] + " : " + item.l); + } else { + li.attr("aria-label", item.l); + } + li.attr("class", "result-item"); + }); + ul.append(""); + }, + _renderItem: function(ul, item) { + var li = $("
  • ").appendTo(ul); + var div = $("
    ").appendTo(li); + var label = item.l + ? item.l + : getHighlightedText(item.input, item.boundaries, 0, item.input.length); + var idx = item.indexItem; + if (item.category === "searchTags" && idx && idx.h) { + if (idx.d) { + div.html(label + " (" + idx.h + ")
    " + + idx.d + "
    "); + } else { + div.html(label + " (" + idx.h + ")"); + } + } else { + div.html(label); + } + return li; + } +}); +$(function() { + var expanded = false; + var windowWidth; + function collapse() { + if (expanded) { + $("div#navbar-top").removeAttr("style"); + $("button#navbar-toggle-button") + .removeClass("expanded") + .attr("aria-expanded", "false"); + expanded = false; + } + } + $("button#navbar-toggle-button").click(function (e) { + if (expanded) { + collapse(); + } else { + var navbar = $("div#navbar-top"); + navbar.height(navbar.prop("scrollHeight")); + $("button#navbar-toggle-button") + .addClass("expanded") + .attr("aria-expanded", "true"); + expanded = true; + windowWidth = window.innerWidth; + } + }); + $("ul.sub-nav-list-small li a").click(collapse); + $("input#search-input").focus(collapse); + $("main").click(collapse); + $("section[id] > :header, :header[id], :header:has(a[id])").each(function(idx, el) { + // Create anchor links for headers with an associated id attribute + var hdr = $(el); + var id = hdr.attr("id") || hdr.parent("section").attr("id") || hdr.children("a").attr("id"); + if (id) { + hdr.append(" " + messages.linkIcon +""); + } + }); + $(window).on("orientationchange", collapse).on("resize", function(e) { + if (expanded && windowWidth !== window.innerWidth) collapse(); + }); + var search = $("#search-input"); + var reset = $("#reset-button"); + search.catcomplete({ + minLength: 1, + delay: 200, + source: doSearch, + response: function(event, ui) { + if (!ui.content.length) { + ui.content.push({ l: messages.noResult }); + } else { + $("#search-input").empty(); + } + }, + autoFocus: true, + focus: function(event, ui) { + return false; + }, + position: { + collision: "flip" + }, + select: function(event, ui) { + if (ui.item.indexItem) { + var url = getURL(ui.item.indexItem, ui.item.category); + window.location.href = pathtoroot + url; + $("#search-input").focus(); + } + } + }); + search.val(''); + search.prop("disabled", false); + reset.prop("disabled", false); + reset.click(function() { + search.val('').focus(); + }); + search.focus(); +}); diff --git a/serialized-form.html b/serialized-form.html new file mode 100644 index 0000000..71e4f54 --- /dev/null +++ b/serialized-form.html @@ -0,0 +1,69 @@ + + + + +Serialized Form (Configured - Core 4.2.0 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Serialized Form

    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 0000000..e821be6 --- /dev/null +++ b/sitemap.xml @@ -0,0 +1,699 @@ + + + +https://CarmJos.github.io/configured/ +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/allclasses-index.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/allpackages-index.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/help-doc.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/index-all.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/overview-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/overview-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/search.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/serialized-form.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/Configuration.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/ValueAdapter.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/ValueAdapterRegistry.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/ValueParser.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/ValueSerializer.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/ValueType.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/annotation/ConfigPath.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/annotation/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/annotation/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/annotation/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/AbstractConfigBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/CommonConfigBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/class-use/Configuration.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/ConfigExceptionHandler.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/DataConsumer.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/DataFunction.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/DataValidator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/ValueComposer.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/ValueHandler.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/ValueValidator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/ConfigurationFactory.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/ConfigurationHolder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/ConfigValue.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/ValueManifest.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/class-use/ValueAdapter.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/class-use/ValueAdapterRegistry.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/class-use/ValueParser.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/class-use/ValueSerializer.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/class-use/ValueType.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/strandard/PrimitiveAdapter.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/strandard/StandardAdapters.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/strandard/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/strandard/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/strandard/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/annotation/class-use/ConfigPath.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/class-use/AbstractConfigBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/class-use/CommonConfigBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/SectionCollectionBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.CollectionValueFactory.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.Section.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.Source.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/SimpleCollectionCreator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/SourceCollectionBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/impl/AbstractSectionBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/impl/AbstractSourceBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/impl/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/impl/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/impl/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/list/ConfigListCreator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/list/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/list/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/list/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/map/ConfigMapBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/map/ConfigMapCreator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/map/SectionMapBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/map/SourceMapBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/map/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/map/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/map/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/value/ConfigValueBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/value/SectionValueBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/value/SourceValueBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/value/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/value/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/value/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/class-use/ConfigExceptionHandler.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/class-use/DataConsumer.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/class-use/DataFunction.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/class-use/DataValidator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/class-use/ValueComposer.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/class-use/ValueHandler.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/function/class-use/ValueValidator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/class-use/ConfigurationFactory.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/class-use/ConfigurationHolder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/loader/ConfigInitializeHandler.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/loader/ConfigurationInitializer.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/loader/PathGenerator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/loader/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/loader/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/loader/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/meta/ConfigurationMetaHolder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/meta/ConfigurationMetadata.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/meta/StandardMeta.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/meta/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/meta/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/meta/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/option/ConfigurationOption.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/option/ConfigurationOptionHolder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/option/StandardOptions.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/option/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/option/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/option/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/section/ConfigureSection.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/section/ConfigureSource.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/section/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/section/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/section/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/class-use/ConfigValue.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/class-use/ValueManifest.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/impl/CachedConfigValue.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/impl/CollectionConfigValue.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/impl/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/impl/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/impl/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/standard/ConfiguredList.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/standard/ConfiguredMap.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/standard/ConfiguredValue.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/standard/package-summary.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/standard/package-tree.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/standard/package-use.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/strandard/class-use/PrimitiveAdapter.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/adapter/strandard/class-use/StandardAdapters.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/class-use/SectionCollectionBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.CollectionValueFactory.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.Section.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.Source.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/class-use/SimpleCollectionCreator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/collection/class-use/SourceCollectionBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/impl/class-use/AbstractSectionBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/impl/class-use/AbstractSourceBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/list/class-use/ConfigListCreator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/map/class-use/ConfigMapBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/map/class-use/ConfigMapCreator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/map/class-use/SectionMapBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/map/class-use/SourceMapBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/value/class-use/ConfigValueBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/value/class-use/SectionValueBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/builder/value/class-use/SourceValueBuilder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/loader/class-use/ConfigInitializeHandler.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/loader/class-use/ConfigurationInitializer.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/loader/class-use/PathGenerator.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/meta/class-use/ConfigurationMetaHolder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/meta/class-use/ConfigurationMetadata.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/meta/class-use/StandardMeta.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/option/class-use/ConfigurationOption.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/option/class-use/ConfigurationOptionHolder.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/option/class-use/StandardOptions.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/section/class-use/ConfigureSection.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/source/section/class-use/ConfigureSource.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/impl/class-use/CachedConfigValue.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/impl/class-use/CollectionConfigValue.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/standard/class-use/ConfiguredList.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/standard/class-use/ConfiguredMap.html +2025-09-28T05:04:50+00:00 + + +https://CarmJos.github.io/configured/cc/carm/lib/configuration/value/standard/class-use/ConfiguredValue.html +2025-09-28T05:04:50+00:00 + + diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..f71489f --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,1272 @@ +/* + * Javadoc style sheet + */ + +@import url('resources/fonts/dejavu.css'); + +/* + * These CSS custom properties (variables) define the core color and font + * properties used in this stylesheet. + */ +:root { + /* body, block and code fonts */ + --body-font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + --block-font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + --code-font-family: 'DejaVu Sans Mono', monospace; + /* Base font sizes for body and code elements */ + --body-font-size: 14px; + --code-font-size: 14px; + /* Text colors for body and block elements */ + --body-text-color: #353833; + --block-text-color: #474747; + /* Background colors for various structural elements */ + --body-background-color: #ffffff; + --section-background-color: #f8f8f8; + --detail-background-color: #ffffff; + /* Colors for navigation bar and table captions */ + --navbar-background-color: #4D7A97; + --navbar-text-color: #ffffff; + /* Background color for subnavigation and various headers */ + --subnav-background-color: #dee3e9; + /* Background and text colors for selected tabs and navigation items */ + --selected-background-color: #f8981d; + --selected-text-color: #253441; + --selected-link-color: #1f389c; + /* Background colors for generated tables */ + --even-row-color: #ffffff; + --odd-row-color: #eeeeef; + /* Text color for page title */ + --title-color: #2c4557; + /* Text colors for links */ + --link-color: #4A6782; + --link-color-active: #bb7a2a; + /* Snippet colors */ + --snippet-background-color: #ebecee; + --snippet-text-color: var(--block-text-color); + --snippet-highlight-color: #f7c590; + /* Border colors for structural elements and user defined tables */ + --border-color: #ededed; + --table-border-color: #000000; + /* Search input colors */ + --search-input-background-color: #ffffff; + --search-input-text-color: #000000; + --search-input-placeholder-color: #909090; + /* Highlight color for active search tag target */ + --search-tag-highlight-color: #ffff00; + /* Adjustments for icon and active background colors of copy-to-clipboard buttons */ + --copy-icon-brightness: 100%; + --copy-button-background-color-active: rgba(168, 168, 176, 0.3); + /* Colors for invalid tag notifications */ + --invalid-tag-background-color: #ffe6e6; + --invalid-tag-text-color: #000000; +} +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ +body { + background-color:var(--body-background-color); + color:var(--body-text-color); + font-family:var(--body-font-family); + font-size:var(--body-font-size); + margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; +} +a:link, a:visited { + text-decoration:none; + color:var(--link-color); +} +a[href]:hover, a[href]:focus { + text-decoration:none; + color:var(--link-color-active); +} +pre { + font-family:var(--code-font-family); + font-size:1em; +} +h1 { + font-size:1.428em; +} +h2 { + font-size:1.285em; +} +h3 { + font-size:1.14em; +} +h4 { + font-size:1.072em; +} +h5 { + font-size:1.001em; +} +h6 { + font-size:0.93em; +} +/* Disable font boosting for selected elements */ +h1, h2, h3, h4, h5, h6, div.member-signature { + max-height: 1000em; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:var(--code-font-family); +} +:not(h1, h2, h3, h4, h5, h6) > code, +:not(h1, h2, h3, h4, h5, h6) > tt { + font-size:var(--code-font-size); + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:var(--code-font-family); + font-size:1em; + padding-top:4px; +} +.summary-table dt code { + font-family:var(--code-font-family); + font-size:1em; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +button { + font-family: var(--body-font-family); + font-size: 1em; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.about-language { + float:right; + padding:0 21px 8px 8px; + font-size:0.915em; + margin-top:-9px; + height:2.9em; +} +.legal-copy { + margin-left:.5em; +} +/* + * Styles for navigation bar. + */ +@media screen { + div.flex-box { + position:fixed; + display:flex; + flex-direction:column; + height: 100%; + width: 100%; + } + header.flex-header { + flex: 0 0 auto; + } + div.flex-content { + flex: 1 1 auto; + overflow-y: auto; + } +} +.top-nav { + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + float:left; + width:100%; + clear:right; + min-height:2.8em; + padding:10px 0 0 0; + overflow:hidden; + font-size:0.857em; +} +button#navbar-toggle-button { + display:none; +} +ul.sub-nav-list-small { + display: none; +} +.sub-nav { + background-color:var(--subnav-background-color); + float:left; + width:100%; + overflow:hidden; + font-size:0.857em; +} +.sub-nav div { + clear:left; + float:left; + padding:6px; + text-transform:uppercase; +} +.sub-nav .sub-nav-list { + padding-top:4px; +} +ul.nav-list { + display:block; + margin:0 25px 0 0; + padding:0; +} +ul.sub-nav-list { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.nav-list li { + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list-search { + float:right; + margin:0; + padding:6px; + clear:none; + text-align:right; + position:relative; +} +ul.sub-nav-list li { + list-style:none; + float:left; +} +.top-nav a:link, .top-nav a:active, .top-nav a:visited { + color:var(--navbar-text-color); + text-decoration:none; + text-transform:uppercase; +} +.top-nav a:hover { + color:var(--link-color-active); +} +.nav-bar-cell1-rev { + background-color:var(--selected-background-color); + color:var(--selected-text-color); + margin: auto 5px; +} +.skip-nav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav { + display:none; + } +} +/* + * Styles for page header. + */ +.title { + color:var(--title-color); + margin:10px 0; +} +.sub-title { + margin:5px 0 0 0; +} +ul.contents-list { + margin: 0 0 15px 0; + padding: 0; + list-style: none; +} +ul.contents-list li { + font-size:0.93em; +} +/* + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; +} +body.class-declaration-page .summary h3, +body.class-declaration-page .details h3, +body.class-declaration-page .summary .inherited-list h2 { + background-color:var(--subnav-background-color); + border:1px solid var(--border-color); + margin:0 0 6px -8px; + padding:7px 5px; +} +/* + * Styles for page layout containers. + */ +main { + clear:both; + padding:10px 20px; + position:relative; +} +dl.notes > dt { + font-family: var(--body-font-family); + font-size:0.856em; + font-weight:bold; + margin:10px 0 0 0; + color:var(--body-text-color); +} +dl.notes > dd { + margin:5px 10px 10px 0; + font-size:1em; + font-family:var(--block-font-family) +} +dl.name-value > dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +dl.name-value > dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for lists. + */ +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +div.inheritance { + margin:0; + padding:0; +} +div.inheritance div.inheritance { + margin-left:2em; +} +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { + margin:10px 0 10px 0; + padding:0; +} +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.ref-list { + padding:0; + margin:0; +} +ul.ref-list > li { + list-style:none; +} +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; +} +ul.tag-list, ul.tag-list-long { + padding-left: 0; + list-style: none; +} +ul.tag-list li { + display: inline; +} +ul.tag-list li:not(:last-child):after, +ul.tag-list-long li:not(:last-child):after +{ + content: ", "; + white-space: pre-wrap; +} +ul.preview-feature-list { + list-style: none; + margin:0; + padding:0.1em; + line-height: 1.6em; +} +/* + * Styles for tables. + */ +.summary-table, .details-table { + width:100%; + border-spacing:0; + border:1px solid var(--border-color); + border-top:0; + padding:0; +} +.caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:var(--selected-text-color); + clear:none; + overflow:hidden; + padding: 10px 0 0 1px; + margin:0; +} +.caption a:link, .caption a:visited { + color:var(--selected-link-color); +} +.caption a:hover, +.caption a:active { + color:var(--navbar-text-color); +} +.caption span { + font-weight:bold; + white-space:nowrap; + padding:5px 12px 7px 12px; + display:inline-block; + float:left; + background-color:var(--selected-background-color); + border: none; + height:16px; +} +div.table-tabs { + padding:10px 0 0 1px; + margin:10px 0 0 0; +} +div.table-tabs > button { + border: none; + cursor: pointer; + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 8px; +} +div.table-tabs > .active-table-tab { + background: var(--selected-background-color); + color: var(--selected-text-color); +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.two-column-search-results { + display: grid; + grid-template-columns: minmax(400px, max-content) minmax(400px, auto); +} +div.checkboxes { + line-height: 2em; +} +div.checkboxes > span { + margin-left: 10px; +} +div.checkboxes > label { + margin-left: 8px; + white-space: nowrap; +} +div.checkboxes > label > input { + margin: 0 2px; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(25%, max-content) minmax(25%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(20%, max-content) minmax(20%, auto); +} +.three-column-release-summary { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(10%, max-content) minmax(40%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +@media screen and (max-width: 800px) { + .two-column-search-results { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(40%, auto); + } + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-release-summary { + display: grid; + grid-template-columns: minmax(70%, max-content) minmax(30%, max-content) + } + .three-column-summary .col-last, + .three-column-release-summary .col-last{ + grid-column-end: span 2; + } +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +.summary-table > div, .details-table > div { + text-align:left; + padding: 8px 3px 3px 7px; + overflow-x: auto; + scrollbar-width: thin; +} +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { + vertical-align:top; + padding-right:0; + padding-top:8px; + padding-bottom:3px; +} +.table-header { + background:var(--subnav-background-color); + font-weight: bold; +} +/* Sortable table columns */ +.table-header[onclick] { + cursor: pointer; +} +.table-header[onclick]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + '); + background-size:100% 100%; + width:9px; + height:14px; + margin-left:4px; + margin-bottom:-3px; +} +.table-header[onclick].sort-asc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + +} +.table-header[onclick].sort-desc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +.col-first, .col-first { + font-size:0.93em; +} +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { + font-size:0.93em; +} +.col-first, .col-second, .col-constructor-name { + vertical-align:top; + overflow: auto; +} +.col-last { + white-space:normal; +} +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-constructor-name a:link, .col-constructor-name a:visited, +.col-summary-item-name a:link, .col-summary-item-name a:visited { + font-weight:bold; +} +.even-row-color, .even-row-color .table-header { + background-color:var(--even-row-color); +} +.odd-row-color, .odd-row-color .table-header { + background-color:var(--odd-row-color); +} +/* + * Styles for contents. + */ +div.block { + font-size:var(--body-font-size); + font-family:var(--block-font-family); +} +.col-last div { + padding-top:0; +} +.col-last a { + padding-bottom:3px; +} +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:var(--code-font-family); + font-size:1em; + margin:14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .type-parameters-long, +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre; +} +.member-signature .type-parameters { + white-space: normal; +} +/* + * Styles for formatting effect. + */ +.source-line-no { + /* Color of line numbers in source pages can be set via custom property below */ + color:var(--source-linenumber-color, green); + padding:0 30px 0 0; +} +.block { + display:block; + margin:0 10px 5px 0; + color:var(--block-text-color); +} +.deprecated-label, .description-from-type-label, .implementation-label, .member-name-link, +.module-label-in-package, .module-label-in-type, .package-label-in-type, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { + font-weight:bold; +} +.deprecation-comment, .help-footnote, .preview-comment { + font-style:italic; +} +.deprecation-block { + font-size:1em; + font-family:var(--block-font-family); + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.preview-block { + font-size:1em; + font-family:var(--block-font-family); + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecation-comment { + font-style:normal; +} +details.invalid-tag, span.invalid-tag { + font-size:1em; + font-family:var(--block-font-family); + color: var(--invalid-tag-text-color); + background: var(--invalid-tag-background-color); + border: thin solid var(--table-border-color); + border-radius:2px; + padding: 2px 4px; + display:inline-block; +} +details summary { + cursor: pointer; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-state-active { + /* Overrides the color of selection used in jQuery UI */ + background: var(--selected-background-color); + border: 1px solid var(--selected-background-color); + color: var(--selected-text-color); +} +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:auto; + overflow-x:auto; + scrollbar-width: thin; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:1; + background-color: var(--body-background-color); +} +ul.ui-autocomplete li { + float:left; + clear:both; + min-width:100%; +} +ul.ui-autocomplete li.ui-static-link { + position:sticky; + bottom:0; + left:0; + background: var(--subnav-background-color); + padding: 5px 0; + font-family: var(--body-font-family); + font-size: 0.93em; + font-weight: bolder; + z-index: 2; +} +li.ui-static-link a, li.ui-static-link a:visited { + text-decoration:none; + color:var(--link-color); + float:right; + margin-right:20px; +} +.ui-autocomplete .result-item { + font-size: inherit; +} +.ui-autocomplete .result-highlight { + font-weight:bold; +} +#search-input, #page-search-input { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + background-color: var(--search-input-background-color); + color: var(--search-input-text-color); + border-color: var(--border-color); + padding-left:20px; + width: 250px; + margin: 0; +} +#search-input { + margin-left: 4px; +} +#reset-button { + background-color: transparent; + background-image:url('resources/x.png'); + background-repeat:no-repeat; + background-size:contain; + border:0; + border-radius:0; + width:12px; + height:12px; + position:absolute; + right:12px; + top:10px; + font-size:0; +} +::placeholder { + color:var(--search-input-placeholder-color); + opacity: 1; +} +.search-tag-desc-result { + font-style:italic; + font-size:11px; +} +.search-tag-holder-result { + font-style:italic; + font-size:12px; +} +.search-tag-result:target { + background-color:var(--search-tag-highlight-color); +} +details.page-search-details { + display: inline-block; +} +div#result-container { + font-size: 1em; +} +div#result-container a.search-result-link { + padding: 0; + margin: 4px 0; + width: 100%; +} +#result-container .result-highlight { + font-weight:bolder; +} +.page-search-info { + background-color: var(--subnav-background-color); + border-radius: 3px; + border: 0 solid var(--border-color); + padding: 0 8px; + overflow: hidden; + height: 0; + transition: all 0.2s ease; +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.page-search-header { + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + display: inline-block; +} +button.page-search-header { + border: none; + cursor: pointer; +} +span#page-search-link { + text-decoration: underline; +} +.module-graph span, .sealed-graph span { + display:none; + position:absolute; +} +.module-graph:hover span, .sealed-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.inherited-list { + margin: 10px 0 10px 0; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"], +.class-uses .detail, .serialized-class-details { + padding: 0 20px 5px 10px; + border: 1px solid var(--border-color); + background-color: var(--section-background-color); +} +.inherited-list, section[class$="-details"] .detail { + padding:0 0 5px 8px; + background-color:var(--detail-background-color); + border:none; +} +.vertical-separator { + padding: 0 5px; +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +/* + * Styles for header/section anchor links + */ +a.anchor-link { + opacity: 0; + transition: opacity 0.1s; +} +:hover > a.anchor-link { + opacity: 80%; +} +a.anchor-link:hover, +a.anchor-link:focus-visible, +a.anchor-link.visible { + opacity: 100%; +} +a.anchor-link > img { + width: 0.9em; + height: 0.9em; +} +/* + * Styles for copy-to-clipboard buttons + */ +button.copy { + opacity: 70%; + border: none; + border-radius: 3px; + position: relative; + background:none; + transition: opacity 0.3s; + cursor: pointer; +} +:hover > button.copy { + opacity: 80%; +} +button.copy:hover, +button.copy:active, +button.copy:focus-visible, +button.copy.visible { + opacity: 100%; +} +button.copy img { + position: relative; + background: none; + filter: brightness(var(--copy-icon-brightness)); +} +button.copy:active { + background-color: var(--copy-button-background-color-active); +} +button.copy span { + color: var(--body-text-color); + position: relative; + top: -0.1em; + transition: all 0.1s; + font-size: 0.76rem; + line-height: 1.2em; + opacity: 0; +} +button.copy:hover span, +button.copy:focus-visible span, +button.copy.visible span { + opacity: 100%; +} +/* search page copy button */ +button#page-search-copy { + margin-left: 0.4em; + padding:0.3em; + top:0.13em; +} +button#page-search-copy img { + width: 1.2em; + height: 1.2em; + padding: 0.01em 0; + top: 0.15em; +} +button#page-search-copy span { + color: var(--body-text-color); + line-height: 1.2em; + padding: 0.2em; + top: -0.18em; +} +div.page-search-info:hover button#page-search-copy span { + opacity: 100%; +} +/* snippet copy button */ +button.snippet-copy { + position: absolute; + top: 6px; + right: 6px; + height: 1.7em; + padding: 2px; +} +button.snippet-copy img { + width: 18px; + height: 18px; + padding: 0.05em 0; +} +button.snippet-copy span { + line-height: 1.2em; + padding: 0.2em; + position: relative; + top: -0.5em; +} +div.snippet-container:hover button.snippet-copy span { + opacity: 100%; +} +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.striped > thead { + background-color: var(--subnav-background-color); +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped > tbody > tr:nth-child(even) { + background-color: var(--odd-row-color) +} +table.striped > tbody > tr:nth-child(odd) { + background-color: var(--even-row-color) +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid var(--table-border-color); + border-right: 1px solid var(--table-border-color); +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Tweak style for small screens. + */ +@media screen and (max-width: 920px) { + header.flex-header { + max-height: 100vh; + overflow-y: auto; + } + div#navbar-top { + height: 2.8em; + transition: height 0.35s ease; + } + ul.nav-list { + display: block; + width: 40%; + float:left; + clear: left; + margin: 10px 0 0 0; + padding: 0; + } + ul.nav-list li { + float: none; + padding: 6px; + margin-left: 10px; + margin-top: 2px; + } + ul.sub-nav-list-small { + display:block; + height: 100%; + width: 50%; + float: right; + clear: right; + background-color: var(--subnav-background-color); + color: var(--body-text-color); + margin: 6px 0 0 0; + padding: 0; + } + ul.sub-nav-list-small ul { + padding-left: 20px; + } + ul.sub-nav-list-small a:link, ul.sub-nav-list-small a:visited { + color:var(--link-color); + } + ul.sub-nav-list-small a:hover { + color:var(--link-color-active); + } + ul.sub-nav-list-small li { + list-style:none; + float:none; + padding: 6px; + margin-top: 1px; + text-transform:uppercase; + } + ul.sub-nav-list-small > li { + margin-left: 10px; + } + ul.sub-nav-list-small li p { + margin: 5px 0; + } + div#navbar-sub-list { + display: none; + } + .top-nav a:link, .top-nav a:active, .top-nav a:visited { + display: block; + } + button#navbar-toggle-button { + width: 3.4em; + height: 2.8em; + background-color: transparent; + display: block; + float: left; + border: 0; + margin: 0 10px; + cursor: pointer; + font-size: 10px; + } + button#navbar-toggle-button .nav-bar-toggle-icon { + display: block; + width: 24px; + height: 3px; + margin: 1px 0 4px 0; + border-radius: 2px; + transition: all 0.1s; + background-color: var(--navbar-text-color); + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(1) { + transform: rotate(45deg); + transform-origin: 10% 10%; + width: 26px; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) { + opacity: 0; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) { + transform: rotate(-45deg); + transform-origin: 10% 90%; + width: 26px; + } +} +@media screen and (max-width: 800px) { + .about-language { + padding-right: 16px; + } + ul.nav-list li { + margin-left: 5px; + } + ul.sub-nav-list-small > li { + margin-left: 5px; + } + main { + padding: 10px; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0 8px 5px 8px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 400px) { + .about-language { + font-size: 10px; + padding-right: 12px; + } +} +@media screen and (max-width: 400px) { + .nav-list-search { + width: 94%; + } + #search-input, #page-search-input { + width: 70%; + } +} +@media screen and (max-width: 320px) { + .nav-list-search > label { + display: none; + } + .nav-list-search { + width: 90%; + } + #search-input, #page-search-input { + width: 80%; + } +} + +pre.snippet { + background-color: var(--snippet-background-color); + color: var(--snippet-text-color); + padding: 10px; + margin: 12px 0; + overflow: auto; + white-space: pre; +} +div.snippet-container { + position: relative; +} +@media screen and (max-width: 800px) { + pre.snippet { + padding-top: 26px; + } + button.snippet-copy { + top: 4px; + right: 4px; + } +} +pre.snippet .italic { + font-style: italic; +} +pre.snippet .bold { + font-weight: bold; +} +pre.snippet .highlighted { + background-color: var(--snippet-highlight-color); + border-radius: 10%; +} diff --git a/tag-search-index.js b/tag-search-index.js new file mode 100644 index 0000000..f7e4e14 --- /dev/null +++ b/tag-search-index.js @@ -0,0 +1 @@ +tagSearchIndex = [{"l":"Functions:","h":"class cc.carm.lib.configuration.value.ConfigValue","d":"Section","u":"cc/carm/lib/configuration/value/ConfigValue.html#functions--heading"},{"l":"Persistence Behavior:","h":"class cc.carm.lib.configuration.value.ConfigValue","d":"Section","u":"cc/carm/lib/configuration/value/ConfigValue.html#persistence-behavior--heading"},{"l":"Serialized Form","h":"","u":"serialized-form.html"}];updateSearchResults(); \ No newline at end of file diff --git a/type-search-index.js b/type-search-index.js new file mode 100644 index 0000000..4f53f65 --- /dev/null +++ b/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"p":"cc.carm.lib.configuration.builder","l":"AbstractConfigBuilder"},{"p":"cc.carm.lib.configuration.builder.impl","l":"AbstractSectionBuilder"},{"p":"cc.carm.lib.configuration.builder.impl","l":"AbstractSourceBuilder"},{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"cc.carm.lib.configuration.value.impl","l":"CachedConfigValue"},{"p":"cc.carm.lib.configuration.value.impl","l":"CollectionConfigValue"},{"p":"cc.carm.lib.configuration.builder.collection","l":"SimpleCollectionCreator.CollectionValueFactory"},{"p":"cc.carm.lib.configuration.builder","l":"CommonConfigBuilder"},{"p":"cc.carm.lib.configuration.function","l":"ConfigExceptionHandler"},{"p":"cc.carm.lib.configuration.source.loader","l":"ConfigInitializeHandler"},{"p":"cc.carm.lib.configuration.builder.list","l":"ConfigListCreator"},{"p":"cc.carm.lib.configuration.builder.map","l":"ConfigMapBuilder"},{"p":"cc.carm.lib.configuration.builder.map","l":"ConfigMapCreator"},{"p":"cc.carm.lib.configuration.annotation","l":"ConfigPath"},{"p":"cc.carm.lib.configuration","l":"Configuration"},{"p":"cc.carm.lib.configuration.source","l":"ConfigurationFactory"},{"p":"cc.carm.lib.configuration.source","l":"ConfigurationHolder"},{"p":"cc.carm.lib.configuration.source.loader","l":"ConfigurationInitializer"},{"p":"cc.carm.lib.configuration.source.meta","l":"ConfigurationMetadata"},{"p":"cc.carm.lib.configuration.source.meta","l":"ConfigurationMetaHolder"},{"p":"cc.carm.lib.configuration.source.option","l":"ConfigurationOption"},{"p":"cc.carm.lib.configuration.source.option","l":"ConfigurationOptionHolder"},{"p":"cc.carm.lib.configuration.value.standard","l":"ConfiguredList"},{"p":"cc.carm.lib.configuration.value.standard","l":"ConfiguredMap"},{"p":"cc.carm.lib.configuration.value.standard","l":"ConfiguredValue"},{"p":"cc.carm.lib.configuration.source.section","l":"ConfigureSection"},{"p":"cc.carm.lib.configuration.source.section","l":"ConfigureSource"},{"p":"cc.carm.lib.configuration.value","l":"ConfigValue"},{"p":"cc.carm.lib.configuration.builder.value","l":"ConfigValueBuilder"},{"p":"cc.carm.lib.configuration.function","l":"DataConsumer"},{"p":"cc.carm.lib.configuration.function","l":"DataFunction"},{"p":"cc.carm.lib.configuration.function","l":"DataValidator"},{"p":"cc.carm.lib.configuration.source.loader","l":"PathGenerator"},{"p":"cc.carm.lib.configuration.adapter.strandard","l":"PrimitiveAdapter"},{"p":"cc.carm.lib.configuration.builder.collection","l":"SimpleCollectionCreator.Section"},{"p":"cc.carm.lib.configuration.builder.collection","l":"SectionCollectionBuilder"},{"p":"cc.carm.lib.configuration.builder.map","l":"SectionMapBuilder"},{"p":"cc.carm.lib.configuration.builder.value","l":"SectionValueBuilder"},{"p":"cc.carm.lib.configuration.builder.collection","l":"SimpleCollectionCreator"},{"p":"cc.carm.lib.configuration.builder.collection","l":"SimpleCollectionCreator.Source"},{"p":"cc.carm.lib.configuration.builder.collection","l":"SourceCollectionBuilder"},{"p":"cc.carm.lib.configuration.builder.map","l":"SourceMapBuilder"},{"p":"cc.carm.lib.configuration.builder.value","l":"SourceValueBuilder"},{"p":"cc.carm.lib.configuration.adapter.strandard","l":"StandardAdapters"},{"p":"cc.carm.lib.configuration.source.meta","l":"StandardMeta"},{"p":"cc.carm.lib.configuration.source.option","l":"StandardOptions"},{"p":"cc.carm.lib.configuration.adapter","l":"ValueAdapter"},{"p":"cc.carm.lib.configuration.adapter","l":"ValueAdapterRegistry"},{"p":"cc.carm.lib.configuration.function","l":"ValueComposer"},{"p":"cc.carm.lib.configuration.function","l":"ValueHandler"},{"p":"cc.carm.lib.configuration.value","l":"ValueManifest"},{"p":"cc.carm.lib.configuration.adapter","l":"ValueParser"},{"p":"cc.carm.lib.configuration.adapter","l":"ValueSerializer"},{"p":"cc.carm.lib.configuration.adapter","l":"ValueType"},{"p":"cc.carm.lib.configuration.function","l":"ValueValidator"}];updateSearchResults(); \ No newline at end of file