Uses of Annotation Interface
org.tquadrat.foundation.annotation.ClassVersion
Packages that use ClassVersion
Package
Description
Some specialised annotations that are either meant to support change
management and field support (like
ClassVersion
)
or to provide other advanced functionality.A collection of
Exceptions
that are defined for the Foundation library set.
Functional interfaces for the Foundation Library.
TCE versions of the
functional interfaces
in the package
java.util.function
and others.Some general language extensions provided by the Foundation
Library.
The internal implementations of some general language extensions provided
by the Foundation Library.
The code in this package was originally written by Dominic Fox and provided
in the package
com.codepoetics.protonpack
.The internal classes for the stream extensions.
-
Uses of ClassVersion in org.tquadrat.foundation.annotation
Classes in org.tquadrat.foundation.annotation with annotations of type ClassVersionModifier and TypeClassDescription@interface
This annotation allows to add information about applied fixes to a program element.@interface
The annotation container for@BUG
annotations.@interface
The marker annotation for methods that are meant to be overwritten in child classes.@interface
This is the marker annotation for a "Playground Class"@interface
This is the marker annotation for a "Main" class.@interface
Associates a property name to a method.@interface
This is a marker annotation for a utility class. -
Uses of ClassVersion in org.tquadrat.foundation.exception
Classes in org.tquadrat.foundation.exception with annotations of type ClassVersionModifier and TypeClassDescriptionclass
Use the application error to signal the abort of an application.
This implementation ofError
allows to set a flag that indicates whether this instance was already logged or not.final class
This is a specialized implementation for theIllegalArgumentException
that should be used instead of the latter in cases where a blank String is provided as an illegal argument value.final class
This is a specialized implementation for theIllegalArgumentException
that should be used instead of the latter in cases where aCharSequence
provided as a method argument is too long according to some external constraints, like the column definition of a database.class
A generic wrapper for checked exceptions.final class
This is a specialized implementation for theIllegalArgumentException
that should be used instead of the latter in cases where an empty String, array orCollection
argument is provided as an illegal argument value.class
This implementation ofRuntimeException
will be thrown when an attempted operation is not valid for the current context.final class
This implementation ofError
should be thrown in all cases where an exception was caught that seemed to be impossible to be thrown.final class
A "container" exception for exception thrown within lambda expressions.class
This is a specialized implementation for theIllegalArgumentException
that should be used instead of the latter in cases wherenull
is provided as an illegal argument value.class
This implementation ofError
should be called fromprivate
constructors of static classes (classes that does not allow any instances because they have only static methods or constants).class
This implementation ofError
should be thrown in all cases where an unexpected exception was caught.final class
This is a specialized implementation forError
that is to be thrown especially from thedefault
branch of aswitch
statement that uses anenum
type as selector.class
This is a specialized implementation for theIllegalArgumentException
that is meant as the root for a hierarchy of exceptions caused by validation errors. -
Uses of ClassVersion in org.tquadrat.foundation.function
Classes in org.tquadrat.foundation.function with annotations of type ClassVersionModifier and TypeClassDescriptionfinal class
Some helper methods for the use with lambdas and functional interfaces.interface
Getter<T>
The definition for a getter method.interface
Represents a supplier ofNumber
-valued results.interface
Setter<T>
The definition for a setter method.interface
TriConsumer<A,
B, C> Represents an operation that accepts three input arguments and returns no result.interface
TriFunction<A,
B, C, R> Represents an operation that accepts three input arguments and produces a result. -
Uses of ClassVersion in org.tquadrat.foundation.function.tce
Classes in org.tquadrat.foundation.function.tce with annotations of type ClassVersionModifier and TypeInterfaceDescriptioninterface
TCEBiConsumer<T1,
T2> The TCE version of the interfaceBiConsumer
that represents an operation that accepts two input arguments and returns no result.interface
TCEBiFunction<T1,
T2, R> The TCE version of the interfaceBiFunction
that represents a function that accepts two arguments and produces a result.interface
The TCE version of the interfaceBinaryOperator
that represents an operation upon two operands of the same type, producing a result of the same type as the operands.interface
TCEConsumer<T>
The TCE version of the interfaceConsumer
that represents an operation that accepts a single input argument and returns no result.interface
TCEFunction<T,
R> The TCE version of the interfaceFunction
that represents a function that accepts one argument and produces a result.interface
TCEPredicate<T>
The TCE version of the interfacePredicate
that represents a predicate (boolean-valued function) of one argument.interface
TCESupplier<T>
The TCE version of the interfaceSupplier
that represents a supplier of results.interface
TCETriConsumer<T1,
T2, T3> The TCE version of the interfaceTriConsumer
that represents an operation that accepts three input arguments and returns no result.interface
TCETriFunction<A,
B, C, R> The TCE version of the interfaceTriFunction
that represents a function that accepts three arguments and produces a result.
Different from the methodFunction.apply()
the methodTCETriFunction.apply(Object, Object, Object)
of this interface declares to throw a checked exception.
This is a functional interface whose functional method isTCETriFunction.apply(Object, Object, Object)
. -
Uses of ClassVersion in org.tquadrat.foundation.lang
Classes in org.tquadrat.foundation.lang with annotations of type ClassVersionModifier and TypeInterfaceDescriptioninterface
A variant of the interfaceRunnable
with aAction.run()
method that allows to throw an exception.interface
A wrapper for locks that supports thetry-with-resources
feature of Java 7.static final class
This exception is thrown when an operation fails.final class
This class provides a bunch of commonly used constants.interface
A functional interface whoseConstraint.evaluate()
method return aboolean
and can throw anException
in case of an errorfinal class
Some functions for DEBUG and TEST output to the console.interface
ErrorHandler<C>
This is aFunctionalInterface
meant to process a given error code and to throw an exception based on that, or to cause some side effects.class
This implementation ofStringConverter
allows to create an instance ofStringConverter
for an arbitrary type on the fly.interface
Lazy<T>
A holder for a lazy initialised object instance.interface
Allows to execute an operation with an obtained lock.final record
An implementation of a name-value-pair.final class
This class consists of several utility methods working onObject
instances, similar to those onArrays
orCollections
.interface
Operation<R>
A variant of the interfaceSupplier
with aOperation.get()
method that allows to throw an exception.final record
Pair<L,
R> The implementation of a tupel.interface
Prints a formatted message.interface
SoftLazy<T>
Instances of the classSoftLazy
allow to lazy load data that may be needed more than once, but not permanently.final record
Status<V,
C> Instances of this record are meant to be used as the return values for methods that should either return a proper result, or an error code.interface
Defines the conversion between Strings and object instances, where the concrete behaviour is defined by the implementation of the interface.interface
Stringer<T>
This interface defines a method to compose a String representation from arbitrary objects.interface
A builder for an implementation ofThreadFactory
.class
An implementation ofThreadGroup
that allows to configure the behaviour ofThreadGroupExt.uncaughtException(Thread, Throwable)
-
Uses of ClassVersion in org.tquadrat.foundation.lang.internal
Classes in org.tquadrat.foundation.lang.internal with annotations of type ClassVersionModifier and TypeClassDescriptionfinal class
The implementation ofAutoLock
.class
DefaultEnumStringConverter<T extends Enum<T>>
The default implementation ofStringConverter
for types that are derived fromEnum
.
The implementation ofDefaultEnumStringConverter.fromString(CharSequence)
provided here usesClass.getEnumConstants()
to find theenum
value:final class
LazyImpl<T>
The implementation of the interfaceLazy
.final class
The implementation ofLockExecutor
.final class
SoftLazyImpl<T>
The implementation for theSoftLazy
interface.final class
The implementation for theStringConverter
service methods.final class
The implementation ofThreadFactoryBuilder
.private static final class
The implementation ofThreadFactory
that is returned byThreadFactoryBuilder.build()
. -
Uses of ClassVersion in org.tquadrat.foundation.stream
Classes in org.tquadrat.foundation.stream with annotations of type ClassVersionModifier and TypeClassDescriptionfinal class
Indexed<T>
A value combined with an index, indicating its position in an ordered sequence.interface
MapStream<K,
V> A stream ofMap.Entry<K,V>
.interface
Selector<T>
A selector function takes an array of values and returns the respective array index for the selected value.final class
Some useful implementations of theSelector
interface.class
This class allows to intercept the calls to the methods ofStream
.final class
Utility class providing static methods for performing various operations on Streams. -
Uses of ClassVersion in org.tquadrat.foundation.stream.internal
Classes in org.tquadrat.foundation.stream.internal with annotations of type ClassVersionModifier and TypeClassDescriptionclass
An implementation ofSpliterator
that aggregates the elements of the stream based on a providedPredicate
.final class
DefaultMapStream<K,
V> The default implementation forMapStream
.final class
A selector function takes an array of values and returns the respective array index for the selected value.final class
MergingSpliterator<T,
O> An implementation ofSpliterator
that merges streams.final class
An implementation ofSpliterator
that skips elements on the stream that do not match the provided condition.final class
An implementation ofSpliterator
that takes elements from a stream while the givenPredicate
returnstrue
.final class
An implementation ofSpliterator
that which takes a seed value and applies a generator to create the next value, feeding each new value back into the generator to create subsequent values.final class
ZippingSpliterator<L,
R, O> An implementation ofSpliterator
that zips two streams into one.