Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
T
- takeMax() - Static method in class org.tquadrat.foundation.stream.Selectors
-
Returns a
Selector
implementation that will always return the index for the greatest value from the given array, based on the natural order of the values. - takeMax(Comparator<? super T>) - Static method in class org.tquadrat.foundation.stream.Selectors
-
Returns a
Selector
implementation that will always return the index for the greatest value from the given array, imposed by the given comparator. - takeMin() - Static method in class org.tquadrat.foundation.stream.Selectors
-
Returns a
Selector
implementation that will always return the index for the smallest value from the given array, based on the natural order of the values. - takeMin(Comparator<? super T>) - Static method in class org.tquadrat.foundation.stream.Selectors
-
Returns a
Selector
implementation that will always return the index for the smallest value from the given array, imposed by the given comparator. - takeUntil(BaseStream<T, Stream<T>>, Predicate<T>) - Static method in class org.tquadrat.foundation.stream.StreamUtils
-
Construct a stream which takes values from the source stream until one of them meets the supplied condition, and then stops.
- takeWhile(Predicate<? super T>) - Method in class org.tquadrat.foundation.stream.StreamAdapter
- takeWhile(BaseStream<T, Stream<T>>, Predicate<T>) - Static method in class org.tquadrat.foundation.stream.StreamUtils
-
Construct a stream which takes values from the source stream for as long as they meet the supplied condition, and stops as soon as a value is encountered which does not meet the condition.
- TakeWhileSpliterator<T> - Class in org.tquadrat.foundation.stream.internal
-
An implementation of
Spliterator
that takes elements from a stream while the givenPredicate
returnstrue
. - TakeWhileSpliterator(Spliterator<T>, Predicate<T>) - Constructor for class org.tquadrat.foundation.stream.internal.TakeWhileSpliterator
-
Creates a new
TakeWhileSpliterator
instance. - tap(Stream<T>, Consumer<? super T>) - Static method in class org.tquadrat.foundation.stream.StreamUtils
-
Taps a stream so that as each item in the stream is released from the underlying spliterator, it is also sent to the tap.
- TCEBiConsumer<T1,
T2> - Interface in org.tquadrat.foundation.function.tce -
The TCE version of the interface
BiConsumer
that represents an operation that accepts two input arguments and returns no result. - TCEBiFunction<T1,
T2, - Interface in org.tquadrat.foundation.function.tceR> -
The TCE version of the interface
BiFunction
that represents a function that accepts two arguments and produces a result. - TCEBinaryOperator<T> - Interface in org.tquadrat.foundation.function.tce
-
The TCE version of the interface
BinaryOperator
that represents an operation upon two operands of the same type, producing a result of the same type as the operands. - TCEConsumer<T> - Interface in org.tquadrat.foundation.function.tce
-
The TCE version of the interface
Consumer
that represents an operation that accepts a single input argument and returns no result. - TCEFunction<T,
R> - Interface in org.tquadrat.foundation.function.tce -
The TCE version of the interface
Function
that represents a function that accepts one argument and produces a result. - TCEPredicate<T> - Interface in org.tquadrat.foundation.function.tce
-
The TCE version of the interface
Predicate
that represents a predicate (boolean-valued function) of one argument. - TCESupplier<T> - Interface in org.tquadrat.foundation.function.tce
-
The TCE version of the interface
Supplier
that represents a supplier of results. - TCETriConsumer<T1,
T2, - Interface in org.tquadrat.foundation.function.tceT3> -
The TCE version of the interface
TriConsumer
that represents an operation that accepts three input arguments and returns no result. - TCETriFunction<A,
B, - Interface in org.tquadrat.foundation.function.tceC, R> -
The TCE version of the interface
TriFunction
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)
. - TCE Wrapper - Search tag in class org.tquadrat.foundation.function.Functions
- Section
- test(T) - Method in interface org.tquadrat.foundation.function.tce.TCEPredicate
-
Evaluates this predicate on the given argument.
- THOUSANDS_SEPARATOR - Static variable in class org.tquadrat.foundation.lang.CommonConstants
-
The grouping separator for the current locale, used with large numbers to separate thousands.
- ThreadFactoryBuilder - Interface in org.tquadrat.foundation.lang
-
A builder for an implementation of
ThreadFactory
. - ThreadFactoryBuilderImpl - Class in org.tquadrat.foundation.lang.internal
-
The implementation of
ThreadFactoryBuilder
. - ThreadFactoryBuilderImpl() - Constructor for class org.tquadrat.foundation.lang.internal.ThreadFactoryBuilderImpl
-
Creates a new instance of
ThreadFactoryBuilderImpl
. - ThreadFactoryBuilderImpl.ThreadFactoryImpl - Class in org.tquadrat.foundation.lang.internal
-
The implementation of
ThreadFactory
that is returned byThreadFactoryBuilder.build()
. - ThreadFactoryImpl(IntFunction<String>, ThreadGroup, long, boolean, ClassLoader, boolean, int, Thread.UncaughtExceptionHandler, boolean) - Constructor for class org.tquadrat.foundation.lang.internal.ThreadFactoryBuilderImpl.ThreadFactoryImpl
-
Creates a new instance of
ThreadFactoryImpl
. - THREADGROUP_MAIN - Static variable in class org.tquadrat.foundation.lang.CommonConstants
-
The name of the main thread group: "main".
This is the group of the main thread. - THREADGROUP_SYSTEM - Static variable in class org.tquadrat.foundation.lang.CommonConstants
-
The name of the system thread group: "system".
This is the group of several system threads and the parent thread group for the main thread group. - ThreadGroupExt - Class in org.tquadrat.foundation.lang
-
An implementation of
ThreadGroup
that allows to configure the behaviour ofThreadGroupExt.uncaughtException(Thread, Throwable)
- ThreadGroupExt(String) - Constructor for class org.tquadrat.foundation.lang.ThreadGroupExt
-
Constructs a new thread group.
- ThreadGroupExt(String, Thread.UncaughtExceptionHandler) - Constructor for class org.tquadrat.foundation.lang.ThreadGroupExt
-
Constructs a new thread group.
- ThreadGroupExt(ThreadGroup, String) - Constructor for class org.tquadrat.foundation.lang.ThreadGroupExt
-
Constructs a new thread group.
- ThreadGroupExt(ThreadGroup, String, Thread.UncaughtExceptionHandler) - Constructor for class org.tquadrat.foundation.lang.ThreadGroupExt
-
Constructs a new thread group.
- TIME_DELTA_BEGINGREGORIAN2BEGINEPOCH - Static variable in class org.tquadrat.foundation.lang.CommonConstants
-
The time between 1582-10-15T00:00 (the start of the Gregorian calendar) and 1970-01-01T00:00 (the beginning of the "Epoch") in seconds: 12219292800L.
- toArray() - Method in class org.tquadrat.foundation.stream.internal.DefaultMapStream
- toArray() - Method in class org.tquadrat.foundation.stream.StreamAdapter
- toArray(IntFunction<A[]>) - Method in class org.tquadrat.foundation.stream.internal.DefaultMapStream
- toArray(IntFunction<A[]>) - Method in class org.tquadrat.foundation.stream.StreamAdapter
- toFunction() - Method in interface org.tquadrat.foundation.lang.Stringer
-
Returns this
Stringer
instance as an instance ofFunction
. - toString() - Method in class org.tquadrat.foundation.lang.internal.LazyImpl
- toString() - Method in class org.tquadrat.foundation.lang.internal.ThreadFactoryBuilderImpl
- toString() - Method in interface org.tquadrat.foundation.lang.Lazy
- toString() - Method in record class org.tquadrat.foundation.lang.NameValuePair
-
Returns a string representation of this record class.
- toString() - Method in record class org.tquadrat.foundation.lang.Pair
-
Returns a string representation of this record class.
- toString() - Method in record class org.tquadrat.foundation.lang.Status
-
Returns a string representation of this record class.
- toString(Object) - Static method in class org.tquadrat.foundation.lang.Objects
- toString(Object, String) - Static method in class org.tquadrat.foundation.lang.Objects
- toString(T) - Method in class org.tquadrat.foundation.lang.GenericStringConverter
-
Converts the given object instance to a String.
- toString(T) - Method in class org.tquadrat.foundation.lang.internal.DefaultEnumStringConverter
-
Converts the given object instance to a String.
- toString(T) - Method in interface org.tquadrat.foundation.lang.StringConverter
-
Converts the given object instance to a String.
- toString(T) - Method in interface org.tquadrat.foundation.lang.Stringer
- toString(T, Stringer<? super T>, String) - Static method in class org.tquadrat.foundation.lang.Objects
- TriConsumer<A,
B, - Interface in org.tquadrat.foundation.functionC> -
Represents an operation that accepts three input arguments and returns no result.
- TriFunction<A,
B, - Interface in org.tquadrat.foundation.functionC, R> -
Represents an operation that accepts three input arguments and produces a result.
- TROPICAL_YEAR - Static variable in class org.tquadrat.foundation.lang.CommonConstants
-
The length of a (tropical) year in days, according to SI: 365.242190517 d.
- tryAdvance(Consumer<? super List<I>>) - Method in class org.tquadrat.foundation.stream.internal.AggregatingSpliterator
- tryAdvance(Consumer<? super O>) - Method in class org.tquadrat.foundation.stream.internal.MergingSpliterator
- tryAdvance(Consumer<? super O>) - Method in class org.tquadrat.foundation.stream.internal.ZippingSpliterator
- tryAdvance(Consumer<? super T>) - Method in class org.tquadrat.foundation.stream.internal.InterleavingSpliterator
- tryAdvance(Consumer<? super T>) - Method in class org.tquadrat.foundation.stream.internal.SkipUntilSpliterator
- tryAdvance(Consumer<? super T>) - Method in class org.tquadrat.foundation.stream.internal.TakeWhileSpliterator
- tryAdvance(Consumer<? super T>) - Method in class org.tquadrat.foundation.stream.internal.UnfoldSpliterator
- trySplit() - Method in class org.tquadrat.foundation.stream.internal.AggregatingSpliterator
- trySplit() - Method in class org.tquadrat.foundation.stream.internal.InterleavingSpliterator
- trySplit() - Method in class org.tquadrat.foundation.stream.internal.MergingSpliterator
- trySplit() - Method in class org.tquadrat.foundation.stream.internal.SkipUntilSpliterator
- trySplit() - Method in class org.tquadrat.foundation.stream.internal.TakeWhileSpliterator
- trySplit() - Method in class org.tquadrat.foundation.stream.internal.UnfoldSpliterator
- trySplit() - Method in class org.tquadrat.foundation.stream.internal.ZippingSpliterator
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form