Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
T
- TAGREMOVAL_PATTERN - Static variable in class org.tquadrat.foundation.util.StringUtils
-
The regular expression for an HTML or XML tag: "(?:<!--.+?-->)|(?:<[^>]+?>)".
This pattern is used by theStringUtils.stripTags(CharSequence)
method.
As HTML/XML comments may contain a "greater than" sign ('>' or '>'), it is necessary to treat comments separately.
Just as a reminder: several sources recommend using the following idiom for embedded JavaScript: - tail() - Method in interface org.tquadrat.foundation.util.HeadTailList
-
Returns the tail of the list.
- tail() - Method in class org.tquadrat.foundation.util.internal.HeadTailListImpl
-
Returns the tail of the list.
- tail() - Method in class org.tquadrat.foundation.util.Stack.Entry
-
Returns the current tail.
- tailMap(K) - Method in class org.tquadrat.foundation.util.internal.LazySortedMapImpl
-
A call to this method initialises the lazy map. - tempDirPermissions - Static variable in class org.tquadrat.foundation.util.IOUtils.PosixPermissions
-
The default attributes for a temporary folder.
- tempFilePermissions - Static variable in class org.tquadrat.foundation.util.IOUtils.PosixPermissions
-
The default attributes for a temporary file.
- Template - Class in org.tquadrat.foundation.util
-
An instance of this class is basically a wrapper around a String that contains placeholders ("Variables") in the form
${<name>}
, where <name is the variable name. - Template(CharSequence) - Constructor for class org.tquadrat.foundation.util.Template
-
Creates a new instance of
Template
. - TextStringConverter - Class in org.tquadrat.foundation.util.stringconverter
-
An implementation of
StringConverter
for text values. - TextStringConverter() - Constructor for class org.tquadrat.foundation.util.stringconverter.TextStringConverter
-
Creates a new instance of
TextStringConverter
. - The sample Implementation for a UUID Generator - Search tag in class org.tquadrat.foundation.util.UniqueIdUtils
- Section
- timebasedUUID() - Static method in class org.tquadrat.foundation.util.UniqueIdUtils
-
Creates a time-based (version type 1) UUID using the internal node id.
- timebasedUUID(long) - Static method in class org.tquadrat.foundation.util.UniqueIdUtils
-
Creates a time-based (version type 1) UUID, using the given node id.
- timebasedUUIDFromDummyNode() - Static method in class org.tquadrat.foundation.util.UniqueIdUtils
-
Creates a time-based (version type 1) UUID from a dummy node id.
- timebasedUUIDFromNodeName(CharSequence) - Static method in class org.tquadrat.foundation.util.UniqueIdUtils
-
Creates a time-based (version type 1) UUID from the given node name.
The provided node name will be hashed (using MD5), the bytes from the result will be converted intoBigInteger
. - TimeDateStringConverter<T> - Class in org.tquadrat.foundation.util.stringconverter
-
The abstract base class for implementations of
StringConverter
for types that extendTemporalAccessor
. - TimeDateStringConverter(Class<T>) - Constructor for class org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter
-
Creates a new
TimeStringConverter
instance. - TimeDateStringConverter(Class<T>, DateTimeFormatter) - Constructor for class org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter
-
Creates a new
TimeStringConverter
instance that uses the given formatter for the conversion back and forth. - TimeDateStringConverter(Class<T>, Optional<DateTimeFormatter>) - Constructor for class org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter
-
Creates a new
TimeStringConverter
instance. - TimeoutSemaphoreImpl - Class in org.tquadrat.foundation.util.internal
-
An implementation for
AutoSemaphore
that allows a timeout for the permits. - TimeoutSemaphoreImpl(int, boolean, Duration) - Constructor for class org.tquadrat.foundation.util.internal.TimeoutSemaphoreImpl
-
Creates an
TimeoutSemaphoreImpl
instance with the given number of permits, the given timeout duration and the given fairness setting. - TimeoutSemaphoreImpl(int, Duration) - Constructor for class org.tquadrat.foundation.util.internal.TimeoutSemaphoreImpl
-
Creates an
TimeoutSemaphoreImpl
instance with the given number of permits, the given timeout duration and non-fair fairness setting. - TimeoutSemaphoreImpl.Janitor - Class in org.tquadrat.foundation.util.internal
-
The
Janitor
for the owningTimeoutSemaphoreImpl
instance. - TimeoutSemaphoreImpl.Reaper - Class in org.tquadrat.foundation.util.internal
-
The reaper thread.
- TimeoutSemaphoreImpl.Token - Class in org.tquadrat.foundation.util.internal
-
The token that holds the permits to be released when a
try-with-resources
block is left or the timeout has expired. - TimeUnitStringConverter - Class in org.tquadrat.foundation.util.stringconverter
-
The implementation of
EnumStringConverter
forTimeUnit
values. - TimeUnitStringConverter() - Constructor for class org.tquadrat.foundation.util.stringconverter.TimeUnitStringConverter
-
Creates a new
TimeUnitStringConverter
instance. - TimeZoneStringConverter - Class in org.tquadrat.foundation.util.stringconverter
-
An implementation of
StringConverter
forTimeZone
values. - TimeZoneStringConverter() - Constructor for class org.tquadrat.foundation.util.stringconverter.TimeZoneStringConverter
-
Creates a new instance of
TimeZoneStringConverter
. - toArray() - Method in interface org.tquadrat.foundation.util.HeadTailList
-
Returns the contents of this list as an array.
- toArray() - Method in class org.tquadrat.foundation.util.internal.HeadTailListImpl
-
Returns the contents of this list as an array.
- toArray() - Method in class org.tquadrat.foundation.util.internal.LazyListImpl
- toArray() - Method in class org.tquadrat.foundation.util.internal.LazySetImpl
- toArray(IntFunction<T[]>) - Method in interface org.tquadrat.foundation.util.HeadTailList
-
Returns the contents of this list in array that is provided by the given supplier.
- toArray(IntFunction<T[]>) - Method in class org.tquadrat.foundation.util.Stack
-
Returns all entries that are currently on the stack as an array without removing them, with the top most entry as the first.
- toArray(T[]) - Method in interface org.tquadrat.foundation.util.HeadTailList
-
Returns the contents of this list in the provided array.
- toArray(T[]) - Method in class org.tquadrat.foundation.util.internal.HeadTailListImpl
-
Returns the contents of this list in the provided array.
- toArray(T[]) - Method in class org.tquadrat.foundation.util.internal.LazyListImpl
- toArray(T[]) - Method in class org.tquadrat.foundation.util.internal.LazySetImpl
- toArray(T[]) - Method in class org.tquadrat.foundation.util.Stack
-
Returns all entries that are currently on the stack as an array without removing them, with the top most entry as the first.
- Token(int) - Constructor for class org.tquadrat.foundation.util.internal.AutoSemaphoreImpl.Token
-
Creates a new instance of
Token
. - Token(int, Instant) - Constructor for class org.tquadrat.foundation.util.internal.TimeoutSemaphoreImpl.Token
-
Creates a new instance of
Token
. - toObjectArray(Object) - Static method in class org.tquadrat.foundation.util.ArrayUtils
-
Translates the given array to an array of element type
Object
. - toString() - Method in class org.tquadrat.foundation.util.internal.HashImpl
- toString() - Method in class org.tquadrat.foundation.util.internal.LazyListImpl
- toString() - Method in class org.tquadrat.foundation.util.internal.LazyMapImpl
- toString() - Method in class org.tquadrat.foundation.util.internal.LazySetImpl
- toString(byte[]) - Method in class org.tquadrat.foundation.util.stringconverter.ByteArrayStringConverter
- toString(File) - Method in class org.tquadrat.foundation.util.stringconverter.FileStringConverter
- toString(Boolean) - Method in class org.tquadrat.foundation.util.stringconverter.BooleanStringConverter
- toString(Character) - Method in class org.tquadrat.foundation.util.stringconverter.CharacterStringConverter
- toString(CharSequence) - Method in class org.tquadrat.foundation.util.stringconverter.CharSequenceStringConverter
- toString(Class<?>) - Method in class org.tquadrat.foundation.util.stringconverter.ClassStringConverter
- toString(Object[], CharSequence) - Static method in class org.tquadrat.foundation.util.ArrayUtils
-
Renders the given array to a single string where the elements are separated by the given character sequence.
This method allows to control the output a bit better thanArrays.toString(Object[])
,Objects.toString(Object)
, orObjects.toString(Object)
. - toString(String) - Method in class org.tquadrat.foundation.util.stringconverter.BASE64StringConverter
- toString(String) - Method in class org.tquadrat.foundation.util.stringconverter.StringStringConverter
- toString(String) - Method in class org.tquadrat.foundation.util.stringconverter.TextStringConverter
- toString(InetAddress) - Method in class org.tquadrat.foundation.util.stringconverter.InetAddressStringConverter
- toString(URL) - Method in class org.tquadrat.foundation.util.stringconverter.EncodedURLStringConverter
- toString(URL) - Method in class org.tquadrat.foundation.util.stringconverter.URLStringConverter
- toString(URL, Charset) - Method in class org.tquadrat.foundation.util.stringconverter.EncodedURLStringConverter
-
Converts the given
URL
, into anapplication/x-www-form-url
encoded String representation, using the provided character encoding. - toString(Charset) - Method in class org.tquadrat.foundation.util.stringconverter.CharsetStringConverter
- toString(Currency) - Method in class org.tquadrat.foundation.util.stringconverter.CurrencyStringConverter
- toString(Date) - Method in class org.tquadrat.foundation.util.stringconverter.DateLongStringConverter
- toString(List<E>) - Method in class org.tquadrat.foundation.util.stringconverter.ListStringConverter
- toString(Pattern) - Method in class org.tquadrat.foundation.util.stringconverter.PatternStringConverter
- toString(TimeZone) - Method in class org.tquadrat.foundation.util.stringconverter.TimeZoneStringConverter
- toString(T) - Method in class org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter
- toXMLId(UUID) - Static method in class org.tquadrat.foundation.util.UniqueIdUtils
-
Converts a UUID to a String that can be used as an XML id.
- translate(CharSequence) - Method in class org.tquadrat.foundation.util.stringconverter.BooleanStringConverter
-
Translates the given String to either "true" or "false".
- translateMACToNodeId(String) - Static method in class org.tquadrat.foundation.util.SystemUtils
-
Translates a given MAC address into a numerical node id.
- translateModifiers(int) - Static method in class org.tquadrat.foundation.util.JavaUtils
-
Translates the integer value for the modifiers for a class, method or field as it is used by reflection to the
enum
values fromModifier
.
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form