Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
E
- empty() - Static method in interface org.tquadrat.foundation.util.HeadTailList
-
Returns an empty list.
- empty() - Static method in class org.tquadrat.foundation.util.internal.HeadTailListImpl
-
Returns an empty list.
- EMPTY_byte_ARRAY - Static variable in class org.tquadrat.foundation.util.Base32
-
An empty byte array.
- EMPTY_Stack_ARRAY - Static variable in class org.tquadrat.foundation.util.Stack
-
An empty array of
Stack
objects. - encode(byte[]) - Method in class org.tquadrat.foundation.util.Base32.Encoder
-
Encodes the given value to Crockford's Base 32.
- encode(long) - Method in class org.tquadrat.foundation.util.Base32.Encoder
-
Encodes the given value to Crockford's Base 32.
- encode(String) - Method in class org.tquadrat.foundation.util.Base32.Encoder
-
Encodes the given value to Crockford's Base 32.
- encode(BigInteger) - Method in class org.tquadrat.foundation.util.Base32.Encoder
-
Encodes the given value to Crockford's Base 32.
- EncodedURLStringConverter - Class in org.tquadrat.foundation.util.stringconverter
-
An implementation of
StringConverter
forURL
values. - EncodedURLStringConverter() - Constructor for class org.tquadrat.foundation.util.stringconverter.EncodedURLStringConverter
-
Creates a new instance of
EncodedURLStringConverter
that uses UTF-8 as the default encoding. - EncodedURLStringConverter(Charset) - Constructor for class org.tquadrat.foundation.util.stringconverter.EncodedURLStringConverter
-
Creates a new instance of
EncodedURLStringConverter
that uses the given encoding as the default encoding. - Encoder() - Constructor for class org.tquadrat.foundation.util.Base32.Encoder
-
Creates a new instance of
Base32.Encoder
. - encodeToString(byte[]) - Method in class org.tquadrat.foundation.util.Base32.Encoder
-
Encodes the given value to a Crockford's Base 32 String.
- encodeToString(long) - Method in class org.tquadrat.foundation.util.Base32.Encoder
-
Encodes the given value to a Crockford's Base 32 String.
- encodeToString(String) - Method in class org.tquadrat.foundation.util.Base32.Encoder
-
Encodes the given value to a Crockford's Base 32 String.
- encodeToString(BigInteger) - Method in class org.tquadrat.foundation.util.Base32.Encoder
-
Encodes the given value to a Crockford's Base 32 String.
- Entities - Class in org.tquadrat.foundation.util.internal
-
Provides HTML and XML entity utilities.
- Entities(String...) - Constructor for class org.tquadrat.foundation.util.internal.Entities
-
Creates a new
Entities
instance. - Entities.EntityMap - Interface in org.tquadrat.foundation.util.internal
-
Local interface for the data structure that is used to store the entity mappings.
- Entities.PrimitiveEntityMap - Class in org.tquadrat.foundation.util.internal
-
A simple implementation for the interface
Entities.EntityMap
. - entityName(int) - Method in class org.tquadrat.foundation.util.internal.Entities
-
Returns the name of the entity identified by the specified value.
- entityValue(String) - Method in class org.tquadrat.foundation.util.internal.Entities
-
Returns the value of the entity identified by the specified name.
- entries() - Method in class org.tquadrat.foundation.util.internal.RangeMapImpl
-
Returns the entries in their order.
- entries() - Method in interface org.tquadrat.foundation.util.RangeMap
-
Returns the entries in their order.
- Entry(T, Stack.Entry) - Constructor for class org.tquadrat.foundation.util.Stack.Entry
-
Creates a new
Stack
object. - entrySet() - Method in class org.tquadrat.foundation.util.internal.LazyMapImpl
- EnumStringConverter<T> - Class in org.tquadrat.foundation.util.stringconverter
-
An implementation of
StringConverter
for types that are derived fromEnum
. - EnumStringConverter(Class<T>) - Constructor for class org.tquadrat.foundation.util.stringconverter.EnumStringConverter
-
Creates a new
EnumValueHandler
instance. - equals(Object) - Method in interface org.tquadrat.foundation.util.HeadTailList
- equals(Object) - Method in class org.tquadrat.foundation.util.internal.HashImpl
- equals(Object) - Method in class org.tquadrat.foundation.util.internal.HeadTailListImpl
- equals(Object) - Method in class org.tquadrat.foundation.util.internal.LazyListImpl
- equals(Object) - Method in class org.tquadrat.foundation.util.internal.LazyMapImpl
- equals(Object) - Method in class org.tquadrat.foundation.util.internal.LazySetImpl
- escape(int) - Method in class org.tquadrat.foundation.util.stringconverter.TextStringConverter
-
Returns the escape sequence for the given special character, or the character itself if it does not need an escape.
- escape(Appendable, CharSequence) - Method in class org.tquadrat.foundation.util.internal.Entities
-
Escapes the characters in the
String
passed and writes the result to theAppendable
passed. - escape(CharSequence) - Method in class org.tquadrat.foundation.util.internal.Entities
-
Escapes the characters in a
String
.
For example, if you have calledaddEntity( "foo", "0xA1" )
, a call toescape( "¡" )
will return"&foo;"
. - escapeCharacter(char) - Static method in class org.tquadrat.foundation.util.CharSetUtils
-
Returns the Unicode escape sequence for the given character.
- escapeCharacter(int) - Static method in class org.tquadrat.foundation.util.CharSetUtils
-
Returns the Unicode escape sequence for the given code point.
- escapeHTML(Appendable, CharSequence) - Static method in class org.tquadrat.foundation.util.StringUtils
-
Escapes the characters in a
String
using HTML entities and writes them to anAppendable
. - escapeHTML(CharSequence) - Static method in class org.tquadrat.foundation.util.StringUtils
-
Escapes the non-ASCII and special characters in a
String
so that the result can be used in the context of HTML. - escapeJSON(CharSequence) - Static method in class org.tquadrat.foundation.util.StringUtils
-
Formats the given
String
for the output into JSONText. - escapeRegex(char) - Static method in class org.tquadrat.foundation.util.StringUtils
-
Escapes the given character using Regex escapes.
- escapeRegex(Appendable, char) - Static method in class org.tquadrat.foundation.util.StringUtils
-
Escapes the given character using Regex escapes and writes them to a
Appendable
. - escapeRegex(Appendable, CharSequence) - Static method in class org.tquadrat.foundation.util.StringUtils
-
Escapes the characters in a
String
using Regex escapes and writes them to aAppendable
. - escapeRegex(CharSequence) - Static method in class org.tquadrat.foundation.util.StringUtils
-
Escapes the characters in a
String
using Regex escapes. - escapeRegexReplacement(CharSequence) - Static method in class org.tquadrat.foundation.util.Template
-
Escapes backslash ('\') and dollar sign ('$') for regex replacements.
- escapeXML(Appendable, CharSequence) - Static method in class org.tquadrat.foundation.util.StringUtils
-
Escapes the characters in a
String
using XML entities and writes them to anAppendable
. - escapeXML(CharSequence) - Static method in class org.tquadrat.foundation.util.StringUtils
-
Escapes the characters in a
String
using XML entities. - extractEscapeSequence(StringBuilder, Pattern, CharSequence) - Static method in class org.tquadrat.foundation.util.CharSetUtils
-
Extracts the escape sequence from the given chunk, write the result to the buffer and returns the offset.
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form