Index
All Classes and Interfaces|All Packages|Serialized Form
A
- AlreadyRunning() - Constructor for exception dev.voidframework.core.exception.AppLauncherException.AlreadyRunning
-
Build a new instance.
- AppLauncherException - Exception in dev.voidframework.core.exception
-
All exceptions thrown by the app launcher are subclasses of
AppLauncherException
. - AppLauncherException(String) - Constructor for exception dev.voidframework.core.exception.AppLauncherException
-
Build a new instance.
- AppLauncherException(String, Throwable) - Constructor for exception dev.voidframework.core.exception.AppLauncherException
-
Build a new instance.
- AppLauncherException.AlreadyRunning - Exception in dev.voidframework.core.exception
-
Exception indicates that application is already running.
- AppLauncherException.ModuleInitFailure - Exception in dev.voidframework.core.exception
-
Exception indicates that module initialization just fail.
B
- bindableList() - Method in record class dev.voidframework.core.classestoload.ScannedClassesToLoad
-
Returns the value of the
bindableList
record component. - BindClass - Annotation Interface in dev.voidframework.core.bindable
-
Indicates that an annotated class can be bind.
C
- callMethod(Object, String, Class<?>[], Object...) - Static method in class dev.voidframework.core.helper.Reflection
-
Calls a method.
- callMethod(Object, String, Class<RETURN_TYPE>, Class<?>[], Object...) - Static method in class dev.voidframework.core.helper.Reflection
-
Calls a method.
- canConvert(Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.Conversion
-
Returns whether the given source type can be converted to the given target type.
- canConvert(Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConversion
- canConvert(Object, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.Conversion
-
Returns whether the given object can be converted to the given target type.
- canConvert(Object, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConversion
- ClassesToLoadScanner - Class in dev.voidframework.core.classestoload
-
Classpath scanner to fin classes to load.
- ClassesToLoadScanner() - Constructor for class dev.voidframework.core.classestoload.ClassesToLoadScanner
- ClasspathBootstrapGenerator - Class in dev.voidframework.core.classestoload.generator
-
Generates "classpath.bootstrap" file.
- ClasspathBootstrapGenerator() - Constructor for class dev.voidframework.core.classestoload.generator.ClasspathBootstrapGenerator
- ClassResolver - Class in dev.voidframework.core.helper
-
Helper to resolve class.
- ClassResolver() - Constructor for class dev.voidframework.core.helper.ClassResolver
- Controller - Annotation Interface in dev.voidframework.core.bindable
-
Indicates that an annotated class is a "Controller".
- Conversion - Interface in dev.voidframework.core.conversion
-
Conversion from one type to another.
- ConversionException - Exception in dev.voidframework.core.exception
-
All exceptions thrown by the conversion features are subclasses of
ConversionException
. - ConversionException(String) - Constructor for exception dev.voidframework.core.exception.ConversionException
-
Build a new instance.
- ConversionException.ConverterAlreadyRegistered - Exception in dev.voidframework.core.exception
-
Exception indicates that provided converter is already registered.
- ConversionException.ConverterDoesNotExist - Exception in dev.voidframework.core.exception
-
Exception indicates that requested converter does not exist.
- ConversionException.InvalidConverter - Exception in dev.voidframework.core.exception
-
Exception indicates that something goes wrong during the converter initialization.
- convert(Iterable<SOURCE_TYPE>, Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.Conversion
-
Converts each object from a set to the target type.
- convert(Iterable<SOURCE_TYPE>, Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConversion
- convert(Iterable<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.Conversion
-
Converts each object from an iterable to the target type.
- convert(Iterable<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConversion
- convert(List<SOURCE_TYPE>, Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.Conversion
-
Converts each object from a list to the target type.
- convert(List<SOURCE_TYPE>, Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConversion
- convert(List<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.Conversion
-
Converts each object from a list to the target type.
- convert(List<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConversion
- convert(Set<SOURCE_TYPE>, Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.Conversion
-
Converts each object from a set to the target type.
- convert(Set<SOURCE_TYPE>, Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConversion
- convert(Set<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.Conversion
-
Converts each object from a set to the target type.
- convert(Set<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConversion
- convert(SOURCE_TYPE) - Method in interface dev.voidframework.core.conversion.TypeConverter
-
Converts the given source object to the target type.
- convert(SOURCE_TYPE, Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.Conversion
-
Converts an object to the target type.
- convert(SOURCE_TYPE, Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConversion
- convert(SOURCE_TYPE, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.Conversion
-
Converts an object to the target type.
- convert(SOURCE_TYPE, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConversion
- ConverterAlreadyRegistered(Class<?>, Class<?>) - Constructor for exception dev.voidframework.core.exception.ConversionException.ConverterAlreadyRegistered
-
Build a new instance.
- ConverterCompositeKey - Record Class in dev.voidframework.core.conversion.impl
-
Composite key consisting of the source and destination of the conversion.
- ConverterCompositeKey(Class<?>, Class<?>) - Constructor for record class dev.voidframework.core.conversion.impl.ConverterCompositeKey
-
Creates an instance of a
ConverterCompositeKey
record class. - ConverterDoesNotExist(Class<?>, Class<?>) - Constructor for exception dev.voidframework.core.exception.ConversionException.ConverterDoesNotExist
-
Build a new instance.
- ConverterInformation - Record Class in dev.voidframework.core.classestoload
-
Converter information.
- ConverterInformation(Class<?>, Class<?>, Class<?>) - Constructor for record class dev.voidframework.core.classestoload.ConverterInformation
-
Creates an instance of a
ConverterInformation
record class. - converterInformationList() - Method in record class dev.voidframework.core.classestoload.ScannedClassesToLoad
-
Returns the value of the
converterInformationList
record component. - ConverterManager - Interface in dev.voidframework.core.conversion
-
Handle all registered converters.
- converterTypeClass() - Method in record class dev.voidframework.core.classestoload.ConverterInformation
-
Returns the value of the
converterTypeClass
record component. - count() - Method in record class dev.voidframework.core.classestoload.ScannedClassesToLoad
-
Returns the number of scanned classes detected as loadable.
- count() - Method in interface dev.voidframework.core.conversion.ConverterManager
-
Returns the number of registered converters.
- count() - Method in class dev.voidframework.core.conversion.impl.DefaultConverterManager
D
- DefaultConversion - Class in dev.voidframework.core.conversion.impl
-
Default implementation of
Conversion
. - DefaultConversion(ConverterManager) - Constructor for class dev.voidframework.core.conversion.impl.DefaultConversion
-
Build a new instance.
- DefaultConverterManager - Class in dev.voidframework.core.conversion.impl
-
Default implementation of
ConverterManager
. - DefaultConverterManager() - Constructor for class dev.voidframework.core.conversion.impl.DefaultConverterManager
-
Build a new instance.
- dev.voidframework.core - package dev.voidframework.core
- dev.voidframework.core.bindable - package dev.voidframework.core.bindable
- dev.voidframework.core.classestoload - package dev.voidframework.core.classestoload
- dev.voidframework.core.classestoload.generator - package dev.voidframework.core.classestoload.generator
- dev.voidframework.core.conversion - package dev.voidframework.core.conversion
- dev.voidframework.core.conversion.impl - package dev.voidframework.core.conversion.impl
- dev.voidframework.core.exception - package dev.voidframework.core.exception
- dev.voidframework.core.helper - package dev.voidframework.core.helper
- dev.voidframework.core.lang - package dev.voidframework.core.lang
- dev.voidframework.core.lifecycle - package dev.voidframework.core.lifecycle
E
- Either<LEFT_TYPE,
RIGHT_TYPE> - Class in dev.voidframework.core.lang -
Represents a value of one or two possible types (a disjoint union).
- equals(Object) - Method in record class dev.voidframework.core.classestoload.ConverterInformation
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class dev.voidframework.core.classestoload.ScannedClassesToLoad
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class dev.voidframework.core.conversion.impl.ConverterCompositeKey
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in class dev.voidframework.core.lang.TypedMap
- equals(Object) - Method in class dev.voidframework.core.lang.TypedMap.Key
F
- findClassesToLoad(String[], String[], List<String>) - Static method in class dev.voidframework.core.classestoload.ClassesToLoadScanner
-
Scan given paths to find classes to bind.
- forName(String) - Static method in class dev.voidframework.core.helper.ClassResolver
-
Resolves
Class<?>
for a class name. - forName(String, ClassLoader) - Static method in class dev.voidframework.core.helper.ClassResolver
-
Resolves
Class<?>
for a class name. - fromJson(byte[], Class<OUTPUT_TYPE>) - Static method in class dev.voidframework.core.helper.Json
-
Converts a JSON document into to a Java object.
- fromJson(JsonNode, Class<OUTPUT_TYPE>) - Static method in class dev.voidframework.core.helper.Json
-
Converts a JSON document into to a Java object.
- fromJson(String, Class<OUTPUT_TYPE>) - Static method in class dev.voidframework.core.helper.Json
-
Converts a JSON document into to a Java object.
- fromMap(Map<?, ?>, Class<OUTPUT_TYPE>) - Static method in class dev.voidframework.core.helper.Json
-
Converts a data map into to a Java object.
- fromXml(byte[], Class<OUTPUT_TYPE>) - Static method in class dev.voidframework.core.helper.Xml
-
Converts a XML document into to a Java object.
- fromXml(Document, Class<OUTPUT_TYPE>) - Static method in class dev.voidframework.core.helper.Xml
-
Converts a XML document into to a Java object.
- fromYaml(byte[], Class<OUTPUT_TYPE>) - Static method in class dev.voidframework.core.helper.Yaml
-
Converts a YAML document into to a Java object.
- fromYaml(JsonNode, Class<OUTPUT_TYPE>) - Static method in class dev.voidframework.core.helper.Yaml
-
Converts a YAML document into to a Java object.
G
- get(TypedMap.Key<T>) - Method in class dev.voidframework.core.lang.TypedMap
-
Retrieves the value associated to the specified key.
- getAnnotatedField(Class<?>, Class<? extends Annotation>) - Static method in class dev.voidframework.core.helper.Reflection
-
Retrieves a specific annotated field.
- getAnnotatedField(Object, Class<? extends Annotation>) - Static method in class dev.voidframework.core.helper.Reflection
-
Retrieves a specific annotated field.
- getConverter(Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.ConverterManager
-
Returns whether the Manager have converter for the given input / output type.
- getConverter(Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConverterManager
- getFieldValue(Object, String, Reflection.WrappedClass<VALUE_TYPE>) - Static method in class dev.voidframework.core.helper.Reflection
-
Retrieves the value of a specific field.
- getFieldValue(Object, String, Class<VALUE_TYPE>) - Static method in class dev.voidframework.core.helper.Reflection
-
Retrieves the value of a specific field.
- getInstance(Class<T>) - Method in class dev.voidframework.core.VoidApplication
-
Get instance of a specific bind class.
- getLeft() - Method in class dev.voidframework.core.lang.Either
-
Returns the "Left" value.
- getRight() - Method in class dev.voidframework.core.lang.Either
-
Returns the "Right" value.
- getVersion() - Static method in class dev.voidframework.core.helper.VoidFrameworkVersion
-
Retrieves the framework version.
- getWrappedClass() - Method in class dev.voidframework.core.helper.Reflection.WrappedClass
-
Returns the wrapped class type.
- gracefulStopTimeoutConfigKey() - Element in annotation interface dev.voidframework.core.lifecycle.LifeCycleStop
-
Defines the configuration key for the time (in milliseconds) to shut down properly.
H
- hasConvertFor(Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in interface dev.voidframework.core.conversion.ConverterManager
-
Returns whether the Manager have converter for the given input / output type.
- hasConvertFor(Class<SOURCE_TYPE>, Class<TARGET_TYPE>) - Method in class dev.voidframework.core.conversion.impl.DefaultConverterManager
- hashCode() - Method in record class dev.voidframework.core.classestoload.ConverterInformation
-
Returns a hash code value for this object.
- hashCode() - Method in record class dev.voidframework.core.classestoload.ScannedClassesToLoad
-
Returns a hash code value for this object.
- hashCode() - Method in record class dev.voidframework.core.conversion.impl.ConverterCompositeKey
-
Returns a hash code value for this object.
- hashCode() - Method in class dev.voidframework.core.lang.TypedMap
- hashCode() - Method in class dev.voidframework.core.lang.TypedMap.Key
- hasLeft() - Method in class dev.voidframework.core.lang.Either
-
Checks if the "Left" value is set.
- hasRight() - Method in class dev.voidframework.core.lang.Either
-
Checks if the "Right" value is set.
- hear(TypeLiteral<CLASS_TYPE>, TypeEncounter<CLASS_TYPE>) - Method in class dev.voidframework.core.lifecycle.LifeCycleAnnotationListener
- Hex - Class in dev.voidframework.core.helper
-
String utility methods.
- Hex() - Constructor for class dev.voidframework.core.helper.Hex
I
- InvalidConverter(String, String) - Constructor for exception dev.voidframework.core.exception.ConversionException.InvalidConverter
-
Build a new instance.
- InvocationFailure(String, String, Throwable) - Constructor for exception dev.voidframework.core.exception.LifeCycleException.InvocationFailure
-
Build a new instance.
- isProxy(Class<?>) - Static method in class dev.voidframework.core.helper.ProxyDetector
-
Checks whether the given class is a proxy.
- isProxy(Object) - Static method in class dev.voidframework.core.helper.ProxyDetector
-
Checks whether the given object is a proxy.
J
- Json - Class in dev.voidframework.core.helper
-
Helper to handle JSON document.
- Json() - Constructor for class dev.voidframework.core.helper.Json
L
- launch() - Method in class dev.voidframework.core.VoidApplication
-
Launch Void Framework.
- LifeCycleAnnotationListener - Class in dev.voidframework.core.lifecycle
-
Listens to the different bind classes to detect which ones have methods to call when starting or stopping the application.
- LifeCycleAnnotationListener(LifeCycleManager) - Constructor for class dev.voidframework.core.lifecycle.LifeCycleAnnotationListener
-
Build a new instance.
- LifeCycleException - Exception in dev.voidframework.core.exception
-
All exceptions thrown by the life cycle features are subclasses of
LifeCycleException
. - LifeCycleException(String, Throwable) - Constructor for exception dev.voidframework.core.exception.LifeCycleException
-
Build a new instance.
- LifeCycleException.InvocationFailure - Exception in dev.voidframework.core.exception
-
Exception indicates that method invocation failed miserably.
- LifeCycleManager - Class in dev.voidframework.core.lifecycle
-
Life cycle manager takes care of executing the various hooks defined by the use of the
LifeCycleStart
andLifeCycleStop
annotations. - LifeCycleManager(Config) - Constructor for class dev.voidframework.core.lifecycle.LifeCycleManager
-
Build a new instance.
- LifeCycleStart - Annotation Interface in dev.voidframework.core.lifecycle
-
Indicates that the method should be called when the application is started.
- LifeCycleStop - Annotation Interface in dev.voidframework.core.lifecycle
-
Indicates that the method should be called when the application is stopped.
M
- main(String[]) - Static method in class dev.voidframework.core.classestoload.generator.ClasspathBootstrapGenerator
-
Main entry of the generator (called by Maven).
- match(Consumer<LEFT_TYPE>, Consumer<RIGHT_TYPE>) - Method in class dev.voidframework.core.lang.Either
-
Applies the right consumer.
- match(Function<LEFT_TYPE, RETURN_TYPE>, Function<RIGHT_TYPE, RETURN_TYPE>) - Method in class dev.voidframework.core.lang.Either
-
Applies the right function.
- ModuleInitFailure(Class<?>, Throwable) - Constructor for exception dev.voidframework.core.exception.AppLauncherException.ModuleInitFailure
-
Build a new instance.
- moduleList() - Method in record class dev.voidframework.core.classestoload.ScannedClassesToLoad
-
Returns the value of the
moduleList
record component.
O
- objectMapper() - Static method in class dev.voidframework.core.helper.Json
-
Gets the object mapper.
- of(String) - Static method in class dev.voidframework.core.lang.TypedMap.Key
-
Build a new key.
- ofLeft(LEFT_TYPE) - Static method in class dev.voidframework.core.lang.Either
-
Creates a
Either
with left value set. - ofRight(RIGHT_TYPE) - Static method in class dev.voidframework.core.lang.Either
-
Creates a
Either
with right value set.
P
- persistClassesToLoad(ScannedClassesToLoad, Path) - Static method in class dev.voidframework.core.classestoload.ClassesToLoadScanner
-
Persists a
ScannedClassesToLoad
object. - priority() - Element in annotation interface dev.voidframework.core.lifecycle.LifeCycleStart
-
Defines the start-up priority.
- priority() - Element in annotation interface dev.voidframework.core.lifecycle.LifeCycleStop
-
Defines priority when stopping.
- ProxyDetector - Class in dev.voidframework.core.helper
-
Helper to detect proxy class.
- ProxyDetector() - Constructor for class dev.voidframework.core.helper.ProxyDetector
- put(TypedMap.Key<T>, T) - Method in class dev.voidframework.core.lang.TypedMap
-
Associates the specified value with the specified key.
R
- Reflection - Class in dev.voidframework.core.helper
-
Reflection-based utility methods.
- Reflection() - Constructor for class dev.voidframework.core.helper.Reflection
- Reflection.WrappedClass<CLASS_TYPE> - Class in dev.voidframework.core.helper
-
Allows to wrap a complex class type (ie: Map{String, Integer})
- registerConverter(Class<?>, Class<?>, TypeConverter<?, ?>) - Method in interface dev.voidframework.core.conversion.ConverterManager
-
Register converter.
- registerConverter(Class<?>, Class<?>, TypeConverter<?, ?>) - Method in class dev.voidframework.core.conversion.impl.DefaultConverterManager
- registerStart(Class<?>, Method, int) - Method in class dev.voidframework.core.lifecycle.LifeCycleManager
-
Register a "START" method.
- registerStop(Class<?>, Method, int, String) - Method in class dev.voidframework.core.lifecycle.LifeCycleManager
-
Register a "STOP" method.
- remove(TypedMap.Key<T>) - Method in class dev.voidframework.core.lang.TypedMap
-
Removes the value associated to the specified key.
- Repository - Annotation Interface in dev.voidframework.core.bindable
-
Indicates that an annotated class is a "Repository".
- resolveMethod(String, Class<?>) - Static method in class dev.voidframework.core.helper.Reflection
-
Resolves a methode from it name.
- restoreClassesToLoad(InputStream) - Static method in class dev.voidframework.core.classestoload.ClassesToLoadScanner
-
Restore a
ScannedClassesToLoad
from the given stream.
S
- ScannedClassesToLoad - Record Class in dev.voidframework.core.classestoload
-
Scanned classes to load into Guice.
- ScannedClassesToLoad(List<Class<?>>, List<Class<?>>, List<ConverterInformation>) - Constructor for record class dev.voidframework.core.classestoload.ScannedClassesToLoad
-
Creates an instance of a
ScannedClassesToLoad
record class. - Service - Annotation Interface in dev.voidframework.core.bindable
-
Indicates that an annotated class is a "Service".
- setFieldValue(Object, String, Object) - Static method in class dev.voidframework.core.helper.Reflection
-
Sets the value of a specific field.
- setInjector(Injector) - Method in class dev.voidframework.core.lifecycle.LifeCycleManager
-
Sets the injector.
- sourceTypeClass() - Method in record class dev.voidframework.core.classestoload.ConverterInformation
-
Returns the value of the
sourceTypeClass
record component. - sourceTypeClass() - Method in record class dev.voidframework.core.conversion.impl.ConverterCompositeKey
-
Returns the value of the
sourceTypeClass
record component. - startAll() - Method in class dev.voidframework.core.lifecycle.LifeCycleManager
-
Invoke all registered "START" methods.
- stopAll() - Method in class dev.voidframework.core.lifecycle.LifeCycleManager
-
Invoke all registered "STOP" methods.
T
- targetTypeClass() - Method in record class dev.voidframework.core.classestoload.ConverterInformation
-
Returns the value of the
targetTypeClass
record component. - targetTypeClass() - Method in record class dev.voidframework.core.conversion.impl.ConverterCompositeKey
-
Returns the value of the
targetTypeClass
record component. - toHex(byte[]) - Static method in class dev.voidframework.core.helper.Hex
-
Convert each byte composing given array into hexadecimal representation.
- toHex(String) - Static method in class dev.voidframework.core.helper.Hex
-
Convert each byte composing given string into hexadecimal representation.
- toJson(byte[]) - Static method in class dev.voidframework.core.helper.Json
-
Converts a byte array to a JSON document.
- toJson(Object) - Static method in class dev.voidframework.core.helper.Json
-
Converts an object to JSON document.
- toMap(Object) - Static method in class dev.voidframework.core.helper.Json
-
Converts an object into a data map.
- toString() - Method in record class dev.voidframework.core.classestoload.ConverterInformation
-
Returns a string representation of this record class.
- toString() - Method in record class dev.voidframework.core.classestoload.ScannedClassesToLoad
-
Returns a string representation of this record class.
- toString() - Method in record class dev.voidframework.core.conversion.impl.ConverterCompositeKey
-
Returns a string representation of this record class.
- toString() - Method in class dev.voidframework.core.lang.TypedMap.Key
- toString() - Method in class dev.voidframework.core.lang.TypedMap
- toString(JsonNode) - Static method in class dev.voidframework.core.helper.Json
-
Converts a JSON to string.
- toString(JsonNode) - Static method in class dev.voidframework.core.helper.Yaml
-
Converts an YAML to string.
- toString(Document) - Static method in class dev.voidframework.core.helper.Xml
-
Converts an XML to string.
- toXml(byte[]) - Static method in class dev.voidframework.core.helper.Xml
-
Converts a byte array to an XML document.
- toYaml(byte[]) - Static method in class dev.voidframework.core.helper.Yaml
-
Converts a byte array to a YAML document.
- toYaml(Object) - Static method in class dev.voidframework.core.helper.Yaml
-
Converts an object to YAML document.
- TypeConverter<SOURCE_TYPE,
TARGET_TYPE> - Interface in dev.voidframework.core.conversion -
All type converters must implement this interface.
- TypedMap - Class in dev.voidframework.core.lang
-
Typed key-value map.
- TypedMap() - Constructor for class dev.voidframework.core.lang.TypedMap
-
Build a new instance.
- TypedMap.Key<T> - Class in dev.voidframework.core.lang
-
TypedMap Key.
V
- VoidApplication - Class in dev.voidframework.core
-
Application launcher are expected to instantiate and run all parts of an application based on Void Framework, wiring everything together.
- VoidApplication() - Constructor for class dev.voidframework.core.VoidApplication
-
Build a new instance.
- VoidFrameworkVersion - Class in dev.voidframework.core.helper
-
Helper to retrieve Void Framework version.
- VoidFrameworkVersion() - Constructor for class dev.voidframework.core.helper.VoidFrameworkVersion
W
- WrappedClass() - Constructor for class dev.voidframework.core.helper.Reflection.WrappedClass
-
Build a new instance.
X
- Xml - Class in dev.voidframework.core.helper
-
Helper to handle XML document.
- Xml() - Constructor for class dev.voidframework.core.helper.Xml
Y
- Yaml - Class in dev.voidframework.core.helper
-
Helper to handle YAML document.
- Yaml() - Constructor for class dev.voidframework.core.helper.Yaml
All Classes and Interfaces|All Packages|Serialized Form