- fail(CharSequence) - Static method in class javolution.testing.TestContext
-
Convenience method equivalent to assertTrue(false, message)
.
- fail() - Static method in class javolution.testing.TestContext
-
Convenience method equivalent to fail(null)
.
- FastBitSet - Class in javolution.util
-
This class represents either a table of bits or a set of non-negative
numbers.
- FastBitSet() - Constructor for class javolution.util.FastBitSet
-
Creates a bit set of small initial capacity.
- FastBitSet(int) - Constructor for class javolution.util.FastBitSet
-
Creates a bit set of specified initial capacity (in bits).
- FastCollection<E> - Class in javolution.util
-
This class represents collections which can quickly be iterated over
(forward or backward) and which an be made
thread-safe
and/or
unmodifiable
.
- FastCollection() - Constructor for class javolution.util.FastCollection
-
Default constructor.
- FastCollection.Record - Interface in javolution.util
-
This interface represents the collection records which can directly be
iterated over.
- FastComparator<T> - Class in javolution.util.internal
-
This class represents a comparator to be used for equality as well as
for ordering; instances of this class provide a hashcode function
consistent with equal (if two objects
are equal
, they have the same
hashcode
),
equality with
null
values is supported.
- FastComparator() - Constructor for class javolution.util.internal.FastComparator
-
- FastList<E> - Class in javolution.util
-
This class represents a linked list with real-time behavior;
smooth capacity increase and no memory allocation as long as the
list size does not exceed its initial capacity.
- FastList() - Constructor for class javolution.util.FastList
-
Creates a list of small initial capacity.
- FastList(String) - Constructor for class javolution.util.FastList
-
Creates a persistent list associated to the specified unique identifier
(convenience method).
- FastList(int) - Constructor for class javolution.util.FastList
-
Creates a list of specified initial capacity; unless the list size
reaches the specified capacity, operations on this list will not allocate
memory (no lazy object creation).
- FastList(Collection<? extends E>) - Constructor for class javolution.util.FastList
-
Creates a list containing the specified values, in the order they
are returned by the collection's iterator.
- FastList.Node<E> - Class in javolution.util
-
This class represents a
FastList
node; it allows for direct
iteration over the list
values
.
- FastMap<K,V> - Class in javolution.util
-
This class represents a hash map with real-time behavior;
smooth capacity increase and
thread-safe without external
synchronization when
shared
.
- FastMap() - Constructor for class javolution.util.FastMap
-
Creates a map whose capacity increment smoothly without large resize
operations.
- FastMap(String) - Constructor for class javolution.util.FastMap
-
Creates a persistent map associated to the specified unique identifier
(convenience method).
- FastMap(int) - Constructor for class javolution.util.FastMap
-
Creates a map of specified maximum size (a full resize may occur if the
specififed capacity is exceeded).
- FastMap(Map<? extends K, ? extends V>) - Constructor for class javolution.util.FastMap
-
Creates a map containing the specified entries, in the order they
are returned by the map iterator.
- FastMap.Entry<K,V> - Class in javolution.util
-
This class represents a
FastMap
entry.
- FastSet<E> - Class in javolution.util
-
This class represents a set collection backed by a
FastMap
;
smooth capacity increase and no rehashing ever performed.
- FastSet() - Constructor for class javolution.util.FastSet
-
Creates a set of small initial capacity.
- FastSet(String) - Constructor for class javolution.util.FastSet
-
Creates a persistent set associated to the specified unique identifier
(convenience method).
- FastSet(int) - Constructor for class javolution.util.FastSet
-
Creates a set of specified initial capacity; unless the set size
reaches the specified capacity, operations on this set will not allocate
memory (no lazy object creation).
- FastSet(Set<? extends E>) - Constructor for class javolution.util.FastSet
-
Creates a set containing the specified elements, in the order they
are returned by the set iterator.
- FastTable<E> - Class in javolution.util
-
This class represents a random access collection with real-time behavior
(smooth capacity increase).
- FastTable() - Constructor for class javolution.util.FastTable
-
Creates a table of small initial capacity.
- FastTable(String) - Constructor for class javolution.util.FastTable
-
Creates a persistent table associated to the specified unique identifier
(convenience method).
- FastTable(int) - Constructor for class javolution.util.FastTable
-
Creates a table of specified initial capacity; unless the table size
reaches the specified capacity, operations on this table will not
allocate memory (no lazy object creation).
- FastTable(Collection<? extends E>) - Constructor for class javolution.util.FastTable
-
Creates a table containing the specified values, in the order they
are returned by the collection's iterator.
- fatalError(SAXParseException) - Method in class javolution.xml.sax.DefaultHandler
-
Reports a fatal XML parsing error.
- fatalError(SAXParseException) - Method in interface org.xml.sax.ErrorHandler
-
Receive notification of a non-recoverable error.
- fatalError(SAXParseException) - Method in class org.xml.sax.HandlerBase
-
Deprecated.
Report a fatal XML parsing error.
- fine(String) - Static method in class javolution.util.StandardLog
-
Logs a FINE
message.
- finer(String) - Static method in class javolution.util.StandardLog
-
Logs a FINER
message.
- finest(String) - Static method in class javolution.util.StandardLog
-
Logs a FINEST
message.
- flip(int) - Method in class javolution.util.FastBitSet
-
Sets the bit at the index to the opposite value.
- flip(int, int) - Method in class javolution.util.FastBitSet
-
Sets a range of bits to the opposite value.
- Float32() - Constructor for class javolution.io.Struct.Float32
-
- Float64() - Constructor for class javolution.io.Struct.Float64
-
- FLOATS_FACTORY - Static variable in class javolution.context.ArrayFactory
-
Holds factory for float
arrays.
- floatValue() - Method in class javolution.util.Index
-
Returns the index value as float
.
- floor(double) - Static method in class javolution.lang.MathLib
-
Returns the largest (closest to positive infinity)
double
value that is not greater than the argument and
is equal to a mathematical integer.
- floorLog10(double) - Static method in class javolution.lang.MathLib
-
Returns the largest power of 10 that is less than or equal to the
the specified positive value.
- floorLog2(double) - Static method in class javolution.lang.MathLib
-
Returns the largest power of 2 that is less than or equal to the
the specified positive value.
- flush() - Method in class javolution.io.AppendableWriter
-
Flushes the stream.
- flush() - Method in class javolution.io.UTF8ByteBufferWriter
-
Flushes the stream (this method has no effect, the data is
always directly written to the ByteBuffer
).
- flush() - Method in class javolution.io.UTF8StreamWriter
-
Flushes the stream.
- flush() - Method in interface javolution.xml.stream.XMLStreamWriter
-
Write any cached data to the underlying output mechanism.
- flush() - Method in class javolution.xml.stream.XMLStreamWriterImpl
-
- flush() - Method in class javolution.xml.XMLObjectWriter
-
Flushes the output stream of this writer (automatically done
when
closing
).
- format(T, Appendable) - Method in class javolution.text.TextFormat
-
Formats the specified object into an Appendable
- format(T, TextBuilder) - Method in class javolution.text.TextFormat
-
Formats the specified object into a
TextBuilder
(convenience
method which does not raise IOException).
- format(T) - Method in class javolution.text.TextFormat
-
Formats the specified object to a
Text
instance
(convenience method equivalent to
format(obj, TextBuilder.newInstance()).toText()
).
- format(boolean, Appendable) - Static method in class javolution.text.TypeFormat
-
Formats the specified boolean
and appends the resulting
text to the Appendable
argument.
- format(int, Appendable) - Static method in class javolution.text.TypeFormat
-
Formats the specified int
and appends the resulting
text (decimal representation) to the Appendable
argument.
- format(int, int, Appendable) - Static method in class javolution.text.TypeFormat
-
Formats the specified int
in the specified radix and appends
the resulting text to the Appendable
argument.
- format(long, Appendable) - Static method in class javolution.text.TypeFormat
-
Formats the specified long
and appends the resulting
text (decimal representation) to the Appendable
argument.
- format(long, int, Appendable) - Static method in class javolution.text.TypeFormat
-
Formats the specified long
in the specified radix and
appends the resulting text to the Appendable
argument.
- format(float, Appendable) - Static method in class javolution.text.TypeFormat
-
Formats the specified float
value.
- format(double, Appendable) - Static method in class javolution.text.TypeFormat
-
Formats the specified double
value (16 or 17 digits output).
- format(double, int, boolean, boolean, Appendable) - Static method in class javolution.text.TypeFormat
-
Formats the specified double
value according to the
specified formatting arguments.
- formatToString(T) - Method in class javolution.text.TextFormat
-
Convenience methods equivalent to but faster than
format(obj).toString())
- FOUR_PI - Static variable in class javolution.lang.MathLib
-
Four time the ratio of the circumference of a circle to its diameter.