- abs(int) - Static method in class java.lang.Math
-
Returns the absolute value of an int value.
- abs(long) - Static method in class java.lang.Math
-
Returns the absolute value of a long value.
- abs(float) - Static method in class java.lang.Math
-
Returns the absolute value of a float value.
- abs(double) - Static method in class java.lang.Math
-
Returns the absolute value of a double value.
- abs() - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is the absolute value
of this BigDecimal, and whose scale is
this.scale().
- abs(MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is the absolute value
of this BigDecimal, with rounding according to the
context settings.
- abs() - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is the absolute value of this
BigInteger.
- ABSTRACT - Static variable in class java.lang.reflect.Modifier
-
The int value representing the abstract
modifier.
- AbstractCollection<E> - Class in java.util
-
This class provides a skeletal implementation of the Collection
interface, to minimize the effort required to implement this interface.
- AbstractCollection() - Constructor for class java.util.AbstractCollection
-
Sole constructor.
- AbstractList<E> - Class in java.util
-
This class provides a skeletal implementation of the
List
interface to minimize the effort required to implement this interface
backed by a "random access" data store (such as an array).
- AbstractList() - Constructor for class java.util.AbstractList
-
Sole constructor.
- AbstractMap<K,V> - Class in java.util
-
This class provides a skeletal implementation of the Map
interface, to minimize the effort required to implement this interface.
- AbstractMap() - Constructor for class java.util.AbstractMap
-
Sole constructor.
- AbstractMap.SimpleEntry<K,V> - Class in java.util
-
An Entry maintaining a key and a value.
- AbstractMap.SimpleEntry(K, V) - Constructor for class java.util.AbstractMap.SimpleEntry
-
Creates an entry representing a mapping from the specified
key to the specified value.
- AbstractMap.SimpleEntry(Map.Entry<? extends K, ? extends V>) - Constructor for class java.util.AbstractMap.SimpleEntry
-
Creates an entry representing the same mapping as the
specified entry.
- AbstractMap.SimpleImmutableEntry<K,V> - Class in java.util
-
An Entry maintaining an immutable key and value.
- AbstractMap.SimpleImmutableEntry(K, V) - Constructor for class java.util.AbstractMap.SimpleImmutableEntry
-
Creates an entry representing a mapping from the specified
key to the specified value.
- AbstractMap.SimpleImmutableEntry(Map.Entry<? extends K, ? extends V>) - Constructor for class java.util.AbstractMap.SimpleImmutableEntry
-
Creates an entry representing the same mapping as the
specified entry.
- AbstractMethodError - Error in java.lang
-
Thrown when an application tries to call an abstract method.
- AbstractMethodError() - Constructor for error java.lang.AbstractMethodError
-
Constructs an AbstractMethodError with no detail message.
- AbstractMethodError(String) - Constructor for error java.lang.AbstractMethodError
-
Constructs an AbstractMethodError with the specified
detail message.
- AbstractQueue<E> - Class in java.util
-
This class provides skeletal implementations of some
Queue
operations.
- AbstractQueue() - Constructor for class java.util.AbstractQueue
-
Constructor for use by subclasses.
- AbstractSequentialList<E> - Class in java.util
-
This class provides a skeletal implementation of the List
interface to minimize the effort required to implement this interface
backed by a "sequential access" data store (such as a linked list).
- AbstractSequentialList() - Constructor for class java.util.AbstractSequentialList
-
Sole constructor.
- AbstractSet<E> - Class in java.util
-
This class provides a skeletal implementation of the Set
interface to minimize the effort required to implement this
interface.
- AbstractSet() - Constructor for class java.util.AbstractSet
-
Sole constructor.
- accept(File) - Method in interface java.io.FileFilter
-
Tests whether or not the specified abstract pathname should be
included in a pathname list.
- accept(File, String) - Method in interface java.io.FilenameFilter
-
Tests if a specified file should be included in a file list.
- AccessibleObject - Class in java.lang.reflect
-
The AccessibleObject class is the base class for Field, Method and
Constructor objects.
- AccessibleObject() - Constructor for class java.lang.reflect.AccessibleObject
-
Constructor: only used by the Java Virtual Machine.
- acos(double) - Static method in class java.lang.Math
-
Returns the arc cosine of a value; the returned angle is in the
range 0.0 through pi.
- activeCount() - Static method in class java.lang.Thread
-
Returns an estimate of the number of active threads in the current
thread's
thread group and its
subgroups.
- add(BigDecimal) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this +
augend), and whose scale is max(this.scale(),
augend.scale()).
- add(BigDecimal, MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this + augend),
with rounding according to the context settings.
- add(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this + val).
- add(E) - Method in class java.util.AbstractCollection
-
Ensures that this collection contains the specified element (optional
operation).
- add(E) - Method in class java.util.AbstractList
-
Appends the specified element to the end of this list (optional
operation).
- add(int, E) - Method in class java.util.AbstractList
-
Inserts the specified element at the specified position in this list
(optional operation).
- add(E) - Method in class java.util.AbstractQueue
-
Inserts the specified element into this queue if it is possible to do so
immediately without violating capacity restrictions, returning
true upon success and throwing an IllegalStateException
if no space is currently available.
- add(int, E) - Method in class java.util.AbstractSequentialList
-
Inserts the specified element at the specified position in this list
(optional operation).
- add(E) - Method in class java.util.ArrayDeque
-
Inserts the specified element at the end of this deque.
- add(E) - Method in class java.util.ArrayList
-
Appends the specified element to the end of this list.
- add(int, E) - Method in class java.util.ArrayList
-
Inserts the specified element at the specified position in this
list.
- add(E) - Method in interface java.util.Collection
-
Ensures that this collection contains the specified element (optional
operation).
- add(E) - Method in interface java.util.Deque
-
Inserts the specified element into the queue represented by this deque
(in other words, at the tail of this deque) if it is possible to do so
immediately without violating capacity restrictions, returning
true upon success and throwing an
IllegalStateException if no space is currently available.
- add(E) - Method in class java.util.HashSet
-
Adds the specified element to this set if it is not already present.
- add(E) - Method in class java.util.LinkedList
-
Appends the specified element to the end of this list.
- add(int, E) - Method in class java.util.LinkedList
-
Inserts the specified element at the specified position in this list.
- add(E) - Method in interface java.util.List
-
Appends the specified element to the end of this list (optional
operation).
- add(int, E) - Method in interface java.util.List
-
Inserts the specified element at the specified position in this list
(optional operation).
- add(E) - Method in interface java.util.ListIterator
-
Inserts the specified element into the list (optional operation).
- add(E) - Method in class java.util.PriorityQueue
-
Inserts the specified element into this priority queue.
- add(E) - Method in interface java.util.Queue
-
Inserts the specified element into this queue if it is possible to do so
immediately without violating capacity restrictions, returning
true upon success and throwing an IllegalStateException
if no space is currently available.
- add(E) - Method in interface java.util.Set
-
Adds the specified element to this set if it is not already present
(optional operation).
- add(E) - Method in class java.util.TreeSet
-
Adds the specified element to this set if it is not already present.
- add(E) - Method in class java.util.Vector
-
Appends the specified element to the end of this Vector.
- add(int, E) - Method in class java.util.Vector
-
Inserts the specified element at the specified position in this Vector.
- addAll(Collection<? extends E>) - Method in class java.util.AbstractCollection
-
Adds all of the elements in the specified collection to this collection
(optional operation).
- addAll(int, Collection<? extends E>) - Method in class java.util.AbstractList
-
Inserts all of the elements in the specified collection into this
list at the specified position (optional operation).
- addAll(Collection<? extends E>) - Method in class java.util.AbstractQueue
-
Adds all of the elements in the specified collection to this
queue.
- addAll(int, Collection<? extends E>) - Method in class java.util.AbstractSequentialList
-
Inserts all of the elements in the specified collection into this
list at the specified position (optional operation).
- addAll(Collection<? extends E>) - Method in class java.util.ArrayList
-
Appends all of the elements in the specified collection to the end of
this list, in the order that they are returned by the
specified collection's Iterator.
- addAll(int, Collection<? extends E>) - Method in class java.util.ArrayList
-
Inserts all of the elements in the specified collection into this
list, starting at the specified position.
- addAll(Collection<? extends E>) - Method in interface java.util.Collection
-
Adds all of the elements in the specified collection to this collection
(optional operation).
- addAll(Collection<? super T>, T...) - Static method in class java.util.Collections
-
Adds all of the specified elements to the specified collection.
- addAll(Collection<? extends E>) - Method in class java.util.LinkedList
-
Appends all of the elements in the specified collection to the end of
this list, in the order that they are returned by the specified
collection's iterator.
- addAll(int, Collection<? extends E>) - Method in class java.util.LinkedList
-
Inserts all of the elements in the specified collection into this
list, starting at the specified position.
- addAll(Collection<? extends E>) - Method in interface java.util.List
-
Appends all of the elements in the specified collection to the end of
this list, in the order that they are returned by the specified
collection's iterator (optional operation).
- addAll(int, Collection<? extends E>) - Method in interface java.util.List
-
Inserts all of the elements in the specified collection into this
list at the specified position (optional operation).
- addAll(Collection<? extends E>) - Method in interface java.util.Set
-
Adds all of the elements in the specified collection to this set if
they're not already present (optional operation).
- addAll(Collection<? extends E>) - Method in class java.util.TreeSet
-
Adds all of the elements in the specified collection to this set.
- addAll(Collection<? extends E>) - Method in class java.util.Vector
-
Appends all of the elements in the specified Collection to the end of
this Vector, in the order that they are returned by the specified
Collection's Iterator.
- addAll(int, Collection<? extends E>) - Method in class java.util.Vector
-
Inserts all of the elements in the specified Collection into this
Vector at the specified position.
- addElement(E) - Method in class java.util.Vector
-
Adds the specified component to the end of this vector,
increasing its size by one.
- addFirst(E) - Method in class java.util.ArrayDeque
-
Inserts the specified element at the front of this deque.
- addFirst(E) - Method in interface java.util.Deque
-
Inserts the specified element at the front of this deque if it is
possible to do so immediately without violating capacity restrictions.
- addFirst(E) - Method in class java.util.LinkedList
-
Inserts the specified element at the beginning of this list.
- addLast(E) - Method in class java.util.ArrayDeque
-
Inserts the specified element at the end of this deque.
- addLast(E) - Method in interface java.util.Deque
-
Inserts the specified element at the end of this deque if it is
possible to do so immediately without violating capacity restrictions.
- addLast(E) - Method in class java.util.LinkedList
-
Appends the specified element to the end of this list.
- addPropertyChangeListener(PropertyChangeListener) - Method in class java.beans.PropertyChangeSupport
-
Add a PropertyChangeListener to the listener list.
- addPropertyChangeListener(String, PropertyChangeListener) - Method in class java.beans.PropertyChangeSupport
-
Add a PropertyChangeListener for a specific property.
- addSuppressed(Throwable) - Method in class java.lang.Throwable
-
Appends the specified exception to the exceptions that were
suppressed in order to deliver this exception.
- addVetoableChangeListener(VetoableChangeListener) - Method in class java.beans.VetoableChangeSupport
-
Add a VetoableChangeListener to the listener list.
- addVetoableChangeListener(String, VetoableChangeListener) - Method in class java.beans.VetoableChangeSupport
-
Add a VetoableChangeListener for a specific property.
- Adler32 - Class in java.util.zip
-
Computes Adler32 checksum for a stream of data.
- Adler32() - Constructor for class java.util.zip.Adler32
-
Creates a new instance of the Adler32 class.
- ALL - Static variable in class java.util.logging.Level
-
ALL indicates that all messages should be logged.
- and(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this & val).
- andNot(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this & ~val).
- annotateClass(Class<?>) - Method in class java.io.ObjectOutputStream
-
Subclasses may implement this method to allow class data to be stored in
the stream.
- AnnotatedElement - Interface in java.lang.reflect
-
Represents an annotated element of the program currently running in this
VM.
- annotateProxyClass(Class<?>) - Method in class java.io.ObjectOutputStream
-
Subclasses may implement this method to store custom data in the stream
along with descriptors for dynamic proxy classes.
- Annotation - Interface in java.lang.annotation
-
The common interface extended by all annotation types.
- annotationType() - Method in interface java.lang.annotation.Annotation
-
Returns the annotation type of this annotation.
- append(CharSequence) - Method in class java.io.PrintStream
-
Appends the specified character sequence to this output stream.
- append(CharSequence, int, int) - Method in class java.io.PrintStream
-
Appends a subsequence of the specified character sequence to this output
stream.
- append(char) - Method in class java.io.PrintStream
-
Appends the specified character to this output stream.
- append(CharSequence) - Method in class java.io.PrintWriter
-
Appends the specified character sequence to this writer.
- append(CharSequence, int, int) - Method in class java.io.PrintWriter
-
Appends a subsequence of the specified character sequence to this writer.
- append(char) - Method in class java.io.PrintWriter
-
Appends the specified character to this writer.
- append(CharSequence) - Method in class java.io.Writer
-
Appends the specified character sequence to this writer.
- append(CharSequence, int, int) - Method in class java.io.Writer
-
Appends a subsequence of the specified character sequence to this writer.
- append(char) - Method in class java.io.Writer
-
Appends the specified character to this writer.
- append(CharSequence) - Method in interface java.lang.Appendable
-
Appends the specified character sequence to this Appendable.
- append(CharSequence, int, int) - Method in interface java.lang.Appendable
-
Appends a subsequence of the specified character sequence to this
Appendable.
- append(char) - Method in interface java.lang.Appendable
-
Appends the specified character to this Appendable.
- append(Object) - Method in class java.lang.StringBuffer
-
- append(String) - Method in class java.lang.StringBuffer
-
- append(StringBuffer) - Method in class java.lang.StringBuffer
-
Appends the specified StringBuffer to this sequence.
- append(CharSequence) - Method in class java.lang.StringBuffer
-
Appends the specified CharSequence to this
sequence.
- append(CharSequence, int, int) - Method in class java.lang.StringBuffer
-
- append(char[]) - Method in class java.lang.StringBuffer
-
- append(char[], int, int) - Method in class java.lang.StringBuffer
-
- append(boolean) - Method in class java.lang.StringBuffer
-
- append(char) - Method in class java.lang.StringBuffer
-
- append(int) - Method in class java.lang.StringBuffer
-
- append(long) - Method in class java.lang.StringBuffer
-
- append(float) - Method in class java.lang.StringBuffer
-
- append(double) - Method in class java.lang.StringBuffer
-
- append(Object) - Method in class java.lang.StringBuilder
-
- append(String) - Method in class java.lang.StringBuilder
-
- append(StringBuffer) - Method in class java.lang.StringBuilder
-
Appends the specified StringBuffer to this sequence.
- append(CharSequence) - Method in class java.lang.StringBuilder
-
- append(CharSequence, int, int) - Method in class java.lang.StringBuilder
-
- append(char[]) - Method in class java.lang.StringBuilder
-
- append(char[], int, int) - Method in class java.lang.StringBuilder
-
- append(boolean) - Method in class java.lang.StringBuilder
-
- append(char) - Method in class java.lang.StringBuilder
-
- append(int) - Method in class java.lang.StringBuilder
-
- append(long) - Method in class java.lang.StringBuilder
-
- append(float) - Method in class java.lang.StringBuilder
-
- append(double) - Method in class java.lang.StringBuilder
-
- Appendable - Interface in java.lang
-
An object to which char sequences and values can be appended.
- appendCodePoint(int) - Method in class java.lang.StringBuffer
-
- appendCodePoint(int) - Method in class java.lang.StringBuilder
-
- ArithmeticException - Exception in java.lang
-
Thrown when an exceptional arithmetic condition has occurred.
- ArithmeticException() - Constructor for exception java.lang.ArithmeticException
-
Constructs an ArithmeticException with no detail
message.
- ArithmeticException(String) - Constructor for exception java.lang.ArithmeticException
-
Constructs an ArithmeticException with the specified
detail message.
- Array - Class in java.lang.reflect
-
The Array class provides static methods to dynamically create and
access Java arrays.
- arraycopy(Object, int, Object, int, int) - Static method in class java.lang.System
-
- ArrayDeque<E> - Class in java.util
-
Resizable-array implementation of the
Deque interface.
- ArrayDeque() - Constructor for class java.util.ArrayDeque
-
Constructs an empty array deque with an initial capacity
sufficient to hold 16 elements.
- ArrayDeque(int) - Constructor for class java.util.ArrayDeque
-
Constructs an empty array deque with an initial capacity
sufficient to hold the specified number of elements.
- ArrayDeque(Collection<? extends E>) - Constructor for class java.util.ArrayDeque
-
Constructs a deque containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
- ArrayIndexOutOfBoundsException - Exception in java.lang
-
Thrown to indicate that an array has been accessed with an
illegal index.
- ArrayIndexOutOfBoundsException() - Constructor for exception java.lang.ArrayIndexOutOfBoundsException
-
Constructs an ArrayIndexOutOfBoundsException with no
detail message.
- ArrayIndexOutOfBoundsException(int) - Constructor for exception java.lang.ArrayIndexOutOfBoundsException
-
Constructs a new ArrayIndexOutOfBoundsException
class with an argument indicating the illegal index.
- ArrayIndexOutOfBoundsException(String) - Constructor for exception java.lang.ArrayIndexOutOfBoundsException
-
Constructs an ArrayIndexOutOfBoundsException class
with the specified detail message.
- ArrayList<E> - Class in java.util
-
Resizable-array implementation of the List interface.
- ArrayList(int) - Constructor for class java.util.ArrayList
-
Constructs an empty list with the specified initial capacity.
- ArrayList() - Constructor for class java.util.ArrayList
-
Constructs an empty list with an initial capacity of ten.
- ArrayList(Collection<? extends E>) - Constructor for class java.util.ArrayList
-
Constructs a list containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
- Arrays - Class in java.util
-
This class contains various methods for manipulating arrays (such as
sorting and searching).
- ArrayStoreException - Exception in java.lang
-
Thrown to indicate that an attempt has been made to store the
wrong type of object into an array of objects.
- ArrayStoreException() - Constructor for exception java.lang.ArrayStoreException
-
Constructs an ArrayStoreException with no detail message.
- ArrayStoreException(String) - Constructor for exception java.lang.ArrayStoreException
-
Constructs an ArrayStoreException with the specified
detail message.
- asin(double) - Static method in class java.lang.Math
-
Returns the arc sine of a value; the returned angle is in the
range -pi/2 through pi/2.
- asLifoQueue(Deque<T>) - Static method in class java.util.Collections
-
Returns a view of a
Deque as a Last-in-first-out (Lifo)
Queue.
- asList(T...) - Static method in class java.util.Arrays
-
Returns a fixed-size list backed by the specified array.
- AssertionError - Error in java.lang
-
Thrown to indicate that an assertion has failed.
- AssertionError() - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with no detail message.
- AssertionError(Object) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived
from the specified object, which is converted to a string as
defined in section 15.18.1.1 of
The Java™ Language Specification.
- AssertionError(boolean) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived
from the specified boolean, which is converted to
a string as defined in section 15.18.1.1 of
The Java™ Language Specification.
- AssertionError(char) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived
from the specified char, which is converted to a
string as defined in section 15.18.1.1 of
The Java™ Language Specification.
- AssertionError(int) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived
from the specified int, which is converted to a
string as defined in section 15.18.1.1 of
The Java™ Language Specification.
- AssertionError(long) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived
from the specified long, which is converted to a
string as defined in section 15.18.1.1 of
The Java™ Language Specification.
- AssertionError(float) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived
from the specified float, which is converted to a
string as defined in section 15.18.1.1 of
The Java™ Language Specification.
- AssertionError(double) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived
from the specified double, which is converted to a
string as defined in section 15.18.1.1 of
The Java™ Language Specification.
- AssertionError(String, Throwable) - Constructor for error java.lang.AssertionError
-
Constructs a new AssertionError with the specified
detail message and cause.
- asSubclass(Class<U>) - Method in class java.lang.Class
-
Casts this Class object to represent a subclass of the class
represented by the specified class object.
- atan(double) - Static method in class java.lang.Math
-
Returns the arc tangent of a value; the returned angle is in the
range -pi/2 through pi/2.
- atan2(double, double) - Static method in class java.lang.Math
-
Returns the angle theta from the conversion of rectangular
coordinates (x, y) to polar
coordinates (r, theta).
- AutoCloseable - Interface in java.lang
-
A resource that must be closed when it is no longer needed.
- available() - Method in class java.io.ByteArrayInputStream
-
Returns the number of remaining bytes that can be read (or skipped over)
from this input stream.
- available() - Method in class java.io.FilterInputStream
-
Returns an estimate of the number of bytes that can be read (or
skipped over) from this input stream without blocking by the next
caller of a method for this input stream.
- available() - Method in class java.io.InputStream
-
Returns an estimate of the number of bytes that can be read (or
skipped over) from this input stream without blocking by the next
invocation of a method for this input stream.
- available() - Method in interface java.io.ObjectInput
-
Returns the number of bytes that can be read
without blocking.
- available() - Method in class java.io.ObjectInputStream
-
Returns the number of bytes that can be read without blocking.
- available() - Method in class java.io.PushbackInputStream
-
Returns an estimate of the number of bytes that can be read (or
skipped over) from this input stream without blocking by the next
invocation of a method for this input stream.
- available() - Method in class java.util.zip.InflaterInputStream
-
Returns 0 after EOF has been reached, otherwise always return 1.
- available() - Method in class java.util.zip.ZipInputStream
-
Returns 0 after EOF has reached for the current entry data,
otherwise always return 1.
- baseWireHandle - Static variable in interface java.io.ObjectStreamConstants
-
First wire handle to be assigned.
- BigDecimal - Class in java.math
-
Immutable, arbitrary-precision signed decimal numbers.
- BigDecimal(char[], int, int) - Constructor for class java.math.BigDecimal
-
Translates a character array representation of a
BigDecimal into a
BigDecimal, accepting the
same sequence of characters as the
BigDecimal.BigDecimal(String)
constructor, while allowing a sub-array to be specified.
- BigDecimal(char[], int, int, MathContext) - Constructor for class java.math.BigDecimal
-
Translates a character array representation of a
BigDecimal into a
BigDecimal, accepting the
same sequence of characters as the
BigDecimal.BigDecimal(String)
constructor, while allowing a sub-array to be specified and
with rounding according to the context settings.
- BigDecimal(char[]) - Constructor for class java.math.BigDecimal
-
Translates a character array representation of a
BigDecimal into a
BigDecimal, accepting the
same sequence of characters as the
BigDecimal.BigDecimal(String)
constructor.
- BigDecimal(char[], MathContext) - Constructor for class java.math.BigDecimal
-
Translates a character array representation of a
BigDecimal into a
BigDecimal, accepting the
same sequence of characters as the
BigDecimal.BigDecimal(String)
constructor and with rounding according to the context
settings.
- BigDecimal(String) - Constructor for class java.math.BigDecimal
-
Translates the string representation of a BigDecimal
into a BigDecimal.
- BigDecimal(String, MathContext) - Constructor for class java.math.BigDecimal
-
Translates the string representation of a
BigDecimal
into a
BigDecimal, accepting the same strings as the
BigDecimal.BigDecimal(String) constructor, with rounding
according to the context settings.
- BigDecimal(double) - Constructor for class java.math.BigDecimal
-
Translates a double into a BigDecimal which
is the exact decimal representation of the double's
binary floating-point value.
- BigDecimal(double, MathContext) - Constructor for class java.math.BigDecimal
-
Translates a double into a BigDecimal, with
rounding according to the context settings.
- BigDecimal(BigInteger) - Constructor for class java.math.BigDecimal
-
Translates a BigInteger into a BigDecimal.
- BigDecimal(BigInteger, MathContext) - Constructor for class java.math.BigDecimal
-
Translates a BigInteger into a BigDecimal
rounding according to the context settings.
- BigDecimal(BigInteger, int) - Constructor for class java.math.BigDecimal
-
Translates a BigInteger unscaled value and an
int scale into a BigDecimal.
- BigDecimal(BigInteger, int, MathContext) - Constructor for class java.math.BigDecimal
-
Translates a BigInteger unscaled value and an
int scale into a BigDecimal, with rounding
according to the context settings.
- BigDecimal(int) - Constructor for class java.math.BigDecimal
-
Translates an int into a BigDecimal.
- BigDecimal(int, MathContext) - Constructor for class java.math.BigDecimal
-
Translates an int into a BigDecimal, with
rounding according to the context settings.
- BigDecimal(long) - Constructor for class java.math.BigDecimal
-
Translates a long into a BigDecimal.
- BigDecimal(long, MathContext) - Constructor for class java.math.BigDecimal
-
Translates a long into a BigDecimal, with
rounding according to the context settings.
- BigInteger - Class in java.math
-
Immutable arbitrary-precision integers.
- BigInteger(byte[]) - Constructor for class java.math.BigInteger
-
Translates a byte array containing the two's-complement binary
representation of a BigInteger into a BigInteger.
- BigInteger(int, byte[]) - Constructor for class java.math.BigInteger
-
Translates the sign-magnitude representation of a BigInteger into a
BigInteger.
- BigInteger(String, int) - Constructor for class java.math.BigInteger
-
Translates the String representation of a BigInteger in the
specified radix into a BigInteger.
- BigInteger(String) - Constructor for class java.math.BigInteger
-
Translates the decimal String representation of a BigInteger into a
BigInteger.
- BigInteger(int, Random) - Constructor for class java.math.BigInteger
-
Constructs a randomly generated BigInteger, uniformly distributed over
the range 0 to (2numBits - 1), inclusive.
- BigInteger(int, int, Random) - Constructor for class java.math.BigInteger
-
Constructs a randomly generated positive BigInteger that is probably
prime, with the specified bitLength.
- binarySearch(long[], long) - Static method in class java.util.Arrays
-
Searches the specified array of longs for the specified value using the
binary search algorithm.
- binarySearch(long[], int, int, long) - Static method in class java.util.Arrays
-
Searches a range of
the specified array of longs for the specified value using the
binary search algorithm.
- binarySearch(int[], int) - Static method in class java.util.Arrays
-
Searches the specified array of ints for the specified value using the
binary search algorithm.
- binarySearch(int[], int, int, int) - Static method in class java.util.Arrays
-
Searches a range of
the specified array of ints for the specified value using the
binary search algorithm.
- binarySearch(short[], short) - Static method in class java.util.Arrays
-
Searches the specified array of shorts for the specified value using
the binary search algorithm.
- binarySearch(short[], int, int, short) - Static method in class java.util.Arrays
-
Searches a range of
the specified array of shorts for the specified value using
the binary search algorithm.
- binarySearch(char[], char) - Static method in class java.util.Arrays
-
Searches the specified array of chars for the specified value using the
binary search algorithm.
- binarySearch(char[], int, int, char) - Static method in class java.util.Arrays
-
Searches a range of
the specified array of chars for the specified value using the
binary search algorithm.
- binarySearch(byte[], byte) - Static method in class java.util.Arrays
-
Searches the specified array of bytes for the specified value using the
binary search algorithm.
- binarySearch(byte[], int, int, byte) - Static method in class java.util.Arrays
-
Searches a range of
the specified array of bytes for the specified value using the
binary search algorithm.
- binarySearch(double[], double) - Static method in class java.util.Arrays
-
Searches the specified array of doubles for the specified value using
the binary search algorithm.
- binarySearch(double[], int, int, double) - Static method in class java.util.Arrays
-
Searches a range of
the specified array of doubles for the specified value using
the binary search algorithm.
- binarySearch(float[], float) - Static method in class java.util.Arrays
-
Searches the specified array of floats for the specified value using
the binary search algorithm.
- binarySearch(float[], int, int, float) - Static method in class java.util.Arrays
-
Searches a range of
the specified array of floats for the specified value using
the binary search algorithm.
- binarySearch(Object[], Object) - Static method in class java.util.Arrays
-
Searches the specified array for the specified object using the binary
search algorithm.
- binarySearch(Object[], int, int, Object) - Static method in class java.util.Arrays
-
Searches a range of
the specified array for the specified object using the binary
search algorithm.
- binarySearch(T[], T, Comparator<? super T>) - Static method in class java.util.Arrays
-
Searches the specified array for the specified object using the binary
search algorithm.
- binarySearch(T[], int, int, T, Comparator<? super T>) - Static method in class java.util.Arrays
-
Searches a range of
the specified array for the specified object using the binary
search algorithm.
- binarySearch(List<? extends Comparable<? super T>>, T) - Static method in class java.util.Collections
-
Searches the specified list for the specified object using the binary
search algorithm.
- binarySearch(List<? extends T>, T, Comparator<? super T>) - Static method in class java.util.Collections
-
Searches the specified list for the specified object using the binary
search algorithm.
- bitCount(int) - Static method in class java.lang.Integer
-
Returns the number of one-bits in the two's complement binary
representation of the specified int value.
- bitCount(long) - Static method in class java.lang.Long
-
Returns the number of one-bits in the two's complement binary
representation of the specified long value.
- bitCount() - Method in class java.math.BigInteger
-
Returns the number of bits in the two's complement representation
of this BigInteger that differ from its sign bit.
- bitLength() - Method in class java.math.BigInteger
-
Returns the number of bits in the minimal two's-complement
representation of this BigInteger, excluding a sign bit.
- Boolean - Class in java.lang
-
The Boolean class wraps a value of the primitive type
boolean in an object.
- Boolean(boolean) - Constructor for class java.lang.Boolean
-
Allocates a Boolean object representing the
value argument.
- Boolean(String) - Constructor for class java.lang.Boolean
-
Allocates a Boolean object representing the value
true if the string argument is not null
and is equal, ignoring case, to the string "true".
- booleanValue() - Method in class java.lang.Boolean
-
Returns the value of this Boolean object as a boolean
primitive.
- buf - Variable in class java.io.BufferedOutputStream
-
The internal buffer where data is stored.
- buf - Variable in class java.io.ByteArrayInputStream
-
An array of bytes that was provided
by the creator of the stream.
- buf - Variable in class java.io.ByteArrayOutputStream
-
The buffer where data is stored.
- buf - Variable in class java.io.PushbackInputStream
-
The pushback buffer.
- buf - Variable in class java.util.zip.InflaterInputStream
-
Input buffer for decompression.
- BufferedOutputStream - Class in java.io
-
The class implements a buffered output stream.
- BufferedOutputStream(OutputStream) - Constructor for class java.io.BufferedOutputStream
-
Creates a new buffered output stream to write data to the
specified underlying output stream.
- BufferedOutputStream(OutputStream, int) - Constructor for class java.io.BufferedOutputStream
-
Creates a new buffered output stream to write data to the
specified underlying output stream with the specified buffer
size.
- BufferedReader - Class in java.io
-
Reads text from a character-input stream, buffering characters so as to
provide for the efficient reading of characters, arrays, and lines.
- BufferedReader(Reader, int) - Constructor for class java.io.BufferedReader
-
Creates a buffering character-input stream that uses an input buffer of
the specified size.
- BufferedReader(Reader) - Constructor for class java.io.BufferedReader
-
Creates a buffering character-input stream that uses a default-sized
input buffer.
- BufferedWriter - Class in java.io
-
Writes text to a character-output stream, buffering characters so as to
provide for the efficient writing of single characters, arrays, and strings.
- BufferedWriter(Writer) - Constructor for class java.io.BufferedWriter
-
Creates a buffered character-output stream that uses a default-sized
output buffer.
- BufferedWriter(Writer, int) - Constructor for class java.io.BufferedWriter
-
Creates a new buffered character-output stream that uses an output
buffer of the given size.
- Byte - Class in java.lang
-
The Byte class wraps a value of primitive type byte
in an object.
- Byte(byte) - Constructor for class java.lang.Byte
-
Constructs a newly allocated Byte object that
represents the specified byte value.
- Byte(String) - Constructor for class java.lang.Byte
-
Constructs a newly allocated Byte object that
represents the byte value indicated by the
String parameter.
- ByteArrayInputStream - Class in java.io
-
A ByteArrayInputStream contains
an internal buffer that contains bytes that
may be read from the stream.
- ByteArrayInputStream(byte[]) - Constructor for class java.io.ByteArrayInputStream
-
Creates a ByteArrayInputStream
so that it uses buf as its
buffer array.
- ByteArrayInputStream(byte[], int, int) - Constructor for class java.io.ByteArrayInputStream
-
Creates ByteArrayInputStream
that uses buf as its
buffer array.
- ByteArrayOutputStream - Class in java.io
-
This class implements an output stream in which the data is
written into a byte array.
- ByteArrayOutputStream() - Constructor for class java.io.ByteArrayOutputStream
-
Creates a new byte array output stream.
- ByteArrayOutputStream(int) - Constructor for class java.io.ByteArrayOutputStream
-
Creates a new byte array output stream, with a buffer capacity of
the specified size, in bytes.
- bytesTransferred - Variable in exception java.io.InterruptedIOException
-
Reports how many bytes had been transferred as part of the I/O
operation before it was interrupted.
- byteValue() - Method in class java.lang.Byte
-
Returns the value of this Byte as a
byte.
- byteValue() - Method in class java.lang.Double
-
Returns the value of this Double as a byte (by
casting to a byte).
- byteValue() - Method in class java.lang.Float
-
Returns the value of this Float as a byte (by
casting to a byte).
- byteValue() - Method in class java.lang.Integer
-
Returns the value of this Integer as a
byte.
- byteValue() - Method in class java.lang.Long
-
Returns the value of this Long as a
byte.
- byteValue() - Method in class java.lang.Number
-
Returns the value of the specified number as a byte.
- byteValue() - Method in class java.lang.Short
-
Returns the value of this Short as a
byte.
- byteValueExact() - Method in class java.math.BigDecimal
-
Converts this BigDecimal to a byte, checking
for lost information.
- call() - Method in interface java.util.concurrent.Callable
-
Computes a result, or throws an exception if unable to do so.
- Callable<V> - Interface in java.util.concurrent
-
A task that returns a result and may throw an exception.
- canExecute() - Method in class java.io.File
-
Tests whether the application can execute the file denoted by this
abstract pathname.
- canRead() - Method in class java.io.File
-
Tests whether the application can read the file denoted by this
abstract pathname.
- canWrite() - Method in class java.io.File
-
Tests whether the application can modify the file denoted by this
abstract pathname.
- capacity() - Method in class java.lang.StringBuffer
-
- capacity() - Method in class java.util.Vector
-
Returns the current capacity of this vector.
- capacityIncrement - Variable in class java.util.Vector
-
The amount by which the capacity of the vector is automatically
incremented when its size becomes greater than its capacity.
- CASE_INSENSITIVE_ORDER - Static variable in class java.lang.String
-
A Comparator that orders String objects as by
compareToIgnoreCase.
- cast(Object) - Method in class java.lang.Class
-
Casts an object to the class or interface represented
by this Class object.
- ceil(double) - Static method in class java.lang.Math
-
Returns the smallest (closest to negative infinity)
double value that is greater than or equal to the
argument and is equal to a mathematical integer.
- ceiling(E) - Method in interface java.util.NavigableSet
-
Returns the least element in this set greater than or equal to
the given element, or null if there is no such element.
- ceiling(E) - Method in class java.util.TreeSet
-
- ceilingEntry(K) - Method in interface java.util.NavigableMap
-
Returns a key-value mapping associated with the least key
greater than or equal to the given key, or null if
there is no such key.
- ceilingEntry(K) - Method in class java.util.TreeMap
-
- ceilingKey(K) - Method in interface java.util.NavigableMap
-
Returns the least key greater than or equal to the given key,
or null if there is no such key.
- ceilingKey(K) - Method in class java.util.TreeMap
-
- Character - Class in java.lang
-
The Character class wraps a value of the primitive
type char in an object.
- Character(char) - Constructor for class java.lang.Character
-
Constructs a newly allocated Character object that
represents the specified char value.
- Character.Subset - Class in java.lang
-
Instances of this class represent particular subsets of the Unicode
character set.
- Character.Subset(String) - Constructor for class java.lang.Character.Subset
-
Constructs a new Subset instance.
- charAt(int) - Method in interface java.lang.CharSequence
-
Returns the char value at the specified index.
- charAt(int) - Method in class java.lang.String
-
Returns the char value at the
specified index.
- charAt(int) - Method in class java.lang.StringBuffer
-
- charCount(int) - Static method in class java.lang.Character
-
Determines the number of char values needed to
represent the specified character (Unicode code point).
- CharSequence - Interface in java.lang
-
A CharSequence is a readable sequence of char values.
- charValue() - Method in class java.lang.Character
-
Returns the value of this Character object.
- checkAccess() - Method in class java.lang.Thread
-
Determines if the currently running thread has permission to
modify this thread.
- checkedCollection(Collection<E>, Class<E>) - Static method in class java.util.Collections
-
Returns a dynamically typesafe view of the specified collection.
- checkedList(List<E>, Class<E>) - Static method in class java.util.Collections
-
Returns a dynamically typesafe view of the specified list.
- checkedMap(Map<K, V>, Class<K>, Class<V>) - Static method in class java.util.Collections
-
Returns a dynamically typesafe view of the specified map.
- checkedSet(Set<E>, Class<E>) - Static method in class java.util.Collections
-
Returns a dynamically typesafe view of the specified set.
- checkedSortedMap(SortedMap<K, V>, Class<K>, Class<V>) - Static method in class java.util.Collections
-
Returns a dynamically typesafe view of the specified sorted map.
- checkedSortedSet(SortedSet<E>, Class<E>) - Static method in class java.util.Collections
-
Returns a dynamically typesafe view of the specified sorted set.
- checkError() - Method in class java.io.PrintStream
-
Flushes the stream and checks its error state.
- checkError() - Method in class java.io.PrintWriter
-
Flushes the stream if it's not closed and checks its error state.
- Checksum - Interface in java.util.zip
-
An interface representing a data checksum.
- Class<T> - Class in java.lang
-
Instances of the class Class represent classes and
interfaces in a running Java application.
- ClassCastException - Exception in java.lang
-
Thrown to indicate that the code has attempted to cast an object
to a subclass of which it is not an instance.
- ClassCastException() - Constructor for exception java.lang.ClassCastException
-
Constructs a ClassCastException with no detail message.
- ClassCastException(String) - Constructor for exception java.lang.ClassCastException
-
Constructs a ClassCastException with the specified
detail message.
- ClassFormatError - Error in java.lang
-
Thrown when the Java Virtual Machine attempts to read a class
file and determines that the file is malformed or otherwise cannot
be interpreted as a class file.
- ClassFormatError() - Constructor for error java.lang.ClassFormatError
-
Constructs a ClassFormatError with no detail message.
- ClassFormatError(String) - Constructor for error java.lang.ClassFormatError
-
Constructs a ClassFormatError with the specified
detail message.
- ClassLoader - Class in java.lang
-
A class loader is an object that is responsible for loading classes.
- ClassLoader(ClassLoader) - Constructor for class java.lang.ClassLoader
-
Creates a new class loader using the specified parent class loader for
delegation.
- ClassLoader() - Constructor for class java.lang.ClassLoader
-
Creates a new class loader using the
ClassLoader returned by
the method
getSystemClassLoader() as the parent class loader.
- classModifiers() - Static method in class java.lang.reflect.Modifier
-
Return an int value OR-ing together the source language
modifiers that can be applied to a class.
- classname - Variable in exception java.io.InvalidClassException
-
Name of the invalid class.
- ClassNotFoundException - Exception in java.lang
-
Thrown when an application tries to load in a class through its
string name using:
The forName method in class Class.
- ClassNotFoundException() - Constructor for exception java.lang.ClassNotFoundException
-
Constructs a ClassNotFoundException with no detail message.
- ClassNotFoundException(String) - Constructor for exception java.lang.ClassNotFoundException
-
Constructs a ClassNotFoundException with the
specified detail message.
- ClassNotFoundException(String, Throwable) - Constructor for exception java.lang.ClassNotFoundException
-
Constructs a ClassNotFoundException with the
specified detail message and optional exception that was
raised while loading the class.
- clear() - Method in class java.lang.ref.Reference
-
Clears this reference object.
- clear() - Method in class java.util.AbstractCollection
-
Removes all of the elements from this collection (optional operation).
- clear() - Method in class java.util.AbstractList
-
Removes all of the elements from this list (optional operation).
- clear() - Method in class java.util.AbstractMap
-
Removes all of the mappings from this map (optional operation).
- clear() - Method in class java.util.AbstractQueue
-
Removes all of the elements from this queue.
- clear() - Method in class java.util.ArrayDeque
-
Removes all of the elements from this deque.
- clear() - Method in class java.util.ArrayList
-
Removes all of the elements from this list.
- clear() - Method in interface java.util.Collection
-
Removes all of the elements from this collection (optional operation).
- clear() - Method in class java.util.HashMap
-
Removes all of the mappings from this map.
- clear() - Method in class java.util.HashSet
-
Removes all of the elements from this set.
- clear() - Method in class java.util.Hashtable
-
Clears this hashtable so that it contains no keys.
- clear() - Method in class java.util.IdentityHashMap
-
Removes all of the mappings from this map.
- clear() - Method in class java.util.LinkedHashMap
-
Removes all of the mappings from this map.
- clear() - Method in class java.util.LinkedList
-
Removes all of the elements from this list.
- clear() - Method in interface java.util.List
-
Removes all of the elements from this list (optional operation).
- clear() - Method in interface java.util.Map
-
Removes all of the mappings from this map (optional operation).
- clear() - Method in class java.util.PriorityQueue
-
Removes all of the elements from this priority queue.
- clear() - Method in interface java.util.Set
-
Removes all of the elements from this set (optional operation).
- clear() - Method in class java.util.TreeMap
-
Removes all of the mappings from this map.
- clear() - Method in class java.util.TreeSet
-
Removes all of the elements from this set.
- clear() - Method in class java.util.Vector
-
Removes all of the elements from this Vector.
- clear() - Method in class java.util.WeakHashMap
-
Removes all of the mappings from this map.
- clearBit(int) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is equivalent to this BigInteger
with the designated bit cleared.
- clearError() - Method in class java.io.PrintStream
-
Clears the internal error state of this stream.
- clearError() - Method in class java.io.PrintWriter
-
Clears the error state of this stream.
- clone() - Method in class java.lang.Enum
-
Throws CloneNotSupportedException.
- clone() - Method in class java.lang.Object
-
Creates and returns a copy of this object.
- clone() - Method in class java.lang.Thread
-
Throws CloneNotSupportedException as a Thread can not be meaningfully
cloned.
- clone() - Method in class java.util.AbstractMap
-
Returns a shallow copy of this AbstractMap instance: the keys
and values themselves are not cloned.
- clone() - Method in class java.util.ArrayDeque
-
Returns a copy of this deque.
- clone() - Method in class java.util.ArrayList
-
Returns a shallow copy of this ArrayList instance.
- clone() - Method in class java.util.HashMap
-
Returns a shallow copy of this HashMap instance: the keys and
values themselves are not cloned.
- clone() - Method in class java.util.HashSet
-
Returns a shallow copy of this HashSet instance: the elements
themselves are not cloned.
- clone() - Method in class java.util.Hashtable
-
Creates a shallow copy of this hashtable.
- clone() - Method in class java.util.IdentityHashMap
-
Returns a shallow copy of this identity hash map: the keys and values
themselves are not cloned.
- clone() - Method in class java.util.LinkedList
-
Returns a shallow copy of this LinkedList.
- clone() - Method in class java.util.TreeMap
-
Returns a shallow copy of this TreeMap instance.
- clone() - Method in class java.util.TreeSet
-
Returns a shallow copy of this TreeSet instance.
- clone() - Method in class java.util.Vector
-
Returns a clone of this vector.
- clone() - Method in class java.util.zip.ZipEntry
-
Returns a copy of this entry.
- Cloneable - Interface in java.lang
-
A class implements the
Cloneable interface to
indicate to the
Object.clone() method that it
is legal for that method to make a
field-for-field copy of instances of that class.
- CloneNotSupportedException - Exception in java.lang
-
Thrown to indicate that the clone method in class
Object has been called to clone an object, but that
the object's class does not implement the Cloneable
interface.
- CloneNotSupportedException() - Constructor for exception java.lang.CloneNotSupportedException
-
Constructs a CloneNotSupportedException with no
detail message.
- CloneNotSupportedException(String) - Constructor for exception java.lang.CloneNotSupportedException
-
Constructs a CloneNotSupportedException with the
specified detail message.
- close() - Method in class java.io.BufferedReader
-
- close() - Method in class java.io.BufferedWriter
-
- close() - Method in class java.io.ByteArrayInputStream
-
Closing a ByteArrayInputStream has no effect.
- close() - Method in class java.io.ByteArrayOutputStream
-
Closing a ByteArrayOutputStream has no effect.
- close() - Method in interface java.io.Closeable
-
Closes this stream and releases any system resources associated
with it.
- close() - Method in class java.io.FilterInputStream
-
Closes this input stream and releases any system resources
associated with the stream.
- close() - Method in class java.io.FilterOutputStream
-
Closes this output stream and releases any system resources
associated with the stream.
- close() - Method in class java.io.InputStream
-
Closes this input stream and releases any system resources associated
with the stream.
- close() - Method in class java.io.InputStreamReader
-
- close() - Method in interface java.io.ObjectInput
-
Closes the input stream.
- close() - Method in class java.io.ObjectInputStream
-
Closes the input stream.
- close() - Method in interface java.io.ObjectOutput
-
Closes the stream.
- close() - Method in class java.io.ObjectOutputStream
-
Closes the stream.
- close() - Method in class java.io.OutputStream
-
Closes this output stream and releases any system resources
associated with this stream.
- close() - Method in class java.io.OutputStreamWriter
-
- close() - Method in class java.io.PrintStream
-
Closes the stream.
- close() - Method in class java.io.PrintWriter
-
Closes the stream and releases any system resources associated
with it.
- close() - Method in class java.io.PushbackInputStream
-
Closes this input stream and releases any system resources
associated with the stream.
- close() - Method in class java.io.Reader
-
Closes the stream and releases any system resources associated with
it.
- close() - Method in class java.io.Writer
-
Closes the stream, flushing it first.
- close() - Method in interface java.lang.AutoCloseable
-
Closes this resource, relinquishing any underlying resources.
- close() - Method in class java.util.zip.InflaterInputStream
-
Closes this input stream and releases any system resources associated
with the stream.
- close() - Method in class java.util.zip.ZipInputStream
-
Closes this input stream and releases any system resources associated
with the stream.
- Closeable - Interface in java.io
-
A Closeable is a source or destination of data that can be closed.
- closeEntry() - Method in class java.util.zip.ZipInputStream
-
Closes the current ZIP entry and positions the stream for reading the
next entry.
- codePointAt(CharSequence, int) - Static method in class java.lang.Character
-
Returns the code point at the given index of the
CharSequence.
- codePointAt(char[], int) - Static method in class java.lang.Character
-
Returns the code point at the given index of the
char array.
- codePointAt(char[], int, int) - Static method in class java.lang.Character
-
Returns the code point at the given index of the
char array, where only array elements with
index less than limit can be used.
- codePointAt(int) - Method in class java.lang.String
-
Returns the character (Unicode code point) at the specified
index.
- codePointAt(int) - Method in class java.lang.StringBuffer
-
- codePointBefore(CharSequence, int) - Static method in class java.lang.Character
-
Returns the code point preceding the given index of the
CharSequence.
- codePointBefore(char[], int) - Static method in class java.lang.Character
-
Returns the code point preceding the given index of the
char array.
- codePointBefore(char[], int, int) - Static method in class java.lang.Character
-
Returns the code point preceding the given index of the
char array, where only array elements with
index greater than or equal to start
can be used.
- codePointBefore(int) - Method in class java.lang.String
-
Returns the character (Unicode code point) before the specified
index.
- codePointBefore(int) - Method in class java.lang.StringBuffer
-
- codePointCount(CharSequence, int, int) - Static method in class java.lang.Character
-
Returns the number of Unicode code points in the text range of
the specified char sequence.
- codePointCount(char[], int, int) - Static method in class java.lang.Character
-
Returns the number of Unicode code points in a subarray of the
char array argument.
- codePointCount(int, int) - Method in class java.lang.String
-
Returns the number of Unicode code points in the specified text
range of this String.
- codePointCount(int, int) - Method in class java.lang.StringBuffer
-
- Collection<E> - Interface in java.util
-
The root interface in the collection hierarchy.
- Collections - Class in java.util
-
This class consists exclusively of static methods that operate on or return
collections.
- COMBINING_SPACING_MARK - Static variable in class java.lang.Character
-
General category "Mc" in the Unicode specification.
- Comparable<T> - Interface in java.lang
-
This interface imposes a total ordering on the objects of each class that
implements it.
- Comparator<T> - Interface in java.util
-
A comparison function, which imposes a total ordering on some
collection of objects.
- comparator() - Method in class java.util.PriorityQueue
-
Returns the comparator used to order the elements in this
queue, or
null if this queue is sorted according to
the
natural ordering of its elements.
- comparator() - Method in interface java.util.SortedMap
-
Returns the comparator used to order the keys in this map, or
null if this map uses the
natural ordering of its keys.
- comparator() - Method in interface java.util.SortedSet
-
Returns the comparator used to order the elements in this set,
or
null if this set uses the
natural ordering of its elements.
- comparator() - Method in class java.util.TreeMap
-
- comparator() - Method in class java.util.TreeSet
-
- compare(boolean, boolean) - Static method in class java.lang.Boolean
-
Compares two boolean values.
- compare(byte, byte) - Static method in class java.lang.Byte
-
Compares two byte values numerically.
- compare(char, char) - Static method in class java.lang.Character
-
Compares two char values numerically.
- compare(double, double) - Static method in class java.lang.Double
-
Compares the two specified double values.
- compare(float, float) - Static method in class java.lang.Float
-
Compares the two specified float values.
- compare(int, int) - Static method in class java.lang.Integer
-
Compares two int values numerically.
- compare(long, long) - Static method in class java.lang.Long
-
Compares two long values numerically.
- compare(short, short) - Static method in class java.lang.Short
-
Compares two short values numerically.
- compare(T, T) - Method in interface java.util.Comparator
-
Compares its two arguments for order.
- compare(T, T, Comparator<? super T>) - Static method in class java.util.Objects
-
Returns 0 if the arguments are identical and c.compare(a, b) otherwise.
- compareTo(File) - Method in class java.io.File
-
Compares two abstract pathnames lexicographically.
- compareTo(Object) - Method in class java.io.ObjectStreamField
-
Compare this field with another ObjectStreamField.
- compareTo(Boolean) - Method in class java.lang.Boolean
-
Compares this Boolean instance with another.
- compareTo(Byte) - Method in class java.lang.Byte
-
Compares two Byte objects numerically.
- compareTo(Character) - Method in class java.lang.Character
-
Compares two Character objects numerically.
- compareTo(T) - Method in interface java.lang.Comparable
-
Compares this object with the specified object for order.
- compareTo(Double) - Method in class java.lang.Double
-
Compares two Double objects numerically.
- compareTo(E) - Method in class java.lang.Enum
-
Compares this enum with the specified object for order.
- compareTo(Float) - Method in class java.lang.Float
-
Compares two Float objects numerically.
- compareTo(Integer) - Method in class java.lang.Integer
-
Compares two Integer objects numerically.
- compareTo(Long) - Method in class java.lang.Long
-
Compares two Long objects numerically.
- compareTo(Short) - Method in class java.lang.Short
-
Compares two Short objects numerically.
- compareTo(String) - Method in class java.lang.String
-
Compares two strings lexicographically.
- compareTo(BigDecimal) - Method in class java.math.BigDecimal
-
Compares this BigDecimal with the specified
BigDecimal.
- compareTo(BigInteger) - Method in class java.math.BigInteger
-
Compares this BigInteger with the specified BigInteger.
- compareTo(URI) - Method in class java.net.URI
-
Compares this URI to another object, which must be a URI.
- compareToIgnoreCase(String) - Method in class java.lang.String
-
Compares two strings lexicographically, ignoring case
differences.
- concat(String) - Method in class java.lang.String
-
Concatenates the specified string to the end of this string.
- ConcurrentModificationException - Exception in java.util
-
This exception may be thrown by methods that have detected concurrent
modification of an object when such modification is not permissible.
- ConcurrentModificationException() - Constructor for exception java.util.ConcurrentModificationException
-
Constructs a ConcurrentModificationException with no
detail message.
- ConcurrentModificationException(String) - Constructor for exception java.util.ConcurrentModificationException
-
Constructs a ConcurrentModificationException with the
specified detail message.
- ConcurrentModificationException(Throwable) - Constructor for exception java.util.ConcurrentModificationException
-
Constructs a new exception with the specified cause and a detail
message of {@code (cause==null ?
- ConcurrentModificationException(String, Throwable) - Constructor for exception java.util.ConcurrentModificationException
-
Constructs a new exception with the specified detail message and
cause.
- CONFIG - Static variable in class java.util.logging.Level
-
CONFIG is a message level for static configuration messages.
- config(String) - Method in class java.util.logging.Logger
-
Log a CONFIG message.
- CONNECTOR_PUNCTUATION - Static variable in class java.lang.Character
-
General category "Pc" in the Unicode specification.
- Constructor<T> - Class in java.lang.reflect
-
Constructor provides information about, and access to, a single
constructor for a class.
- constructorModifiers() - Static method in class java.lang.reflect.Modifier
-
Return an int value OR-ing together the source language
modifiers that can be applied to a constructor.
- contains(CharSequence) - Method in class java.lang.String
-
Returns true if and only if this string contains the specified
sequence of char values.
- contains(Object) - Method in class java.util.AbstractCollection
-
Returns true if this collection contains the specified element.
- contains(Object) - Method in class java.util.ArrayDeque
-
Returns true if this deque contains the specified element.
- contains(Object) - Method in class java.util.ArrayList
-
Returns true if this list contains the specified element.
- contains(Object) - Method in interface java.util.Collection
-
Returns true if this collection contains the specified element.
- contains(Object) - Method in interface java.util.Deque
-
Returns true if this deque contains the specified element.
- contains(Object) - Method in class java.util.HashSet
-
Returns true if this set contains the specified element.
- contains(Object) - Method in class java.util.Hashtable
-
Tests if some key maps into the specified value in this hashtable.
- contains(Object) - Method in class java.util.LinkedList
-
Returns true if this list contains the specified element.
- contains(Object) - Method in interface java.util.List
-
Returns true if this list contains the specified element.
- contains(Object) - Method in class java.util.PriorityQueue
-
Returns true if this queue contains the specified element.
- contains(Object) - Method in interface java.util.Set
-
Returns true if this set contains the specified element.
- contains(Object) - Method in class java.util.TreeSet
-
Returns true if this set contains the specified element.
- contains(Object) - Method in class java.util.Vector
-
Returns true if this vector contains the specified element.
- containsAll(Collection<?>) - Method in class java.util.AbstractCollection
-
Returns true if this collection contains all of the elements
in the specified collection.
- containsAll(Collection<?>) - Method in interface java.util.Collection
-
Returns true if this collection contains all of the elements
in the specified collection.
- containsAll(Collection<?>) - Method in interface java.util.List
-
Returns true if this list contains all of the elements of the
specified collection.
- containsAll(Collection<?>) - Method in interface java.util.Set
-
Returns true if this set contains all of the elements of the
specified collection.
- containsAll(Collection<?>) - Method in class java.util.Vector
-
Returns true if this Vector contains all of the elements in the
specified Collection.
- containsKey(Object) - Method in class java.util.AbstractMap
-
Returns true if this map contains a mapping for the specified
key.
- containsKey(Object) - Method in class java.util.HashMap
-
Returns true if this map contains a mapping for the
specified key.
- containsKey(Object) - Method in class java.util.Hashtable
-
Tests if the specified object is a key in this hashtable.
- containsKey(Object) - Method in class java.util.IdentityHashMap
-
Tests whether the specified object reference is a key in this identity
hash map.
- containsKey(Object) - Method in interface java.util.Map
-
Returns true if this map contains a mapping for the specified
key.
- containsKey(Object) - Method in class java.util.TreeMap
-
Returns true if this map contains a mapping for the specified
key.
- containsKey(Object) - Method in class java.util.WeakHashMap
-
Returns true if this map contains a mapping for the
specified key.
- containsValue(Object) - Method in class java.util.AbstractMap
-
Returns true if this map maps one or more keys to the
specified value.
- containsValue(Object) - Method in class java.util.HashMap
-
Returns true if this map maps one or more keys to the
specified value.
- containsValue(Object) - Method in class java.util.Hashtable
-
Returns true if this hashtable maps one or more keys to this value.
- containsValue(Object) - Method in class java.util.IdentityHashMap
-
Tests whether the specified object reference is a value in this identity
hash map.
- containsValue(Object) - Method in class java.util.LinkedHashMap
-
Returns true if this map maps one or more keys to the
specified value.
- containsValue(Object) - Method in interface java.util.Map
-
Returns true if this map maps one or more keys to the
specified value.
- containsValue(Object) - Method in class java.util.TreeMap
-
Returns true if this map maps one or more keys to the
specified value.
- containsValue(Object) - Method in class java.util.WeakHashMap
-
Returns true if this map maps one or more keys to the
specified value.
- contentEquals(StringBuffer) - Method in class java.lang.String
-
Compares this string to the specified StringBuffer.
- contentEquals(CharSequence) - Method in class java.lang.String
-
Compares this string to the specified CharSequence.
- CONTROL - Static variable in class java.lang.Character
-
General category "Cc" in the Unicode specification.
- convert(long, TimeUnit) - Method in enum java.util.concurrent.TimeUnit
-
Convert the given time duration in the given unit to this
unit.
- copy(List<? super T>, List<? extends T>) - Static method in class java.util.Collections
-
Copies all of the elements from one list into another.
- copyInto(Object[]) - Method in class java.util.Vector
-
Copies the components of this vector into the specified array.
- copyOf(T[], int) - Static method in class java.util.Arrays
-
Copies the specified array, truncating or padding with nulls (if necessary)
so the copy has the specified length.
- copyOf(U[], int, Class<? extends T[]>) - Static method in class java.util.Arrays
-
Copies the specified array, truncating or padding with nulls (if necessary)
so the copy has the specified length.
- copyOf(byte[], int) - Static method in class java.util.Arrays
-
Copies the specified array, truncating or padding with zeros (if necessary)
so the copy has the specified length.
- copyOf(short[], int) - Static method in class java.util.Arrays
-
Copies the specified array, truncating or padding with zeros (if necessary)
so the copy has the specified length.
- copyOf(int[], int) - Static method in class java.util.Arrays
-
Copies the specified array, truncating or padding with zeros (if necessary)
so the copy has the specified length.
- copyOf(long[], int) - Static method in class java.util.Arrays
-
Copies the specified array, truncating or padding with zeros (if necessary)
so the copy has the specified length.
- copyOf(char[], int) - Static method in class java.util.Arrays
-
Copies the specified array, truncating or padding with null characters (if necessary)
so the copy has the specified length.
- copyOf(float[], int) - Static method in class java.util.Arrays
-
Copies the specified array, truncating or padding with zeros (if necessary)
so the copy has the specified length.
- copyOf(double[], int) - Static method in class java.util.Arrays
-
Copies the specified array, truncating or padding with zeros (if necessary)
so the copy has the specified length.
- copyOf(boolean[], int) - Static method in class java.util.Arrays
-
Copies the specified array, truncating or padding with false (if necessary)
so the copy has the specified length.
- copyOfRange(T[], int, int) - Static method in class java.util.Arrays
-
Copies the specified range of the specified array into a new array.
- copyOfRange(U[], int, int, Class<? extends T[]>) - Static method in class java.util.Arrays
-
Copies the specified range of the specified array into a new array.
- copyOfRange(byte[], int, int) - Static method in class java.util.Arrays
-
Copies the specified range of the specified array into a new array.
- copyOfRange(short[], int, int) - Static method in class java.util.Arrays
-
Copies the specified range of the specified array into a new array.
- copyOfRange(int[], int, int) - Static method in class java.util.Arrays
-
Copies the specified range of the specified array into a new array.
- copyOfRange(long[], int, int) - Static method in class java.util.Arrays
-
Copies the specified range of the specified array into a new array.
- copyOfRange(char[], int, int) - Static method in class java.util.Arrays
-
Copies the specified range of the specified array into a new array.
- copyOfRange(float[], int, int) - Static method in class java.util.Arrays
-
Copies the specified range of the specified array into a new array.
- copyOfRange(double[], int, int) - Static method in class java.util.Arrays
-
Copies the specified range of the specified array into a new array.
- copyOfRange(boolean[], int, int) - Static method in class java.util.Arrays
-
Copies the specified range of the specified array into a new array.
- copyValueOf(char[], int, int) - Static method in class java.lang.String
-
Returns a String that represents the character sequence in the
array specified.
- copyValueOf(char[]) - Static method in class java.lang.String
-
Returns a String that represents the character sequence in the
array specified.
- cos(double) - Static method in class java.lang.Math
-
Returns the trigonometric cosine of an angle.
- count - Variable in class java.io.BufferedOutputStream
-
The number of valid bytes in the buffer.
- count - Variable in class java.io.ByteArrayInputStream
-
The index one greater than the last valid character in the input
stream buffer.
- count - Variable in class java.io.ByteArrayOutputStream
-
The number of valid bytes in the buffer.
- countStackFrames() - Method in class java.lang.Thread
-
Deprecated.
The definition of this call depends on Thread.suspend(),
which is deprecated. Further, the results of this call
were never well-defined.
- countTokens() - Method in class java.util.StringTokenizer
-
Calculates the number of times that this tokenizer's
nextToken method can be called before it generates an
exception.
- CRC32 - Class in java.util.zip
-
Computes CRC32 data checksum of a data stream.
- CRC32() - Constructor for class java.util.zip.CRC32
-
- create(String) - Static method in class java.net.URI
-
Creates a URI by parsing the given string.
- createNewFile() - Method in class java.io.File
-
Atomically creates a new, empty file named by this abstract pathname if
and only if a file with this name does not yet exist.
- createTempFile(String, String, File) - Static method in class java.io.File
-
Creates a new empty file in the specified directory, using the
given prefix and suffix strings to generate its name.
- createTempFile(String, String) - Static method in class java.io.File
-
Creates an empty file in the default temporary-file directory, using
the given prefix and suffix to generate its name.
- createZipEntry(String) - Method in class java.util.zip.ZipInputStream
-
Creates a new ZipEntry object for the specified
entry name.
- CURRENCY_SYMBOL - Static variable in class java.lang.Character
-
General category "Sc" in the Unicode specification.
- currentThread() - Static method in class java.lang.Thread
-
Returns a reference to the currently executing thread object.
- currentTimeMillis() - Static method in class java.lang.System
-
- DASH_PUNCTUATION - Static variable in class java.lang.Character
-
General category "Pd" in the Unicode specification.
- DataFormatException - Exception in java.util.zip
-
Signals that a data format error has occurred.
- DataFormatException() - Constructor for exception java.util.zip.DataFormatException
-
Constructs a DataFormatException with no detail message.
- DataFormatException(String) - Constructor for exception java.util.zip.DataFormatException
-
Constructs a DataFormatException with the specified detail message.
- DataInput - Interface in java.io
-
The DataInput interface provides
for reading bytes from a binary stream and
reconstructing from them data in any of
the Java primitive types.
- DataInputStream - Class in java.io
-
A data input stream lets an application read primitive Java data
types from an underlying input stream in a machine-independent
way.
- DataInputStream(InputStream) - Constructor for class java.io.DataInputStream
-
Creates a DataInputStream that uses the specified
underlying InputStream.
- DataOutput - Interface in java.io
-
The DataOutput interface provides
for converting data from any of the Java
primitive types to a series of bytes and
writing these bytes to a binary stream.
- DataOutputStream - Class in java.io
-
A data output stream lets an application write primitive Java data
types to an output stream in a portable way.
- DataOutputStream(OutputStream) - Constructor for class java.io.DataOutputStream
-
Creates a new data output stream to write data to the specified
underlying output stream.
- DECIMAL128 - Static variable in class java.math.MathContext
-
A
MathContext object with a precision setting
matching the IEEE 754R Decimal128 format, 34 digits, and a
rounding mode of
HALF_EVEN, the
IEEE 754R default.
- DECIMAL32 - Static variable in class java.math.MathContext
-
A
MathContext object with a precision setting
matching the IEEE 754R Decimal32 format, 7 digits, and a
rounding mode of
HALF_EVEN, the
IEEE 754R default.
- DECIMAL64 - Static variable in class java.math.MathContext
-
A
MathContext object with a precision setting
matching the IEEE 754R Decimal64 format, 16 digits, and a
rounding mode of
HALF_EVEN, the
IEEE 754R default.
- DECIMAL_DIGIT_NUMBER - Static variable in class java.lang.Character
-
General category "Nd" in the Unicode specification.
- DECLARED - Static variable in interface java.lang.reflect.Member
-
Identifies the set of declared members of a class or interface.
- decode(String) - Static method in class java.lang.Byte
-
Decodes a String into a Byte.
- decode(String) - Static method in class java.lang.Integer
-
Decodes a String into an Integer.
- decode(String) - Static method in class java.lang.Long
-
Decodes a String into a Long.
- decode(String) - Static method in class java.lang.Short
-
Decodes a String into a Short.
- deepEquals(Object[], Object[]) - Static method in class java.util.Arrays
-
Returns true if the two specified arrays are deeply
equal to one another.
- deepEquals(Object, Object) - Static method in class java.util.Objects
-
Returns true if the arguments are deeply equal to each other
and false otherwise.
- deepHashCode(Object[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the "deep contents" of the specified
array.
- deepToString(Object[]) - Static method in class java.util.Arrays
-
Returns a string representation of the "deep contents" of the specified
array.
- defaulted(String) - Method in class java.io.ObjectInputStream.GetField
-
Return true if the named field is defaulted and has no value in this
stream.
- defaultReadObject() - Method in class java.io.ObjectInputStream
-
Read the non-static and non-transient fields of the current class from
this stream.
- defaultWriteObject() - Method in class java.io.ObjectOutputStream
-
Write the non-static and non-transient fields of the current class to
this stream.
- defineClass(byte[], int, int) - Method in class java.lang.ClassLoader
-
- defineClass(String, byte[], int, int) - Method in class java.lang.ClassLoader
-
Converts an array of bytes into an instance of class Class.
- DEFLATED - Static variable in class java.util.zip.ZipEntry
-
Compression method for compressed (deflated) entries.
- delete() - Method in class java.io.File
-
Deletes the file or directory denoted by this abstract pathname.
- delete(int, int) - Method in class java.lang.StringBuffer
-
- delete(int, int) - Method in class java.lang.StringBuilder
-
- deleteCharAt(int) - Method in class java.lang.StringBuffer
-
- deleteCharAt(int) - Method in class java.lang.StringBuilder
-
- deleteOnExit() - Method in class java.io.File
-
Requests that the file or directory denoted by this abstract
pathname be deleted when the virtual machine terminates.
- Deprecated - Annotation Type in java.lang
-
A program element annotated @Deprecated is one that programmers
are discouraged from using, typically because it is dangerous,
or because a better alternative exists.
- Deque<E> - Interface in java.util
-
A linear collection that supports element insertion and removal at
both ends.
- descendingIterator() - Method in class java.util.ArrayDeque
-
- descendingIterator() - Method in interface java.util.Deque
-
Returns an iterator over the elements in this deque in reverse
sequential order.
- descendingIterator() - Method in class java.util.LinkedList
-
- descendingIterator() - Method in interface java.util.NavigableSet
-
Returns an iterator over the elements in this set, in descending order.
- descendingIterator() - Method in class java.util.TreeSet
-
Returns an iterator over the elements in this set in descending order.
- descendingKeySet() - Method in interface java.util.NavigableMap
-
Returns a reverse order
NavigableSet view of the keys contained in this map.
- descendingKeySet() - Method in class java.util.TreeMap
-
- descendingMap() - Method in interface java.util.NavigableMap
-
Returns a reverse order view of the mappings contained in this map.
- descendingMap() - Method in class java.util.TreeMap
-
- descendingSet() - Method in interface java.util.NavigableSet
-
Returns a reverse order view of the elements contained in this set.
- descendingSet() - Method in class java.util.TreeSet
-
- desiredAssertionStatus() - Method in class java.lang.Class
-
- destroy() - Method in class java.lang.Thread
-
Deprecated.
This method was originally designed to destroy this
thread without any cleanup. Any monitors it held would have
remained locked. However, the method was never implemented.
If if were to be implemented, it would be deadlock-prone in
much the manner of Thread.suspend(). If the target thread held
a lock protecting a critical system resource when it was
destroyed, no thread could ever access this resource again.
If another thread ever attempted to lock this resource, deadlock
would result. Such deadlocks typically manifest themselves as
"frozen" processes. For more information, see
Why are Thread.stop, Thread.suspend and Thread.resume Deprecated?.
- detail - Variable in exception java.io.WriteAbortedException
-
Exception that was caught while writing the ObjectStream.
- Dictionary<K,V> - Class in java.util
-
The Dictionary class is the abstract parent of any
class, such as Hashtable, which maps keys to values.
- Dictionary() - Constructor for class java.util.Dictionary
-
Sole constructor.
- digit(char, int) - Static method in class java.lang.Character
-
Returns the numeric value of the character ch in the
specified radix.
- digit(int, int) - Static method in class java.lang.Character
-
Returns the numeric value of the specified character (Unicode
code point) in the specified radix.
- DIRECTIONALITY_ARABIC_NUMBER - Static variable in class java.lang.Character
-
Weak bidirectional character type "AN" in the Unicode specification.
- DIRECTIONALITY_BOUNDARY_NEUTRAL - Static variable in class java.lang.Character
-
Weak bidirectional character type "BN" in the Unicode specification.
- DIRECTIONALITY_COMMON_NUMBER_SEPARATOR - Static variable in class java.lang.Character
-
Weak bidirectional character type "CS" in the Unicode specification.
- DIRECTIONALITY_EUROPEAN_NUMBER - Static variable in class java.lang.Character
-
Weak bidirectional character type "EN" in the Unicode specification.
- DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR - Static variable in class java.lang.Character
-
Weak bidirectional character type "ES" in the Unicode specification.
- DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR - Static variable in class java.lang.Character
-
Weak bidirectional character type "ET" in the Unicode specification.
- DIRECTIONALITY_LEFT_TO_RIGHT - Static variable in class java.lang.Character
-
Strong bidirectional character type "L" in the Unicode specification.
- DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING - Static variable in class java.lang.Character
-
Strong bidirectional character type "LRE" in the Unicode specification.
- DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE - Static variable in class java.lang.Character
-
Strong bidirectional character type "LRO" in the Unicode specification.
- DIRECTIONALITY_NONSPACING_MARK - Static variable in class java.lang.Character
-
Weak bidirectional character type "NSM" in the Unicode specification.
- DIRECTIONALITY_OTHER_NEUTRALS - Static variable in class java.lang.Character
-
Neutral bidirectional character type "ON" in the Unicode specification.
- DIRECTIONALITY_PARAGRAPH_SEPARATOR - Static variable in class java.lang.Character
-
Neutral bidirectional character type "B" in the Unicode specification.
- DIRECTIONALITY_POP_DIRECTIONAL_FORMAT - Static variable in class java.lang.Character
-
Weak bidirectional character type "PDF" in the Unicode specification.
- DIRECTIONALITY_RIGHT_TO_LEFT - Static variable in class java.lang.Character
-
Strong bidirectional character type "R" in the Unicode specification.
- DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC - Static variable in class java.lang.Character
-
Strong bidirectional character type "AL" in the Unicode specification.
- DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING - Static variable in class java.lang.Character
-
Strong bidirectional character type "RLE" in the Unicode specification.
- DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE - Static variable in class java.lang.Character
-
Strong bidirectional character type "RLO" in the Unicode specification.
- DIRECTIONALITY_SEGMENT_SEPARATOR - Static variable in class java.lang.Character
-
Neutral bidirectional character type "S" in the Unicode specification.
- DIRECTIONALITY_UNDEFINED - Static variable in class java.lang.Character
-
Undefined bidirectional character type.
- DIRECTIONALITY_WHITESPACE - Static variable in class java.lang.Character
-
Neutral bidirectional character type "WS" in the Unicode specification.
- disjoint(Collection<?>, Collection<?>) - Static method in class java.util.Collections
-
Returns true if the two specified collections have no
elements in common.
- divide(BigDecimal, int, int) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this /
divisor), and whose scale is as specified.
- divide(BigDecimal, int, RoundingMode) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this /
divisor), and whose scale is as specified.
- divide(BigDecimal, int) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this /
divisor), and whose scale is this.scale().
- divide(BigDecimal, RoundingMode) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this /
divisor), and whose scale is this.scale().
- divide(BigDecimal) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this /
divisor), and whose preferred scale is (this.scale() -
divisor.scale()); if the exact quotient cannot be
represented (because it has a non-terminating decimal
expansion) an ArithmeticException is thrown.
- divide(BigDecimal, MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this /
divisor), with rounding according to the context settings.
- divide(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this / val).
- divideAndRemainder(BigDecimal) - Method in class java.math.BigDecimal
-
Returns a two-element BigDecimal array containing the
result of divideToIntegralValue followed by the result of
remainder on the two operands.
- divideAndRemainder(BigDecimal, MathContext) - Method in class java.math.BigDecimal
-
Returns a two-element BigDecimal array containing the
result of divideToIntegralValue followed by the result of
remainder on the two operands calculated with rounding
according to the context settings.
- divideAndRemainder(BigInteger) - Method in class java.math.BigInteger
-
Returns an array of two BigIntegers containing (this / val)
followed by (this % val).
- divideToIntegralValue(BigDecimal) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is the integer part
of the quotient (this / divisor) rounded down.
- divideToIntegralValue(BigDecimal, MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is the integer part
of (this / divisor).
- Documented - Annotation Type in java.lang.annotation
-
Indicates that annotations with a type are to be documented by javadoc
and similar tools by default.
- Double - Class in java.lang
-
The Double class wraps a value of the primitive type
double in an object.
- Double(double) - Constructor for class java.lang.Double
-
Constructs a newly allocated Double object that
represents the primitive double argument.
- Double(String) - Constructor for class java.lang.Double
-
Constructs a newly allocated Double object that
represents the floating-point value of type double
represented by the string.
- doubleToLongBits(double) - Static method in class java.lang.Double
-
Returns a representation of the specified floating-point value
according to the IEEE 754 floating-point "double
format" bit layout.
- doubleToRawLongBits(double) - Static method in class java.lang.Double
-
Returns a representation of the specified floating-point value
according to the IEEE 754 floating-point "double
format" bit layout, preserving Not-a-Number (NaN) values.
- doubleValue() - Method in class java.lang.Byte
-
Returns the value of this Byte as a
double.
- doubleValue() - Method in class java.lang.Double
-
Returns the double value of this
Double object.
- doubleValue() - Method in class java.lang.Float
-
Returns the double value of this Float object.
- doubleValue() - Method in class java.lang.Integer
-
Returns the value of this Integer as a
double.
- doubleValue() - Method in class java.lang.Long
-
Returns the value of this Long as a
double.
- doubleValue() - Method in class java.lang.Number
-
Returns the value of the specified number as a double.
- doubleValue() - Method in class java.lang.Short
-
Returns the value of this Short as a
double.
- doubleValue() - Method in class java.math.BigDecimal
-
Converts this BigDecimal to a double.
- doubleValue() - Method in class java.math.BigInteger
-
Converts this BigInteger to a double.
- drain() - Method in class java.io.ObjectOutputStream
-
Drain any buffered data in ObjectOutputStream.
- dumpStack() - Static method in class java.lang.Thread
-
Prints a stack trace of the current thread to the standard error stream.
- E - Static variable in class java.lang.Math
-
The double value that is closer than any other to
e, the base of the natural logarithms.
- element() - Method in class java.util.AbstractQueue
-
Retrieves, but does not remove, the head of this queue.
- element() - Method in class java.util.ArrayDeque
-
Retrieves, but does not remove, the head of the queue represented by
this deque.
- element() - Method in interface java.util.Deque
-
Retrieves, but does not remove, the head of the queue represented by
this deque (in other words, the first element of this deque).
- element() - Method in class java.util.LinkedList
-
Retrieves, but does not remove, the head (first element) of this list.
- element() - Method in interface java.util.Queue
-
Retrieves, but does not remove, the head of this queue.
- elementAt(int) - Method in class java.util.Vector
-
Returns the component at the specified index.
- elementCount - Variable in class java.util.Vector
-
The number of valid components in this Vector object.
- elementData - Variable in class java.util.Vector
-
The array buffer into which the components of the vector are
stored.
- elements() - Method in class java.util.Dictionary
-
Returns an enumeration of the values in this dictionary.
- elements() - Method in class java.util.Hashtable
-
Returns an enumeration of the values in this hashtable.
- elements() - Method in class java.util.Vector
-
Returns an enumeration of the components of this vector.
- ElementType - Enum in java.lang.annotation
-
A program element type.
- empty() - Method in class java.util.Stack
-
Tests if this stack is empty.
- EMPTY_LIST - Static variable in class java.util.Collections
-
The empty list (immutable).
- EMPTY_MAP - Static variable in class java.util.Collections
-
The empty map (immutable).
- EMPTY_SET - Static variable in class java.util.Collections
-
The empty set (immutable).
- emptyEnumeration() - Static method in class java.util.Collections
-
Returns an enumeration that has no elements.
- emptyIterator() - Static method in class java.util.Collections
-
Returns an iterator that has no elements.
- emptyList() - Static method in class java.util.Collections
-
Returns the empty list (immutable).
- emptyListIterator() - Static method in class java.util.Collections
-
Returns a list iterator that has no elements.
- emptyMap() - Static method in class java.util.Collections
-
Returns the empty map (immutable).
- emptySet() - Static method in class java.util.Collections
-
Returns the empty set (immutable).
- EmptyStackException - Exception in java.util
-
Thrown by methods in the Stack class to indicate
that the stack is empty.
- EmptyStackException() - Constructor for exception java.util.EmptyStackException
-
Constructs a new EmptyStackException with null
as its error message string.
- enableReplaceObject(boolean) - Method in class java.io.ObjectOutputStream
-
Enable the stream to do replacement of objects in the stream.
- enableResolveObject(boolean) - Method in class java.io.ObjectInputStream
-
Enable the stream to allow objects read from the stream to be replaced.
- ENCLOSING_MARK - Static variable in class java.lang.Character
-
General category "Me" in the Unicode specification.
- end() - Method in class java.util.zip.Inflater
-
Closes the decompressor and discards any unprocessed input.
- END_PUNCTUATION - Static variable in class java.lang.Character
-
General category "Pe" in the Unicode specification.
- endsWith(String) - Method in class java.lang.String
-
Tests if this string ends with the specified suffix.
- enqueue() - Method in class java.lang.ref.Reference
-
Adds this reference object to the queue with which it is registered,
if any.
- ensureCapacity(int) - Method in class java.lang.StringBuffer
-
- ensureCapacity(int) - Method in class java.util.ArrayList
-
Increases the capacity of this ArrayList instance, if
necessary, to ensure that it can hold at least the number of elements
specified by the minimum capacity argument.
- ensureCapacity(int) - Method in class java.util.Vector
-
Increases the capacity of this vector, if necessary, to ensure
that it can hold at least the number of components specified by
the minimum capacity argument.
- entering(String, String) - Method in class java.util.logging.Logger
-
Log a method entry.
- entering(String, String, Object) - Method in class java.util.logging.Logger
-
Log a method entry, with one parameter.
- entering(String, String, Object[]) - Method in class java.util.logging.Logger
-
Log a method entry, with an array of parameters.
- entrySet() - Method in class java.util.AbstractMap
-
- entrySet() - Method in class java.util.HashMap
-
Returns a
Set view of the mappings contained in this map.
- entrySet() - Method in class java.util.Hashtable
-
Returns a
Set view of the mappings contained in this map.
- entrySet() - Method in class java.util.IdentityHashMap
-
Returns a
Set view of the mappings contained in this map.
- entrySet() - Method in interface java.util.Map
-
Returns a
Set view of the mappings contained in this map.
- entrySet() - Method in interface java.util.SortedMap
-
Returns a
Set view of the mappings contained in this map.
- entrySet() - Method in class java.util.TreeMap
-
Returns a
Set view of the mappings contained in this map.
- entrySet() - Method in class java.util.WeakHashMap
-
Returns a
Set view of the mappings contained in this map.
- Enum<E extends Enum<E>> - Class in java.lang
-
This is the common base class of all Java language enumeration types.
- Enum(String, int) - Constructor for class java.lang.Enum
-
Sole constructor.
- enumerate(Thread[]) - Static method in class java.lang.Thread
-
Copies into the specified array every active thread in the current
thread's thread group and its subgroups.
- enumeration(Collection<T>) - Static method in class java.util.Collections
-
Returns an enumeration over the specified collection.
- Enumeration<E> - Interface in java.util
-
An object that implements the Enumeration interface generates a
series of elements, one at a time.
- eof - Variable in exception java.io.OptionalDataException
-
True if there is no more data in the buffered part of the stream.
- EOFException - Exception in java.io
-
Signals that an end of file or end of stream has been reached
unexpectedly during input.
- EOFException() - Constructor for exception java.io.EOFException
-
Constructs an EOFException with null
as its error detail message.
- EOFException(String) - Constructor for exception java.io.EOFException
-
Constructs an EOFException with the specified detail
message.
- equals(Object) - Method in class java.io.File
-
Tests this abstract pathname for equality with the given object.
- equals(Object) - Method in interface java.lang.annotation.Annotation
-
Returns true if the specified object represents an annotation
that is logically equivalent to this one.
- equals(Object) - Method in class java.lang.Boolean
-
Returns true if and only if the argument is not
null and is a Boolean object that
represents the same boolean value as this object.
- equals(Object) - Method in class java.lang.Byte
-
Compares this object to the specified object.
- equals(Object) - Method in class java.lang.Character
-
Compares this object against the specified object.
- equals(Object) - Method in class java.lang.Character.Subset
-
Compares two Subset objects for equality.
- equals(Object) - Method in class java.lang.Double
-
Compares this object against the specified object.
- equals(Object) - Method in class java.lang.Enum
-
Returns true if the specified object is equal to this
enum constant.
- equals(Object) - Method in class java.lang.Float
-
Compares this object against the specified object.
- equals(Object) - Method in class java.lang.Integer
-
Compares this object to the specified object.
- equals(Object) - Method in class java.lang.Long
-
Compares this object to the specified object.
- equals(Object) - Method in class java.lang.Object
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in class java.lang.reflect.Constructor
-
Compares this Constructor against the specified object.
- equals(Object) - Method in class java.lang.reflect.Field
-
Compares this Field against the specified object.
- equals(Object) - Method in class java.lang.reflect.Method
-
Compares this Method against the specified object.
- equals(Object) - Method in class java.lang.Short
-
Compares this object to the specified object.
- equals(Object) - Method in class java.lang.StackTraceElement
-
Returns true if the specified object is another
StackTraceElement instance representing the same execution
point as this instance.
- equals(Object) - Method in class java.lang.String
-
Compares this string to the specified object.
- equals(Object) - Method in class java.math.BigDecimal
-
Compares this BigDecimal with the specified
Object for equality.
- equals(Object) - Method in class java.math.BigInteger
-
Compares this BigInteger with the specified Object for equality.
- equals(Object) - Method in class java.math.MathContext
-
Compares this MathContext with the specified
Object for equality.
- equals(Object) - Method in class java.net.URI
-
Tests this URI for equality with another object.
- equals(Object) - Method in class java.net.URL
-
Compares this URL for equality with another object.
- equals(URL, URL) - Method in class java.net.URLStreamHandler
-
Provides the default equals calculation.
- equals(Object) - Method in class java.util.AbstractList
-
Compares the specified object with this list for equality.
- equals(Object) - Method in class java.util.AbstractMap
-
Compares the specified object with this map for equality.
- equals(Object) - Method in class java.util.AbstractMap.SimpleEntry
-
Compares the specified object with this entry for equality.
- equals(Object) - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Compares the specified object with this entry for equality.
- equals(Object) - Method in class java.util.AbstractSet
-
Compares the specified object with this set for equality.
- equals(long[], long[]) - Static method in class java.util.Arrays
-
Returns true if the two specified arrays of longs are
equal to one another.
- equals(int[], int[]) - Static method in class java.util.Arrays
-
Returns true if the two specified arrays of ints are
equal to one another.
- equals(short[], short[]) - Static method in class java.util.Arrays
-
Returns true if the two specified arrays of shorts are
equal to one another.
- equals(char[], char[]) - Static method in class java.util.Arrays
-
Returns true if the two specified arrays of chars are
equal to one another.
- equals(byte[], byte[]) - Static method in class java.util.Arrays
-
Returns true if the two specified arrays of bytes are
equal to one another.
- equals(boolean[], boolean[]) - Static method in class java.util.Arrays
-
Returns true if the two specified arrays of booleans are
equal to one another.
- equals(double[], double[]) - Static method in class java.util.Arrays
-
Returns true if the two specified arrays of doubles are
equal to one another.
- equals(float[], float[]) - Static method in class java.util.Arrays
-
Returns true if the two specified arrays of floats are
equal to one another.
- equals(Object[], Object[]) - Static method in class java.util.Arrays
-
Returns true if the two specified arrays of Objects are
equal to one another.
- equals(Object) - Method in interface java.util.Collection
-
Compares the specified object with this collection for equality.
- equals(Object) - Method in interface java.util.Comparator
-
Indicates whether some other object is "equal to" this
comparator.
- equals(Object) - Method in class java.util.Hashtable
-
Compares the specified Object with this Map for equality,
as per the definition in the Map interface.
- equals(Object) - Method in class java.util.IdentityHashMap
-
Compares the specified object with this map for equality.
- equals(Object) - Method in interface java.util.List
-
Compares the specified object with this list for equality.
- equals(Object) - Method in class java.util.logging.Level
-
Compare two objects for value equality.
- equals(Object) - Method in interface java.util.Map.Entry
-
Compares the specified object with this entry for equality.
- equals(Object) - Method in interface java.util.Map
-
Compares the specified object with this map for equality.
- equals(Object, Object) - Static method in class java.util.Objects
-
Returns true if the arguments are equal to each other
and false otherwise.
- equals(Object) - Method in interface java.util.Set
-
Compares the specified object with this set for equality.
- equals(Object) - Method in class java.util.Vector
-
Compares the specified Object with this Vector for equality.
- equalsIgnoreCase(String) - Method in class java.lang.String
-
Compares this String to another String, ignoring case
considerations.
- Error - Error in java.lang
-
An Error is a subclass of Throwable
that indicates serious problems that a reasonable application
should not try to catch.
- Error() - Constructor for error java.lang.Error
-
Constructs a new error with null as its detail message.
- Error(String) - Constructor for error java.lang.Error
-
Constructs a new error with the specified detail message.
- Error(String, Throwable) - Constructor for error java.lang.Error
-
Constructs a new error with the specified detail message and
cause.
- Error(Throwable) - Constructor for error java.lang.Error
-
Constructs a new error with the specified cause and a detail
message of {@code (cause==null ?
- Error(String, Throwable, boolean, boolean) - Constructor for error java.lang.Error
-
Constructs a new error with the specified detail message,
cause, suppression enabled or disabled, and writable stack
trace enabled or disabled.
- EventListener - Interface in java.util
-
A tagging interface that all event listener interfaces must extend.
- EventListenerProxy<T extends EventListener> - Class in java.util
-
An abstract wrapper class for an EventListener class
which associates a set of additional parameters with the listener.
- EventListenerProxy(T) - Constructor for class java.util.EventListenerProxy
-
Creates a proxy for the specified listener.
- EventObject - Class in java.util
-
The root class from which all event state objects shall be derived.
- EventObject(Object) - Constructor for class java.util.EventObject
-
Constructs a prototypical Event.
- Exception - Exception in java.lang
-
The class Exception and its subclasses are a form of
Throwable that indicates conditions that a reasonable
application might want to catch.
- Exception() - Constructor for exception java.lang.Exception
-
Constructs a new exception with null as its detail message.
- Exception(String) - Constructor for exception java.lang.Exception
-
Constructs a new exception with the specified detail message.
- Exception(String, Throwable) - Constructor for exception java.lang.Exception
-
Constructs a new exception with the specified detail message and
cause.
- Exception(Throwable) - Constructor for exception java.lang.Exception
-
Constructs a new exception with the specified cause and a detail
message of (cause==null ?
- Exception(String, Throwable, boolean, boolean) - Constructor for exception java.lang.Exception
-
Constructs a new exception with the specified detail message,
cause, suppression enabled or disabled, and writable stack
trace enabled or disabled.
- execute(Runnable) - Method in interface java.util.concurrent.Executor
-
Executes the given command at some time in the future.
- Executor - Interface in java.util.concurrent
-
An object that executes submitted
Runnable tasks.
- exists() - Method in class java.io.File
-
Tests whether the file or directory denoted by this abstract pathname
exists.
- exit(int) - Static method in class java.lang.System
-
- exiting(String, String) - Method in class java.util.logging.Logger
-
Log a method return.
- exiting(String, String, Object) - Method in class java.util.logging.Logger
-
Log a method return, with result object.
- exp(double) - Static method in class java.lang.Math
-
Returns Euler's number e raised to the power of a
double value.
- Externalizable - Interface in java.io
-
Only the identity of the class of an Externalizable instance is
written in the serialization stream and it is the responsibility
of the class to save and restore the contents of its instances.
- ExtraJavaScript - Annotation Type in org.apidesign.bck2brwsr.core
-
A way to include pre-made JavaScript scripts and libraries.
- FALSE - Static variable in class java.lang.Boolean
-
The Boolean object corresponding to the primitive
value false.
- Field - Class in java.lang.reflect
-
A Field provides information about, and dynamic access to, a
single field of a class or an interface.
- fieldModifiers() - Static method in class java.lang.reflect.Modifier
-
Return an int value OR-ing together the source language
modifiers that can be applied to a field.
- File - Class in java.io
-
An abstract representation of file and directory pathnames.
- File(String) - Constructor for class java.io.File
-
Creates a new File instance by converting the given
pathname string into an abstract pathname.
- File(String, String) - Constructor for class java.io.File
-
Creates a new File instance from a parent pathname string
and a child pathname string.
- File(File, String) - Constructor for class java.io.File
-
Creates a new File instance from a parent abstract
pathname and a child pathname string.
- File(URI) - Constructor for class java.io.File
-
Creates a new File instance by converting the given
file: URI into an abstract pathname.
- FileFilter - Interface in java.io
-
A filter for abstract pathnames.
- FilenameFilter - Interface in java.io
-
Instances of classes that implement this interface are used to
filter filenames.
- FileNotFoundException - Exception in java.io
-
Signals that an attempt to open the file denoted by a specified pathname
has failed.
- FileNotFoundException() - Constructor for exception java.io.FileNotFoundException
-
Constructs a FileNotFoundException with
null as its error detail message.
- FileNotFoundException(String) - Constructor for exception java.io.FileNotFoundException
-
Constructs a FileNotFoundException with the
specified detail message.
- fill(long[], long) - Static method in class java.util.Arrays
-
Assigns the specified long value to each element of the specified array
of longs.
- fill(long[], int, int, long) - Static method in class java.util.Arrays
-
Assigns the specified long value to each element of the specified
range of the specified array of longs.
- fill(int[], int) - Static method in class java.util.Arrays
-
Assigns the specified int value to each element of the specified array
of ints.
- fill(int[], int, int, int) - Static method in class java.util.Arrays
-
Assigns the specified int value to each element of the specified
range of the specified array of ints.
- fill(short[], short) - Static method in class java.util.Arrays
-
Assigns the specified short value to each element of the specified array
of shorts.
- fill(short[], int, int, short) - Static method in class java.util.Arrays
-
Assigns the specified short value to each element of the specified
range of the specified array of shorts.
- fill(char[], char) - Static method in class java.util.Arrays
-
Assigns the specified char value to each element of the specified array
of chars.
- fill(char[], int, int, char) - Static method in class java.util.Arrays
-
Assigns the specified char value to each element of the specified
range of the specified array of chars.
- fill(byte[], byte) - Static method in class java.util.Arrays
-
Assigns the specified byte value to each element of the specified array
of bytes.
- fill(byte[], int, int, byte) - Static method in class java.util.Arrays
-
Assigns the specified byte value to each element of the specified
range of the specified array of bytes.
- fill(boolean[], boolean) - Static method in class java.util.Arrays
-
Assigns the specified boolean value to each element of the specified
array of booleans.
- fill(boolean[], int, int, boolean) - Static method in class java.util.Arrays
-
Assigns the specified boolean value to each element of the specified
range of the specified array of booleans.
- fill(double[], double) - Static method in class java.util.Arrays
-
Assigns the specified double value to each element of the specified
array of doubles.
- fill(double[], int, int, double) - Static method in class java.util.Arrays
-
Assigns the specified double value to each element of the specified
range of the specified array of doubles.
- fill(float[], float) - Static method in class java.util.Arrays
-
Assigns the specified float value to each element of the specified array
of floats.
- fill(float[], int, int, float) - Static method in class java.util.Arrays
-
Assigns the specified float value to each element of the specified
range of the specified array of floats.
- fill(Object[], Object) - Static method in class java.util.Arrays
-
Assigns the specified Object reference to each element of the specified
array of Objects.
- fill(Object[], int, int, Object) - Static method in class java.util.Arrays
-
Assigns the specified Object reference to each element of the specified
range of the specified array of Objects.
- fill(List<? super T>, T) - Static method in class java.util.Collections
-
Replaces all of the elements of the specified list with the specified
element.
- fill() - Method in class java.util.zip.InflaterInputStream
-
Fills input buffer with more data to decompress.
- fillInStackTrace() - Method in class java.lang.Throwable
-
Fills in the execution stack trace.
- FilterInputStream - Class in java.io
-
A FilterInputStream contains
some other input stream, which it uses as
its basic source of data, possibly transforming
the data along the way or providing additional
functionality.
- FilterInputStream(InputStream) - Constructor for class java.io.FilterInputStream
-
Creates a FilterInputStream
by assigning the argument in
to the field this.in so as
to remember it for later use.
- FilterOutputStream - Class in java.io
-
This class is the superclass of all classes that filter output
streams.
- FilterOutputStream(OutputStream) - Constructor for class java.io.FilterOutputStream
-
Creates an output stream filter built on top of the specified
underlying output stream.
- FINAL - Static variable in class java.lang.reflect.Modifier
-
The int value representing the final
modifier.
- FINAL_QUOTE_PUNCTUATION - Static variable in class java.lang.Character
-
General category "Pf" in the Unicode specification.
- finalize() - Method in class java.lang.Enum
-
enum classes cannot have finalize methods.
- finalize() - Method in class java.lang.Object
-
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
- finalize() - Method in class java.util.zip.Inflater
-
Closes the decompressor when garbage is collected.
- findClass(String) - Method in class java.lang.ClassLoader
-
- findLoadedClass(String) - Method in class java.lang.ClassLoader
-
Returns the class with the given
binary name if this
loader has been recorded by the Java virtual machine as an initiating
loader of a class with that
binary name.
- findResource(String) - Method in class java.lang.ClassLoader
-
Finds the resource with the given name.
- findResources(String) - Method in class java.lang.ClassLoader
-
Returns an enumeration of
URL objects
representing all the resources with the given name.
- FINE - Static variable in class java.util.logging.Level
-
FINE is a message level providing tracing information.
- fine(String) - Method in class java.util.logging.Logger
-
Log a FINE message.
- FINER - Static variable in class java.util.logging.Level
-
FINER indicates a fairly detailed tracing message.
- finer(String) - Method in class java.util.logging.Logger
-
Log a FINER message.
- FINEST - Static variable in class java.util.logging.Level
-
FINEST indicates a highly detailed tracing message.
- finest(String) - Method in class java.util.logging.Logger
-
Log a FINEST message.
- finished() - Method in class java.util.zip.Inflater
-
Returns true if the end of the compressed data stream has been
reached.
- fireIndexedPropertyChange(String, int, Object, Object) - Method in class java.beans.PropertyChangeSupport
-
Reports a bound indexed property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
- fireIndexedPropertyChange(String, int, int, int) - Method in class java.beans.PropertyChangeSupport
-
Reports an integer bound indexed property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
- fireIndexedPropertyChange(String, int, boolean, boolean) - Method in class java.beans.PropertyChangeSupport
-
Reports a boolean bound indexed property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
- firePropertyChange(String, Object, Object) - Method in class java.beans.PropertyChangeSupport
-
Reports a bound property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
- firePropertyChange(String, int, int) - Method in class java.beans.PropertyChangeSupport
-
Reports an integer bound property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
- firePropertyChange(String, boolean, boolean) - Method in class java.beans.PropertyChangeSupport
-
Reports a boolean bound property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
- firePropertyChange(PropertyChangeEvent) - Method in class java.beans.PropertyChangeSupport
-
Fires a property change event to listeners
that have been registered to track updates of
all properties or a property with the specified name.
- fireVetoableChange(String, Object, Object) - Method in class java.beans.VetoableChangeSupport
-
Reports a constrained property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
- fireVetoableChange(String, int, int) - Method in class java.beans.VetoableChangeSupport
-
Reports an integer constrained property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
- fireVetoableChange(String, boolean, boolean) - Method in class java.beans.VetoableChangeSupport
-
Reports a boolean constrained property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
- fireVetoableChange(PropertyChangeEvent) - Method in class java.beans.VetoableChangeSupport
-
Fires a property change event to listeners
that have been registered to track updates of
all properties or a property with the specified name.
- first() - Method in interface java.util.SortedSet
-
Returns the first (lowest) element currently in this set.
- first() - Method in class java.util.TreeSet
-
- firstElement() - Method in class java.util.Vector
-
Returns the first component (the item at index 0) of
this vector.
- firstEntry() - Method in interface java.util.NavigableMap
-
Returns a key-value mapping associated with the least
key in this map, or null if the map is empty.
- firstEntry() - Method in class java.util.TreeMap
-
- firstKey() - Method in interface java.util.SortedMap
-
Returns the first (lowest) key currently in this map.
- firstKey() - Method in class java.util.TreeMap
-
- flipBit(int) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is equivalent to this BigInteger
with the designated bit flipped.
- Float - Class in java.lang
-
The Float class wraps a value of primitive type
float in an object.
- Float(float) - Constructor for class java.lang.Float
-
Constructs a newly allocated Float object that
represents the primitive float argument.
- Float(double) - Constructor for class java.lang.Float
-
Constructs a newly allocated Float object that
represents the argument converted to type float.
- Float(String) - Constructor for class java.lang.Float
-
Constructs a newly allocated Float object that
represents the floating-point value of type float
represented by the string.
- floatToIntBits(float) - Static method in class java.lang.Float
-
Returns a representation of the specified floating-point value
according to the IEEE 754 floating-point "single format" bit
layout.
- floatToRawIntBits(float) - Static method in class java.lang.Float
-
Returns a representation of the specified floating-point value
according to the IEEE 754 floating-point "single format" bit
layout, preserving Not-a-Number (NaN) values.
- floatValue() - Method in class java.lang.Byte
-
Returns the value of this Byte as a
float.
- floatValue() - Method in class java.lang.Double
-
Returns the float value of this
Double object.
- floatValue() - Method in class java.lang.Float
-
Returns the float value of this Float object.
- floatValue() - Method in class java.lang.Integer
-
Returns the value of this Integer as a
float.
- floatValue() - Method in class java.lang.Long
-
Returns the value of this Long as a
float.
- floatValue() - Method in class java.lang.Number
-
Returns the value of the specified number as a float.
- floatValue() - Method in class java.lang.Short
-
Returns the value of this Short as a
float.
- floatValue() - Method in class java.math.BigDecimal
-
Converts this BigDecimal to a float.
- floatValue() - Method in class java.math.BigInteger
-
Converts this BigInteger to a float.
- floor(double) - Static method in class java.lang.Math
-
Returns the largest (closest to positive infinity)
double value that is less than or equal to the
argument and is equal to a mathematical integer.
- floor(E) - Method in interface java.util.NavigableSet
-
Returns the greatest element in this set less than or equal to
the given element, or null if there is no such element.
- floor(E) - Method in class java.util.TreeSet
-
- floorEntry(K) - Method in interface java.util.NavigableMap
-
Returns a key-value mapping associated with the greatest key
less than or equal to the given key, or null if there
is no such key.
- floorEntry(K) - Method in class java.util.TreeMap
-
- floorKey(K) - Method in interface java.util.NavigableMap
-
Returns the greatest key less than or equal to the given key,
or null if there is no such key.
- floorKey(K) - Method in class java.util.TreeMap
-
- flush() - Method in class java.io.BufferedOutputStream
-
Flushes this buffered output stream.
- flush() - Method in class java.io.BufferedWriter
-
Flushes the stream.
- flush() - Method in class java.io.DataOutputStream
-
Flushes this data output stream.
- flush() - Method in class java.io.FilterOutputStream
-
Flushes this output stream and forces any buffered output bytes
to be written out to the stream.
- flush() - Method in interface java.io.Flushable
-
Flushes this stream by writing any buffered output to the underlying
stream.
- flush() - Method in interface java.io.ObjectOutput
-
Flushes the stream.
- flush() - Method in class java.io.ObjectOutputStream
-
Flushes the stream.
- flush() - Method in class java.io.OutputStream
-
Flushes this output stream and forces any buffered output bytes
to be written out.
- flush() - Method in class java.io.OutputStreamWriter
-
Flushes the stream.
- flush() - Method in class java.io.PrintStream
-
Flushes the stream.
- flush() - Method in class java.io.PrintWriter
-
Flushes the stream.
- flush() - Method in class java.io.Writer
-
Flushes the stream.
- Flushable - Interface in java.io
-
A Flushable is a destination of data that can be flushed.
- forClass() - Method in class java.io.ObjectStreamClass
-
Return the class in the local VM that this version is mapped to.
- forDigit(int, int) - Static method in class java.lang.Character
-
Determines the character representation for a specific digit in
the specified radix.
- format(String, Object...) - Method in class java.io.PrintWriter
-
Writes a formatted string to this writer using the specified format
string and arguments.
- FORMAT - Static variable in class java.lang.Character
-
General category "Cf" in the Unicode specification.
- format(String, Object...) - Static method in class java.lang.String
-
Returns a formatted string using the specified format string and
arguments.
- forName(String) - Static method in class java.lang.Class
-
Returns the Class object associated with the class or
interface with the given string name.
- forName(String, boolean, ClassLoader) - Static method in class java.lang.Class
-
Returns the Class object associated with the class or
interface with the given string name, using the given class loader.
- frequency(Collection<?>, Object) - Static method in class java.util.Collections
-
Returns the number of elements in the specified collection equal to the
specified object.
- gcd(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is the greatest common divisor of
abs(this) and abs(val).
- GenericDeclaration - Interface in java.lang.reflect
-
A common interface for all entities that declare type variables.
- get(String, boolean) - Method in class java.io.ObjectInputStream.GetField
-
Get the value of the named boolean field from the persistent field.
- get(String, byte) - Method in class java.io.ObjectInputStream.GetField
-
Get the value of the named byte field from the persistent field.
- get(String, char) - Method in class java.io.ObjectInputStream.GetField
-
Get the value of the named char field from the persistent field.
- get(String, short) - Method in class java.io.ObjectInputStream.GetField
-
Get the value of the named short field from the persistent field.
- get(String, int) - Method in class java.io.ObjectInputStream.GetField
-
Get the value of the named int field from the persistent field.
- get(String, long) - Method in class java.io.ObjectInputStream.GetField
-
Get the value of the named long field from the persistent field.
- get(String, float) - Method in class java.io.ObjectInputStream.GetField
-
Get the value of the named float field from the persistent field.
- get(String, double) - Method in class java.io.ObjectInputStream.GetField
-
Get the value of the named double field from the persistent field.
- get(String, Object) - Method in class java.io.ObjectInputStream.GetField
-
Get the value of the named Object field from the persistent field.
- get() - Method in class java.lang.ref.PhantomReference
-
Returns this reference object's referent.
- get() - Method in class java.lang.ref.Reference
-
Returns this reference object's referent.
- get() - Method in class java.lang.ref.SoftReference
-
Returns this reference object's referent.
- get(Object, int) - Static method in class java.lang.reflect.Array
-
Returns the value of the indexed component in the specified
array object.
- get(Object) - Method in class java.lang.reflect.Field
-
Returns the value of the field represented by this Field, on
the specified object.
- get() - Method in class java.lang.ThreadLocal
-
Returns the value in the current thread's copy of this
thread-local variable.
- get(int) - Method in class java.util.AbstractList
-
Returns the element at the specified position in this list.
- get(Object) - Method in class java.util.AbstractMap
-
Returns the value to which the specified key is mapped,
or null if this map contains no mapping for the key.
- get(int) - Method in class java.util.AbstractSequentialList
-
Returns the element at the specified position in this list.
- get(int) - Method in class java.util.ArrayList
-
Returns the element at the specified position in this list.
- get(Object) - Method in class java.util.Dictionary
-
Returns the value to which the key is mapped in this dictionary.
- get(Object) - Method in class java.util.HashMap
-
Returns the value to which the specified key is mapped,
or null if this map contains no mapping for the key.
- get(Object) - Method in class java.util.Hashtable
-
Returns the value to which the specified key is mapped,
or null if this map contains no mapping for the key.
- get(Object) - Method in class java.util.IdentityHashMap
-
Returns the value to which the specified key is mapped,
or null if this map contains no mapping for the key.
- get(Object) - Method in class java.util.LinkedHashMap
-
Returns the value to which the specified key is mapped,
or null if this map contains no mapping for the key.
- get(int) - Method in class java.util.LinkedList
-
Returns the element at the specified position in this list.
- get(int) - Method in interface java.util.List
-
Returns the element at the specified position in this list.
- get(Object) - Method in interface java.util.Map
-
Returns the value to which the specified key is mapped,
or null if this map contains no mapping for the key.
- get(Object) - Method in class java.util.TreeMap
-
Returns the value to which the specified key is mapped,
or null if this map contains no mapping for the key.
- get(int) - Method in class java.util.Vector
-
Returns the element at the specified position in this Vector.
- get(Object) - Method in class java.util.WeakHashMap
-
Returns the value to which the specified key is mapped,
or null if this map contains no mapping for the key.
- getAbsoluteFile() - Method in class java.io.File
-
Returns the absolute form of this abstract pathname.
- getAbsolutePath() - Method in class java.io.File
-
Returns the absolute pathname string of this abstract pathname.
- getAdler() - Method in class java.util.zip.Inflater
-
Returns the ADLER-32 value of the uncompressed data.
- getAllStackTraces() - Static method in class java.lang.Thread
-
Returns a map of stack traces for all live threads.
- getAnnotation(Class<A>) - Method in class java.lang.Class
-
- getAnnotation(Class<T>) - Method in class java.lang.reflect.AccessibleObject
-
- getAnnotation(Class<T>) - Method in interface java.lang.reflect.AnnotatedElement
-
Returns this element's annotation for the specified type if
such an annotation is present, else null.
- getAnnotation(Class<T>) - Method in class java.lang.reflect.Constructor
-
- getAnnotation(Class<T>) - Method in class java.lang.reflect.Field
-
- getAnnotation(Class<T>) - Method in class java.lang.reflect.Method
-
- getAnnotations() - Method in class java.lang.Class
-
- getAnnotations() - Method in class java.lang.reflect.AccessibleObject
-
- getAnnotations() - Method in interface java.lang.reflect.AnnotatedElement
-
Returns all annotations present on this element.
- getAnonymousLogger() - Static method in class java.util.logging.Logger
-
Create an anonymous Logger.
- getAnonymousLogger(String) - Static method in class java.util.logging.Logger
-
Create an anonymous Logger.
- getAuthority() - Method in class java.net.URI
-
Returns the decoded authority component of this URI.
- getAuthority() - Method in class java.net.URL
-
Gets the authority part of this URL.
- getBoolean(String) - Static method in class java.lang.Boolean
-
Returns true if and only if the system property
named by the argument exists and is equal to the string
"true".
- getBoolean(Object, int) - Static method in class java.lang.reflect.Array
-
Returns the value of the indexed component in the specified
array object, as a boolean.
- getBoolean(Object) - Method in class java.lang.reflect.Field
-
Gets the value of a static or instance boolean field.
- getBounds() - Method in interface java.lang.reflect.TypeVariable
-
Returns an array of Type objects representing the
upper bound(s) of this type variable.
- getByte(Object, int) - Static method in class java.lang.reflect.Array
-
Returns the value of the indexed component in the specified
array object, as a byte.
- getByte(Object) - Method in class java.lang.reflect.Field
-
Gets the value of a static or instance byte field.
- getBytes(int, int, byte[], int) - Method in class java.lang.String
-
Deprecated.
This method does not properly convert characters into
bytes. As of JDK 1.1, the preferred way to do this is via the
String.getBytes() method, which uses the platform's default charset.
- getBytes(String) - Method in class java.lang.String
-
Encodes this String into a sequence of bytes using the named
charset, storing the result into a new byte array.
- getBytes() - Method in class java.lang.String
-
Encodes this String into a sequence of bytes using the
platform's default charset, storing the result into a new byte array.
- getBytesRead() - Method in class java.util.zip.Inflater
-
Returns the total number of compressed bytes input so far.
- getBytesWritten() - Method in class java.util.zip.Inflater
-
Returns the total number of uncompressed bytes output so far.
- getCanonicalFile() - Method in class java.io.File
-
Returns the canonical form of this abstract pathname.
- getCanonicalName() - Method in class java.lang.Class
-
Returns the canonical name of the underlying class as
defined by the Java Language Specification.
- getCanonicalPath() - Method in class java.io.File
-
Returns the canonical pathname string of this abstract pathname.
- getCause() - Method in exception java.io.WriteAbortedException
-
Returns the exception that terminated the operation (the cause).
- getCause() - Method in exception java.lang.ClassNotFoundException
-
Returns the cause of this exception (the exception that was raised
if an error occurred while attempting to load the class; otherwise
null).
- getCause() - Method in exception java.lang.reflect.InvocationTargetException
-
Returns the cause of this exception (the thrown target exception,
which may be null).
- getCause() - Method in exception java.lang.reflect.UndeclaredThrowableException
-
Returns the cause of this exception (the Throwable
instance wrapped in this UndeclaredThrowableException,
which may be null).
- getCause() - Method in class java.lang.Throwable
-
Returns the cause of this throwable or null if the
cause is nonexistent or unknown.
- getChar(Object, int) - Static method in class java.lang.reflect.Array
-
Returns the value of the indexed component in the specified
array object, as a char.
- getChar(Object) - Method in class java.lang.reflect.Field
-
Gets the value of a static or instance field of type
char or of another primitive type convertible to
type char via a widening conversion.
- getChars(int, int, char[], int) - Method in class java.lang.String
-
Copies characters from this string into the destination character
array.
- getChars(int, int, char[], int) - Method in class java.lang.StringBuffer
-
- getClass() - Method in class java.lang.Object
-
Returns the runtime class of this Object.
- getClassLoader() - Method in class java.lang.Class
-
Returns the class loader for the class.
- getClassLoadingLock(String) - Method in class java.lang.ClassLoader
-
Returns the lock object for class loading operations.
- getClassName() - Method in class java.lang.StackTraceElement
-
Returns the fully qualified name of the class containing the
execution point represented by this stack trace element.
- getComment() - Method in class java.util.zip.ZipEntry
-
Returns the comment string for the entry, or null if none.
- getComponentType() - Method in class java.lang.Class
-
Returns the Class representing the component type of an
array.
- getCompressedSize() - Method in class java.util.zip.ZipEntry
-
Returns the size of the compressed entry data, or -1 if not known.
- getContent() - Method in class java.net.URL
-
Gets the contents of this URL.
- getContent(Class[]) - Method in class java.net.URL
-
Gets the contents of this URL.
- getContextClassLoader() - Method in class java.lang.Thread
-
Returns the context ClassLoader for this Thread.
- getCrc() - Method in class java.util.zip.ZipEntry
-
Returns the CRC-32 checksum of the uncompressed entry data, or -1 if
not known.
- getDeclaredAnnotations() - Method in class java.lang.Class
-
- getDeclaredAnnotations() - Method in class java.lang.reflect.AccessibleObject
-
- getDeclaredAnnotations() - Method in interface java.lang.reflect.AnnotatedElement
-
Returns all annotations that are directly present on this
element.
- getDeclaredAnnotations() - Method in class java.lang.reflect.Constructor
-
- getDeclaredAnnotations() - Method in class java.lang.reflect.Field
-
- getDeclaredAnnotations() - Method in class java.lang.reflect.Method
-
- getDeclaredMethods() - Method in class java.lang.Class
-
Returns an array of Method objects reflecting all the
methods declared by the class or interface represented by this
Class object.
- getDeclaringClass() - Method in class java.lang.Enum
-
Returns the Class object corresponding to this enum constant's
enum type.
- getDeclaringClass() - Method in class java.lang.reflect.Constructor
-
Returns the Class object representing the class that declares
the constructor represented by this Constructor object.
- getDeclaringClass() - Method in class java.lang.reflect.Field
-
Returns the Class object representing the class or interface
that declares the field represented by this Field object.
- getDeclaringClass() - Method in interface java.lang.reflect.Member
-
Returns the Class object representing the class or interface
that declares the member or constructor represented by this Member.
- getDeclaringClass() - Method in class java.lang.reflect.Method
-
Returns the Class object representing the class or interface
that declares the method represented by this Method object.
- getDefaultPort() - Method in class java.net.URL
-
Gets the default port number of the protocol associated
with this URL.
- getDefaultPort() - Method in class java.net.URLStreamHandler
-
Returns the default port for a URL parsed by this handler.
- getDefaultUncaughtExceptionHandler() - Static method in class java.lang.Thread
-
Returns the default handler invoked when a thread abruptly terminates
due to an uncaught exception.
- getDefaultValue() - Method in class java.lang.reflect.Method
-
Returns the default value for the annotation member represented by
this Method instance.
- getDouble(Object, int) - Static method in class java.lang.reflect.Array
-
Returns the value of the indexed component in the specified
array object, as a double.
- getDouble(Object) - Method in class java.lang.reflect.Field
-
Gets the value of a static or instance field of type
double or of another primitive type convertible to
type double via a widening conversion.
- getEncoding() - Method in class java.io.InputStreamReader
-
Returns the name of the character encoding being used by this stream.
- getEncoding() - Method in class java.io.OutputStreamWriter
-
Returns the name of the character encoding being used by this stream.
- getException() - Method in exception java.lang.ClassNotFoundException
-
Returns the exception that was raised if an error occurred while
attempting to load the class.
- getExceptionTypes() - Method in class java.lang.reflect.Constructor
-
Returns an array of Class objects that represent the types
of exceptions declared to be thrown by the underlying constructor
represented by this Constructor object.
- getExceptionTypes() - Method in class java.lang.reflect.Method
-
Returns an array of Class objects that represent
the types of the exceptions declared to be thrown
by the underlying method
represented by this Method object.
- getExtra() - Method in class java.util.zip.ZipEntry
-
Returns the extra field data for the entry, or null if none.
- getField(String) - Method in class java.io.ObjectStreamClass
-
Get the field of this class by name.
- getField(String) - Method in class java.lang.Class
-
Returns a Field object that reflects the specified public
member field of the class or interface represented by this
Class object.
- getFields() - Method in class java.io.ObjectStreamClass
-
Return an array of the fields of this serializable class.
- getFields() - Method in class java.lang.Class
-
Returns an array containing Field objects reflecting all
the accessible public fields of the class or interface represented by
this Class object.
- getFile() - Method in class java.net.URL
-
Gets the file name of this URL.
- getFileName() - Method in class java.lang.StackTraceElement
-
Returns the name of the source file containing the execution point
represented by this stack trace element.
- getFirst() - Method in class java.util.ArrayDeque
-
- getFirst() - Method in interface java.util.Deque
-
Retrieves, but does not remove, the first element of this deque.
- getFirst() - Method in class java.util.LinkedList
-
Returns the first element in this list.
- getFloat(Object, int) - Static method in class java.lang.reflect.Array
-
Returns the value of the indexed component in the specified
array object, as a float.
- getFloat(Object) - Method in class java.lang.reflect.Field
-
Gets the value of a static or instance field of type
float or of another primitive type convertible to
type float via a widening conversion.
- getFragment() - Method in class java.net.URI
-
Returns the decoded fragment component of this URI.
- getFreeSpace() - Method in class java.io.File
-
Returns the number of unallocated bytes in the partition
named by this abstract path name.
- getGenericDeclaration() - Method in interface java.lang.reflect.TypeVariable
-
Returns the GenericDeclaration object representing the
generic declaration declared this type variable.
- getGenericExceptionTypes() - Method in class java.lang.reflect.Constructor
-
Returns an array of Type objects that represent the
exceptions declared to be thrown by this Constructor object.
- getGenericExceptionTypes() - Method in class java.lang.reflect.Method
-
Returns an array of Type objects that represent the
exceptions declared to be thrown by this Method object.
- getGenericParameterTypes() - Method in class java.lang.reflect.Constructor
-
Returns an array of Type objects that represent the formal
parameter types, in declaration order, of the method represented by
this Constructor object.
- getGenericParameterTypes() - Method in class java.lang.reflect.Method
-
Returns an array of Type objects that represent the formal
parameter types, in declaration order, of the method represented by
this Method object.
- getGenericReturnType() - Method in class java.lang.reflect.Method
-
Returns a Type object that represents the formal return
type of the method represented by this Method object.
- getGenericType() - Method in class java.lang.reflect.Field
-
Returns a Type object that represents the declared type for
the field represented by this Field object.
- getGlobal() - Static method in class java.util.logging.Logger
-
Return global logger object with the name Logger.GLOBAL_LOGGER_NAME.
- getHost() - Method in class java.net.URI
-
Returns the host component of this URI.
- getHost() - Method in class java.net.URL
-
Gets the host name of this URL, if applicable.
- getId() - Method in class java.lang.Thread
-
Returns the identifier of this Thread.
- getIndex() - Method in class java.beans.IndexedPropertyChangeEvent
-
Gets the index of the property that was changed.
- getIndex() - Method in exception java.net.URISyntaxException
-
Returns an index into the input string of the position at which the
parse error occurred, or -1 if this position is not known.
- getInput() - Method in exception java.net.URISyntaxException
-
Returns the input string.
- getInt(Object, int) - Static method in class java.lang.reflect.Array
-
Returns the value of the indexed component in the specified
array object, as an int.
- getInt(Object) - Method in class java.lang.reflect.Field
-
Gets the value of a static or instance field of type
int or of another primitive type convertible to
type int via a widening conversion.
- getInteger(String) - Static method in class java.lang.Integer
-
Determines the integer value of the system property with the
specified name.
- getInteger(String, int) - Static method in class java.lang.Integer
-
Determines the integer value of the system property with the
specified name.
- getInteger(String, Integer) - Static method in class java.lang.Integer
-
Returns the integer value of the system property with the
specified name.
- getInterfaces() - Method in class java.lang.Class
-
Determines the interfaces implemented by the class or interface
represented by this object.
- getInvocationHandler(Object) - Static method in class java.lang.reflect.Proxy
-
Returns the invocation handler for the specified proxy instance.
- getKey() - Method in class java.util.AbstractMap.SimpleEntry
-
Returns the key corresponding to this entry.
- getKey() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Returns the key corresponding to this entry.
- getKey() - Method in interface java.util.Map.Entry
-
Returns the key corresponding to this entry.
- getLast() - Method in class java.util.ArrayDeque
-
- getLast() - Method in interface java.util.Deque
-
Retrieves, but does not remove, the last element of this deque.
- getLast() - Method in class java.util.LinkedList
-
Returns the last element in this list.
- getLength(Object) - Static method in class java.lang.reflect.Array
-
Returns the length of the specified array object, as an int.
- getLevel() - Method in class java.util.logging.Logger
-
Get the log Level that has been specified for this Logger.
- getLevel() - Method in class java.util.logging.LogRecord
-
Get the logging message level, for example Level.SEVERE.
- getLineNumber() - Method in class java.lang.StackTraceElement
-
Returns the line number of the source line containing the execution
point represented by this stack trace element.
- getListener() - Method in class java.util.EventListenerProxy
-
Returns the listener associated with the proxy.
- getLocalizedMessage() - Method in class java.lang.Throwable
-
Creates a localized description of this throwable.
- getLocalizedName() - Method in class java.util.logging.Level
-
Return the localized string name of the Level, for
the current default locale.
- getLogger(String) - Static method in class java.util.logging.Logger
-
Find or create a logger for a named subsystem.
- getLogger(String, String) - Static method in class java.util.logging.Logger
-
Find or create a logger for a named subsystem.
- getLoggerName() - Method in class java.util.logging.LogRecord
-
Get the source Logger's name.
- getLong(String) - Static method in class java.lang.Long
-
Determines the long value of the system property
with the specified name.
- getLong(String, long) - Static method in class java.lang.Long
-
Determines the long value of the system property
with the specified name.
- getLong(String, Long) - Static method in class java.lang.Long
-
Returns the long value of the system property with
the specified name.
- getLong(Object, int) - Static method in class java.lang.reflect.Array
-
Returns the value of the indexed component in the specified
array object, as a long.
- getLong(Object) - Method in class java.lang.reflect.Field
-
Gets the value of a static or instance field of type
long or of another primitive type convertible to
type long via a widening conversion.
- getLowestSetBit() - Method in class java.math.BigInteger
-
Returns the index of the rightmost (lowest-order) one bit in this
BigInteger (the number of zero bits to the right of the rightmost
one bit).
- getMessage() - Method in exception java.io.InvalidClassException
-
Produce the message and include the classname, if present.
- getMessage() - Method in exception java.io.WriteAbortedException
-
Produce the message and include the message from the nested
exception, if there is one.
- getMessage() - Method in class java.lang.Throwable
-
Returns the detail message string of this throwable.
- getMessage() - Method in exception java.net.URISyntaxException
-
Returns a string describing the parse error.
- getMessage() - Method in class java.util.logging.LogRecord
-
Get the "raw" log message, before localization or formatting.
- getMethod(String, Class<?>...) - Method in class java.lang.Class
-
Returns a Method object that reflects the specified public
member method of the class or interface represented by this
Class object.
- getMethod() - Method in class java.util.zip.ZipEntry
-
Returns the compression method of the entry, or -1 if not specified.
- getMethodName() - Method in class java.lang.StackTraceElement
-
Returns the name of the method containing the execution point
represented by this stack trace element.
- getMethods() - Method in class java.lang.Class
-
Returns an array containing Method objects reflecting all
the public member methods of the class or interface represented
by this Class object, including those declared by the class
or interface and those inherited from superclasses and
superinterfaces.
- getMillis() - Method in class java.util.logging.LogRecord
-
Get event time in milliseconds since 1970.
- getModifiers() - Method in class java.lang.Class
-
Returns the Java language modifiers for this class or interface, encoded
in an integer.
- getModifiers() - Method in class java.lang.reflect.Constructor
-
Returns the Java language modifiers for the constructor
represented by this Constructor object, as an integer.
- getModifiers() - Method in class java.lang.reflect.Field
-
Returns the Java language modifiers for the field represented
by this Field object, as an integer.
- getModifiers() - Method in interface java.lang.reflect.Member
-
Returns the Java language modifiers for the member or
constructor represented by this Member, as an integer.
- getModifiers() - Method in class java.lang.reflect.Method
-
Returns the Java language modifiers for the method represented
by this Method object, as an integer.
- getName() - Method in class java.io.File
-
Returns the name of the file or directory denoted by this abstract
pathname.
- getName() - Method in class java.io.ObjectStreamClass
-
Returns the name of the class described by this descriptor.
- getName() - Method in class java.io.ObjectStreamField
-
Get the name of this field.
- getName() - Method in class java.lang.Class
-
Returns the name of the entity (class, interface, array class,
primitive type, or void) represented by this Class object,
as a String.
- getName() - Method in class java.lang.reflect.Constructor
-
Returns the name of this constructor, as a string.
- getName() - Method in class java.lang.reflect.Field
-
Returns the name of the field represented by this Field object.
- getName() - Method in interface java.lang.reflect.Member
-
Returns the simple name of the underlying member or constructor
represented by this Member.
- getName() - Method in class java.lang.reflect.Method
-
Returns the name of the method represented by this Method
object, as a String.
- getName() - Method in interface java.lang.reflect.TypeVariable
-
Returns the name of this type variable, as it occurs in the source code.
- getName() - Method in class java.lang.Thread
-
Returns this thread's name.
- getName() - Method in class java.util.logging.Level
-
Return the non-localized string name of the Level.
- getName() - Method in class java.util.logging.Logger
-
Get the name for this logger.
- getName() - Method in class java.util.zip.ZipEntry
-
Returns the name of the entry.
- getNewValue() - Method in class java.beans.PropertyChangeEvent
-
Gets the new value for the property, expressed as an Object.
- getNextEntry() - Method in class java.util.zip.ZipInputStream
-
Reads the next ZIP file entry and positions the stream at the
beginning of the entry data.
- getNumericValue(char) - Static method in class java.lang.Character
-
Returns the int value that the specified Unicode
character represents.
- getNumericValue(int) - Static method in class java.lang.Character
-
Returns the int value that the specified
character (Unicode code point) represents.
- getObjectStreamClass() - Method in class java.io.ObjectInputStream.GetField
-
Get the ObjectStreamClass that describes the fields in the stream.
- getOffset() - Method in class java.io.ObjectStreamField
-
Offset of field within instance data.
- getOldValue() - Method in class java.beans.PropertyChangeEvent
-
Gets the old value for the property, expressed as an Object.
- getParameterAnnotations() - Method in class java.lang.reflect.Constructor
-
Returns an array of arrays that represent the annotations on the formal
parameters, in declaration order, of the method represented by
this Constructor object.
- getParameterAnnotations() - Method in class java.lang.reflect.Method
-
Returns an array of arrays that represent the annotations on the formal
parameters, in declaration order, of the method represented by
this Method object.
- getParameters() - Method in class java.util.logging.LogRecord
-
Get the parameters to the log message.
- getParameterTypes() - Method in class java.lang.reflect.Constructor
-
Returns an array of Class objects that represent the formal
parameter types, in declaration order, of the constructor
represented by this Constructor object.
- getParameterTypes() - Method in class java.lang.reflect.Method
-
Returns an array of Class objects that represent the formal
parameter types, in declaration order, of the method
represented by this Method object.
- getParent() - Method in class java.io.File
-
Returns the pathname string of this abstract pathname's parent, or
null if this pathname does not name a parent directory.
- getParent() - Method in class java.lang.ClassLoader
-
Returns the parent class loader for delegation.
- getParent() - Method in class java.util.logging.Logger
-
Return the parent for this Logger.
- getParentFile() - Method in class java.io.File
-
Returns the abstract pathname of this abstract pathname's parent,
or null if this pathname does not name a parent
directory.
- getPath() - Method in class java.io.File
-
Converts this abstract pathname into a pathname string.
- getPath() - Method in class java.net.URI
-
Returns the decoded path component of this URI.
- getPath() - Method in class java.net.URL
-
Gets the path part of this URL.
- getPort() - Method in class java.net.URI
-
Returns the port number of this URI.
- getPort() - Method in class java.net.URL
-
Gets the port number of this URL.
- getPrecision() - Method in class java.math.MathContext
-
Returns the precision setting.
- getPriority() - Method in class java.lang.Thread
-
Returns this thread's priority.
- getPropagationId() - Method in class java.beans.PropertyChangeEvent
-
The "propagationId" field is reserved for future use.
- getProperty(String) - Static method in class java.lang.System
-
- getProperty(String, String) - Static method in class java.lang.System
-
- getPropertyChangeEvent() - Method in exception java.beans.PropertyVetoException
-
Gets the vetoed PropertyChangeEvent.
- getPropertyChangeListeners() - Method in class java.beans.PropertyChangeSupport
-
Returns an array of all the listeners that were added to the
PropertyChangeSupport object with addPropertyChangeListener().
- getPropertyChangeListeners(String) - Method in class java.beans.PropertyChangeSupport
-
Returns an array of all the listeners which have been associated
with the named property.
- getPropertyName() - Method in class java.beans.PropertyChangeEvent
-
Gets the programmatic name of the property that was changed.
- getPropertyName() - Method in class java.beans.PropertyChangeListenerProxy
-
Returns the name of the named property associated with the listener.
- getPropertyName() - Method in class java.beans.VetoableChangeListenerProxy
-
Returns the name of the named property associated with the listener.
- getProtocol() - Method in class java.net.URL
-
Gets the protocol name of this URL.
- getProxyClass(ClassLoader, Class<?>...) - Static method in class java.lang.reflect.Proxy
-
Returns the java.lang.Class object for a proxy class
given a class loader and an array of interfaces.
- getQuery() - Method in class java.net.URI
-
Returns the decoded query component of this URI.
- getQuery() - Method in class java.net.URL
-
Gets the query part of this URL.
- getRawAuthority() - Method in class java.net.URI
-
Returns the raw authority component of this URI.
- getRawFragment() - Method in class java.net.URI
-
Returns the raw fragment component of this URI.
- getRawPath() - Method in class java.net.URI
-
Returns the raw path component of this URI.
- getRawQuery() - Method in class java.net.URI
-
Returns the raw query component of this URI.
- getRawSchemeSpecificPart() - Method in class java.net.URI
-
Returns the raw scheme-specific part of this URI.
- getRawUserInfo() - Method in class java.net.URI
-
Returns the raw user-information component of this URI.
- getReason() - Method in exception java.net.URISyntaxException
-
Returns a string explaining why the input string could not be parsed.
- getRef() - Method in class java.net.URL
-
Gets the anchor (also known as the "reference") of this
URL.
- getRemaining() - Method in class java.util.zip.Inflater
-
Returns the total number of bytes remaining in the input buffer.
- getResource(String) - Method in class java.lang.Class
-
Finds a resource with a given name.
- getResource(String) - Method in class java.lang.ClassLoader
-
Finds the resource with the given name.
- getResourceAsStream(String) - Method in class java.lang.Class
-
Finds a resource with a given name.
- getResourceAsStream(String) - Method in class java.lang.ClassLoader
-
Returns an input stream for reading the specified resource.
- getResourceBundleName() - Method in class java.util.logging.Level
-
Return the level's localization resource bundle name, or
null if no localization bundle is defined.
- getResourceBundleName() - Method in class java.util.logging.Logger
-
Retrieve the localization resource bundle name for this
logger.
- getResourceBundleName() - Method in class java.util.logging.LogRecord
-
Get the localization resource bundle name
This is the name for the ResourceBundle that should be
used to localize the message string before formatting it.
- getResources(String) - Method in class java.lang.ClassLoader
-
Finds all the resources with the given name.
- getReturnType() - Method in class java.lang.reflect.Method
-
Returns a Class object that represents the formal return type
of the method represented by this Method object.
- getRoundingMode() - Method in class java.math.MathContext
-
Returns the roundingMode setting.
- getScheme() - Method in class java.net.URI
-
Returns the scheme component of this URI.
- getSchemeSpecificPart() - Method in class java.net.URI
-
Returns the decoded scheme-specific part of this URI.
- getSequenceNumber() - Method in class java.util.logging.LogRecord
-
Get the sequence number.
- getSerialVersionUID() - Method in class java.io.ObjectStreamClass
-
Return the serialVersionUID for this class.
- getShort(Object, int) - Static method in class java.lang.reflect.Array
-
Returns the value of the indexed component in the specified
array object, as a short.
- getShort(Object) - Method in class java.lang.reflect.Field
-
Gets the value of a static or instance field of type
short or of another primitive type convertible to
type short via a widening conversion.
- getSimpleName() - Method in class java.lang.Class
-
Returns the simple name of the underlying class as given in the
source code.
- getSize() - Method in class java.util.zip.ZipEntry
-
Returns the uncompressed size of the entry data, or -1 if not known.
- getSource() - Method in class java.util.EventObject
-
The object on which the Event initially occurred.
- getSourceClassName() - Method in class java.util.logging.LogRecord
-
Get the name of the class that (allegedly) issued the logging request.
- getSourceMethodName() - Method in class java.util.logging.LogRecord
-
Get the name of the method that (allegedly) issued the logging request.
- getStackTrace() - Method in class java.lang.Thread
-
Returns an array of stack trace elements representing the stack dump
of this thread.
- getStackTrace() - Method in class java.lang.Throwable
-
- getState() - Method in class java.lang.Thread
-
Returns the state of this thread.
- getSuperclass() - Method in class java.lang.Class
-
Returns the Class representing the superclass of the entity
(class, interface, primitive type or void) represented by this
Class.
- getSuppressed() - Method in class java.lang.Throwable
-
Returns an array containing all of the exceptions that were
suppressed, typically by the try-with-resources
statement, in order to deliver this exception.
- getSystemClassLoader() - Static method in class java.lang.ClassLoader
-
Returns the system class loader for delegation.
- getSystemResource(String) - Static method in class java.lang.ClassLoader
-
Find a resource of the specified name from the search path used to load
classes.
- getSystemResourceAsStream(String) - Static method in class java.lang.ClassLoader
-
Open for reading, a resource of the specified name from the search path
used to load classes.
- getSystemResources(String) - Static method in class java.lang.ClassLoader
-
Finds all resources of the specified name from the search path used to
load classes.
- getTargetException() - Method in exception java.lang.reflect.InvocationTargetException
-
Get the thrown target exception.
- getThreadID() - Method in class java.util.logging.LogRecord
-
Get an identifier for the thread where the message originated.
- getThrown() - Method in class java.util.logging.LogRecord
-
Get any throwable associated with the log record.
- getTime() - Method in class java.util.zip.ZipEntry
-
Returns the modification time of the entry, or -1 if not specified.
- getTotalIn() - Method in class java.util.zip.Inflater
-
Returns the total number of compressed bytes input so far.
- getTotalOut() - Method in class java.util.zip.Inflater
-
Returns the total number of uncompressed bytes output so far.
- getTotalSpace() - Method in class java.io.File
-
Returns the size of the partition
named by this
abstract pathname.
- getType() - Method in class java.io.ObjectStreamField
-
Get the type of the field.
- getType() - Method in class java.lang.reflect.Field
-
Returns a Class object that identifies the
declared type for the field represented by this
Field object.
- getTypeCode() - Method in class java.io.ObjectStreamField
-
Returns character encoding of field type.
- getTypeParameters() - Method in class java.lang.Class
-
Returns an array of TypeVariable objects that represent the
type variables declared by the generic declaration represented by this
GenericDeclaration object, in declaration order.
- getTypeParameters() - Method in class java.lang.reflect.Constructor
-
Returns an array of TypeVariable objects that represent the
type variables declared by the generic declaration represented by this
GenericDeclaration object, in declaration order.
- getTypeParameters() - Method in interface java.lang.reflect.GenericDeclaration
-
Returns an array of TypeVariable objects that
represent the type variables declared by the generic
declaration represented by this GenericDeclaration
object, in declaration order.
- getTypeParameters() - Method in class java.lang.reflect.Method
-
Returns an array of TypeVariable objects that represent the
type variables declared by the generic declaration represented by this
GenericDeclaration object, in declaration order.
- getTypeString() - Method in class java.io.ObjectStreamField
-
Return the JVM type signature.
- getUncaughtExceptionHandler() - Method in class java.lang.Thread
-
Returns the handler invoked when this thread abruptly terminates
due to an uncaught exception.
- getUndeclaredThrowable() - Method in exception java.lang.reflect.UndeclaredThrowableException
-
Returns the Throwable instance wrapped in this
UndeclaredThrowableException, which may be null.
- getUsableSpace() - Method in class java.io.File
-
Returns the number of bytes available to this virtual machine on the
partition
named by this abstract pathname.
- getUseParentHandlers() - Method in class java.util.logging.Logger
-
Discover whether or not this logger is sending its output
to its parent logger.
- getUserInfo() - Method in class java.net.URI
-
Returns the decoded user-information component of this URI.
- getUserInfo() - Method in class java.net.URL
-
Gets the userInfo part of this URL.
- getValue() - Method in class java.util.AbstractMap.SimpleEntry
-
Returns the value corresponding to this entry.
- getValue() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Returns the value corresponding to this entry.
- getValue() - Method in interface java.util.Map.Entry
-
Returns the value corresponding to this entry.
- getValue() - Method in class java.util.zip.Adler32
-
Returns the Adler32 data checksum computed so far.
- getValue() - Method in interface java.util.zip.Checksum
-
Returns the current checksum value.
- getValue() - Method in class java.util.zip.CRC32
-
Returns the CRC32 data checksum computed so far.
- getVetoableChangeListeners() - Method in class java.beans.VetoableChangeSupport
-
Returns an array of all the listeners that were added to the
VetoableChangeSupport object with addVetoableChangeListener().
- getVetoableChangeListeners(String) - Method in class java.beans.VetoableChangeSupport
-
Returns an array of all the listeners which have been associated
with the named property.
- global - Static variable in class java.util.logging.Logger
-
Deprecated.
Initialization of this field is prone to deadlocks.
The field must be initialized by the Logger class initialization
which may cause deadlocks with the LogManager class initialization.
In such cases two class initialization wait for each other to complete.
The preferred way to get the global logger object is via the call
Logger.getGlobal().
For compatibility with old JDK versions where the
Logger.getGlobal() is not available use the call
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME)
or Logger.getLogger("global").
- GLOBAL_LOGGER_NAME - Static variable in class java.util.logging.Logger
-
GLOBAL_LOGGER_NAME is a name for the global logger.
- h - Variable in class java.lang.reflect.Proxy
-
the invocation handler for this proxy instance.
- hash(Object...) - Static method in class java.util.Objects
-
Generates a hash code for a sequence of input values.
- hashCode() - Method in class java.io.File
-
Computes a hash code for this abstract pathname.
- hashCode() - Method in interface java.lang.annotation.Annotation
-
Returns the hash code of this annotation, as defined below:
The hash code of an annotation is the sum of the hash codes
of its members (including those with default values), as defined
below:
The hash code of an annotation member is (127 times the hash code
of the member-name as computed by
String.hashCode()) XOR
the hash code of the member-value, as defined below:
The hash code of a member-value depends on its type:
The hash code of a primitive value
v is equal to
WrapperType.valueOf(v).hashCode(), where
WrapperType is the wrapper type corresponding
to the primitive type of
v (
Byte,
Character,
Double,
Float,
Integer,
Long,
Short, or
Boolean).
- hashCode() - Method in class java.lang.Boolean
-
Returns a hash code for this Boolean object.
- hashCode() - Method in class java.lang.Byte
-
Returns a hash code for this Byte; equal to the result
of invoking intValue().
- hashCode() - Method in class java.lang.Character
-
Returns a hash code for this Character; equal to the result
of invoking charValue().
- hashCode() - Method in class java.lang.Character.Subset
-
- hashCode() - Method in class java.lang.Double
-
Returns a hash code for this Double object.
- hashCode() - Method in class java.lang.Enum
-
Returns a hash code for this enum constant.
- hashCode() - Method in class java.lang.Float
-
Returns a hash code for this Float object.
- hashCode() - Method in class java.lang.Integer
-
Returns a hash code for this Integer.
- hashCode() - Method in class java.lang.Long
-
Returns a hash code for this Long.
- hashCode() - Method in class java.lang.Object
-
Returns a hash code value for the object.
- hashCode() - Method in class java.lang.reflect.Constructor
-
Returns a hashcode for this Constructor.
- hashCode() - Method in class java.lang.reflect.Field
-
Returns a hashcode for this Field.
- hashCode() - Method in class java.lang.reflect.Method
-
Returns a hashcode for this Method.
- hashCode() - Method in class java.lang.Short
-
Returns a hash code for this Short; equal to the result
of invoking intValue().
- hashCode() - Method in class java.lang.StackTraceElement
-
Returns a hash code value for this stack trace element.
- hashCode() - Method in class java.lang.String
-
Returns a hash code for this string.
- hashCode() - Method in class java.math.BigDecimal
-
Returns the hash code for this BigDecimal.
- hashCode() - Method in class java.math.BigInteger
-
Returns the hash code for this BigInteger.
- hashCode() - Method in class java.math.MathContext
-
Returns the hash code for this MathContext.
- hashCode() - Method in class java.net.URI
-
Returns a hash-code value for this URI.
- hashCode() - Method in class java.net.URL
-
Creates an integer suitable for hash table indexing.
- hashCode(URL) - Method in class java.net.URLStreamHandler
-
Provides the default hash calculation.
- hashCode() - Method in class java.util.AbstractList
-
Returns the hash code value for this list.
- hashCode() - Method in class java.util.AbstractMap
-
Returns the hash code value for this map.
- hashCode() - Method in class java.util.AbstractMap.SimpleEntry
-
Returns the hash code value for this map entry.
- hashCode() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Returns the hash code value for this map entry.
- hashCode() - Method in class java.util.AbstractSet
-
Returns the hash code value for this set.
- hashCode(long[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the specified array.
- hashCode(int[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the specified array.
- hashCode(short[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the specified array.
- hashCode(char[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the specified array.
- hashCode(byte[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the specified array.
- hashCode(boolean[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the specified array.
- hashCode(float[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the specified array.
- hashCode(double[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the specified array.
- hashCode(Object[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the specified array.
- hashCode() - Method in interface java.util.Collection
-
Returns the hash code value for this collection.
- hashCode() - Method in class java.util.Hashtable
-
Returns the hash code value for this Map as per the definition in the
Map interface.
- hashCode() - Method in class java.util.IdentityHashMap
-
Returns the hash code value for this map.
- hashCode() - Method in interface java.util.List
-
Returns the hash code value for this list.
- hashCode() - Method in class java.util.logging.Level
-
Generate a hashcode.
- hashCode() - Method in interface java.util.Map.Entry
-
Returns the hash code value for this map entry.
- hashCode() - Method in interface java.util.Map
-
Returns the hash code value for this map.
- hashCode(Object) - Static method in class java.util.Objects
-
Returns the hash code of a non-null argument and 0 for
a null argument.
- hashCode() - Method in interface java.util.Set
-
Returns the hash code value for this set.
- hashCode() - Method in class java.util.Vector
-
Returns the hash code value for this Vector.
- hashCode() - Method in class java.util.zip.ZipEntry
-
Returns the hash code value for this entry.
- HashMap<K,V> - Class in java.util
-
Hash table based implementation of the Map interface.
- HashMap(int, float) - Constructor for class java.util.HashMap
-
Constructs an empty HashMap with the specified initial
capacity and load factor.
- HashMap(int) - Constructor for class java.util.HashMap
-
Constructs an empty HashMap with the specified initial
capacity and the default load factor (0.75).
- HashMap() - Constructor for class java.util.HashMap
-
Constructs an empty HashMap with the default initial capacity
(16) and the default load factor (0.75).
- HashMap(Map<? extends K, ? extends V>) - Constructor for class java.util.HashMap
-
Constructs a new HashMap with the same mappings as the
specified Map.
- HashSet<E> - Class in java.util
-
This class implements the Set interface, backed by a hash table
(actually a HashMap instance).
- HashSet() - Constructor for class java.util.HashSet
-
Constructs a new, empty set; the backing HashMap instance has
default initial capacity (16) and load factor (0.75).
- HashSet(Collection<? extends E>) - Constructor for class java.util.HashSet
-
Constructs a new set containing the elements in the specified
collection.
- HashSet(int, float) - Constructor for class java.util.HashSet
-
Constructs a new, empty set; the backing HashMap instance has
the specified initial capacity and the specified load factor.
- HashSet(int) - Constructor for class java.util.HashSet
-
Constructs a new, empty set; the backing HashMap instance has
the specified initial capacity and default load factor (0.75).
- Hashtable<K,V> - Class in java.util
-
This class implements a hash table, which maps keys to values.
- Hashtable(int, float) - Constructor for class java.util.Hashtable
-
Constructs a new, empty hashtable with the specified initial
capacity and the specified load factor.
- Hashtable(int) - Constructor for class java.util.Hashtable
-
Constructs a new, empty hashtable with the specified initial capacity
and default load factor (0.75).
- Hashtable() - Constructor for class java.util.Hashtable
-
Constructs a new, empty hashtable with a default initial capacity (11)
and load factor (0.75).
- Hashtable(Map<? extends K, ? extends V>) - Constructor for class java.util.Hashtable
-
Constructs a new hashtable with the same mappings as the given
Map.
- hasListeners(String) - Method in class java.beans.PropertyChangeSupport
-
Check if there are any listeners for a specific property, including
those registered on all properties.
- hasListeners(String) - Method in class java.beans.VetoableChangeSupport
-
Check if there are any listeners for a specific property, including
those registered on all properties.
- hasMoreElements() - Method in interface java.util.Enumeration
-
Tests if this enumeration contains more elements.
- hasMoreElements() - Method in class java.util.StringTokenizer
-
Returns the same value as the hasMoreTokens
method.
- hasMoreTokens() - Method in class java.util.StringTokenizer
-
Tests if there are more tokens available from this tokenizer's string.
- hasNext() - Method in interface java.util.Iterator
-
Returns true if the iteration has more elements.
- hasNext() - Method in interface java.util.ListIterator
-
Returns true if this list iterator has more elements when
traversing the list in the forward direction.
- hasPrevious() - Method in interface java.util.ListIterator
-
Returns true if this list iterator has more elements when
traversing the list in the reverse direction.
- headMap(K, boolean) - Method in interface java.util.NavigableMap
-
Returns a view of the portion of this map whose keys are less than (or
equal to, if inclusive is true) toKey.
- headMap(K) - Method in interface java.util.NavigableMap
-
Returns a view of the portion of this map whose keys are
strictly less than toKey.
- headMap(K) - Method in interface java.util.SortedMap
-
Returns a view of the portion of this map whose keys are
strictly less than toKey.
- headMap(K, boolean) - Method in class java.util.TreeMap
-
- headMap(K) - Method in class java.util.TreeMap
-
- headSet(E, boolean) - Method in interface java.util.NavigableSet
-
Returns a view of the portion of this set whose elements are less than
(or equal to, if inclusive is true) toElement.
- headSet(E) - Method in interface java.util.NavigableSet
-
Returns a view of the portion of this set whose elements are
strictly less than toElement.
- headSet(E) - Method in interface java.util.SortedSet
-
Returns a view of the portion of this set whose elements are
strictly less than toElement.
- headSet(E, boolean) - Method in class java.util.TreeSet
-
- headSet(E) - Method in class java.util.TreeSet
-
- higher(E) - Method in interface java.util.NavigableSet
-
Returns the least element in this set strictly greater than the
given element, or null if there is no such element.
- higher(E) - Method in class java.util.TreeSet
-
- higherEntry(K) - Method in interface java.util.NavigableMap
-
Returns a key-value mapping associated with the least key
strictly greater than the given key, or null if there
is no such key.
- higherEntry(K) - Method in class java.util.TreeMap
-
- higherKey(K) - Method in interface java.util.NavigableMap
-
Returns the least key strictly greater than the given key, or
null if there is no such key.
- higherKey(K) - Method in class java.util.TreeMap
-
- highestOneBit(int) - Static method in class java.lang.Integer
-
Returns an int value with at most a single one-bit, in the
position of the highest-order ("leftmost") one-bit in the specified
int value.
- highestOneBit(long) - Static method in class java.lang.Long
-
Returns a long value with at most a single one-bit, in the
position of the highest-order ("leftmost") one-bit in the specified
long value.
- highSurrogate(int) - Static method in class java.lang.Character
-
- holdsLock(Object) - Static method in class java.lang.Thread
-
Returns true if and only if the current thread holds the
monitor lock on the specified object.
- hostsEqual(URL, URL) - Method in class java.net.URLStreamHandler
-
Compares the host components of two URLs.
- identityHashCode(Object) - Static method in class java.lang.System
-
- IdentityHashMap<K,V> - Class in java.util
-
This class implements the Map interface with a hash table, using
reference-equality in place of object-equality when comparing keys (and
values).
- IdentityHashMap() - Constructor for class java.util.IdentityHashMap
-
Constructs a new, empty identity hash map with a default expected
maximum size (21).
- IdentityHashMap(int) - Constructor for class java.util.IdentityHashMap
-
Constructs a new, empty map with the specified expected maximum size.
- IdentityHashMap(Map<? extends K, ? extends V>) - Constructor for class java.util.IdentityHashMap
-
Constructs a new identity hash map containing the keys-value mappings
in the specified map.
- IEEEremainder(double, double) - Static method in class java.lang.Math
-
Computes the remainder operation on two arguments as prescribed
by the IEEE 754 standard.
- IllegalAccessError - Error in java.lang
-
Thrown if an application attempts to access or modify a field, or
to call a method that it does not have access to.
- IllegalAccessError() - Constructor for error java.lang.IllegalAccessError
-
Constructs an IllegalAccessError with no detail message.
- IllegalAccessError(String) - Constructor for error java.lang.IllegalAccessError
-
Constructs an IllegalAccessError with the specified
detail message.
- IllegalAccessException - Exception in java.lang
-
An IllegalAccessException is thrown when an application tries
to reflectively create an instance (other than an array),
set or get a field, or invoke a method, but the currently
executing method does not have access to the definition of
the specified class, field, method or constructor.
- IllegalAccessException() - Constructor for exception java.lang.IllegalAccessException
-
Constructs an IllegalAccessException without a
detail message.
- IllegalAccessException(String) - Constructor for exception java.lang.IllegalAccessException
-
Constructs an IllegalAccessException with a detail message.
- IllegalArgumentException - Exception in java.lang
-
Thrown to indicate that a method has been passed an illegal or
inappropriate argument.
- IllegalArgumentException() - Constructor for exception java.lang.IllegalArgumentException
-
Constructs an IllegalArgumentException with no
detail message.
- IllegalArgumentException(String) - Constructor for exception java.lang.IllegalArgumentException
-
Constructs an IllegalArgumentException with the
specified detail message.
- IllegalArgumentException(String, Throwable) - Constructor for exception java.lang.IllegalArgumentException
-
Constructs a new exception with the specified detail message and
cause.
- IllegalArgumentException(Throwable) - Constructor for exception java.lang.IllegalArgumentException
-
Constructs a new exception with the specified cause and a detail
message of (cause==null ?
- IllegalStateException - Exception in java.lang
-
Signals that a method has been invoked at an illegal or
inappropriate time.
- IllegalStateException() - Constructor for exception java.lang.IllegalStateException
-
Constructs an IllegalStateException with no detail message.
- IllegalStateException(String) - Constructor for exception java.lang.IllegalStateException
-
Constructs an IllegalStateException with the specified detail
message.
- IllegalStateException(String, Throwable) - Constructor for exception java.lang.IllegalStateException
-
Constructs a new exception with the specified detail message and
cause.
- IllegalStateException(Throwable) - Constructor for exception java.lang.IllegalStateException
-
Constructs a new exception with the specified cause and a detail
message of (cause==null ?
- in - Variable in class java.io.FilterInputStream
-
The input stream to be filtered.
- IncompatibleClassChangeError - Error in java.lang
-
Thrown when an incompatible class change has occurred to some class
definition.
- IncompatibleClassChangeError() - Constructor for error java.lang.IncompatibleClassChangeError
-
Constructs an IncompatibleClassChangeError with no
detail message.
- IncompatibleClassChangeError(String) - Constructor for error java.lang.IncompatibleClassChangeError
-
Constructs an IncompatibleClassChangeError with the
specified detail message.
- IndexedPropertyChangeEvent - Class in java.beans
-
An "IndexedPropertyChange" event gets delivered whenever a component that
conforms to the JavaBeans™ specification (a "bean") changes a bound
indexed property.
- IndexedPropertyChangeEvent(Object, String, Object, Object, int) - Constructor for class java.beans.IndexedPropertyChangeEvent
-
Constructs a new IndexedPropertyChangeEvent object.
- indexOf(int) - Method in class java.lang.String
-
Returns the index within this string of the first occurrence of
the specified character.
- indexOf(int, int) - Method in class java.lang.String
-
Returns the index within this string of the first occurrence of the
specified character, starting the search at the specified index.
- indexOf(String) - Method in class java.lang.String
-
Returns the index within this string of the first occurrence of the
specified substring.
- indexOf(String, int) - Method in class java.lang.String
-
Returns the index within this string of the first occurrence of the
specified substring, starting at the specified index.
- indexOf(String) - Method in class java.lang.StringBuffer
-
- indexOf(String, int) - Method in class java.lang.StringBuffer
-
- indexOf(String) - Method in class java.lang.StringBuilder
-
- indexOf(String, int) - Method in class java.lang.StringBuilder
-
- indexOf(Object) - Method in class java.util.AbstractList
-
Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- indexOf(Object) - Method in class java.util.ArrayList
-
Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- indexOf(Object) - Method in class java.util.LinkedList
-
Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- indexOf(Object) - Method in interface java.util.List
-
Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- indexOf(Object) - Method in class java.util.Vector
-
Returns the index of the first occurrence of the specified element
in this vector, or -1 if this vector does not contain the element.
- indexOf(Object, int) - Method in class java.util.Vector
-
Returns the index of the first occurrence of the specified element in
this vector, searching forwards from index, or returns -1 if
the element is not found.
- indexOfSubList(List<?>, List<?>) - Static method in class java.util.Collections
-
Returns the starting position of the first occurrence of the specified
target list within the specified source list, or -1 if there is no
such occurrence.
- IndexOutOfBoundsException - Exception in java.lang
-
Thrown to indicate that an index of some sort (such as to an array, to a
string, or to a vector) is out of range.
- IndexOutOfBoundsException() - Constructor for exception java.lang.IndexOutOfBoundsException
-
Constructs an IndexOutOfBoundsException with no
detail message.
- IndexOutOfBoundsException(String) - Constructor for exception java.lang.IndexOutOfBoundsException
-
Constructs an IndexOutOfBoundsException with the
specified detail message.
- inf - Variable in class java.util.zip.InflaterInputStream
-
Decompressor for this stream.
- inflate(byte[], int, int) - Method in class java.util.zip.Inflater
-
Uncompresses bytes into specified buffer.
- inflate(byte[]) - Method in class java.util.zip.Inflater
-
Uncompresses bytes into specified buffer.
- Inflater - Class in java.util.zip
-
This class provides support for general purpose decompression using the
popular ZLIB compression library.
- Inflater(boolean) - Constructor for class java.util.zip.Inflater
-
Creates a new decompressor.
- Inflater() - Constructor for class java.util.zip.Inflater
-
Creates a new decompressor.
- InflaterInputStream - Class in java.util.zip
-
This class implements a stream filter for uncompressing data in the
"deflate" compression format.
- InflaterInputStream(InputStream, Inflater, int) - Constructor for class java.util.zip.InflaterInputStream
-
Creates a new input stream with the specified decompressor and
buffer size.
- InflaterInputStream(InputStream, Inflater) - Constructor for class java.util.zip.InflaterInputStream
-
Creates a new input stream with the specified decompressor and a
default buffer size.
- InflaterInputStream(InputStream) - Constructor for class java.util.zip.InflaterInputStream
-
Creates a new input stream with a default decompressor and buffer size.
- INFO - Static variable in class java.util.logging.Level
-
INFO is a message level for informational messages.
- info(String) - Method in class java.util.logging.Logger
-
Log an INFO message.
- initCause(Throwable) - Method in class java.lang.Throwable
-
Initializes the cause of this throwable to the specified value.
- INITIAL_QUOTE_PUNCTUATION - Static variable in class java.lang.Character
-
General category "Pi" in the Unicode specification.
- initialValue() - Method in class java.lang.ThreadLocal
-
Returns the current thread's "initial value" for this
thread-local variable.
- InputStream - Class in java.io
-
This abstract class is the superclass of all classes representing
an input stream of bytes.
- InputStream() - Constructor for class java.io.InputStream
-
- InputStreamReader - Class in java.io
-
An InputStreamReader is a bridge from byte streams to character streams: It
reads bytes and decodes them into characters using a specified
charset.
- InputStreamReader(InputStream) - Constructor for class java.io.InputStreamReader
-
Creates an InputStreamReader that uses the default charset.
- InputStreamReader(InputStream, String) - Constructor for class java.io.InputStreamReader
-
Creates an InputStreamReader that uses the named charset.
- insert(int, char[], int, int) - Method in class java.lang.StringBuffer
-
- insert(int, Object) - Method in class java.lang.StringBuffer
-
- insert(int, String) - Method in class java.lang.StringBuffer
-
- insert(int, char[]) - Method in class java.lang.StringBuffer
-
- insert(int, CharSequence) - Method in class java.lang.StringBuffer
-
- insert(int, CharSequence, int, int) - Method in class java.lang.StringBuffer
-
- insert(int, boolean) - Method in class java.lang.StringBuffer
-
- insert(int, char) - Method in class java.lang.StringBuffer
-
- insert(int, int) - Method in class java.lang.StringBuffer
-
- insert(int, long) - Method in class java.lang.StringBuffer
-
- insert(int, float) - Method in class java.lang.StringBuffer
-
- insert(int, double) - Method in class java.lang.StringBuffer
-
- insert(int, char[], int, int) - Method in class java.lang.StringBuilder
-
- insert(int, Object) - Method in class java.lang.StringBuilder
-
- insert(int, String) - Method in class java.lang.StringBuilder
-
- insert(int, char[]) - Method in class java.lang.StringBuilder
-
- insert(int, CharSequence) - Method in class java.lang.StringBuilder
-
- insert(int, CharSequence, int, int) - Method in class java.lang.StringBuilder
-
- insert(int, boolean) - Method in class java.lang.StringBuilder
-
- insert(int, char) - Method in class java.lang.StringBuilder
-
- insert(int, int) - Method in class java.lang.StringBuilder
-
- insert(int, long) - Method in class java.lang.StringBuilder
-
- insert(int, float) - Method in class java.lang.StringBuilder
-
- insert(int, double) - Method in class java.lang.StringBuilder
-
- insertElementAt(E, int) - Method in class java.util.Vector
-
Inserts the specified object as a component in this vector at the
specified index.
- InstantiationException - Exception in java.lang
-
Thrown when an application tries to create an instance of a class
using the newInstance method in class
Class, but the specified class object cannot be
instantiated.
- InstantiationException() - Constructor for exception java.lang.InstantiationException
-
Constructs an InstantiationException with no detail message.
- InstantiationException(String) - Constructor for exception java.lang.InstantiationException
-
Constructs an InstantiationException with the
specified detail message.
- intBitsToFloat(int) - Static method in class java.lang.Float
-
Returns the float value corresponding to a given
bit representation.
- Integer - Class in java.lang
-
The Integer class wraps a value of the primitive type
int in an object.
- Integer(int) - Constructor for class java.lang.Integer
-
Constructs a newly allocated Integer object that
represents the specified int value.
- Integer(String) - Constructor for class java.lang.Integer
-
Constructs a newly allocated Integer object that
represents the int value indicated by the
String parameter.
- INTERFACE - Static variable in class java.lang.reflect.Modifier
-
The int value representing the interface
modifier.
- interfaceModifiers() - Static method in class java.lang.reflect.Modifier
-
Return an int value OR-ing together the source language
modifiers that can be applied to an interface.
- intern() - Method in class java.lang.String
-
Returns a canonical representation for the string object.
- InternalError - Error in java.lang
-
Thrown to indicate some unexpected internal error has occurred in
the Java Virtual Machine.
- InternalError() - Constructor for error java.lang.InternalError
-
Constructs an InternalError with no detail message.
- InternalError(String) - Constructor for error java.lang.InternalError
-
Constructs an InternalError with the specified
detail message.
- interrupt() - Method in class java.lang.Thread
-
Interrupts this thread.
- interrupted() - Static method in class java.lang.Thread
-
Tests whether the current thread has been interrupted.
- InterruptedException - Exception in java.lang
-
Thrown when a thread is waiting, sleeping, or otherwise occupied,
and the thread is interrupted, either before or during the activity.
- InterruptedException() - Constructor for exception java.lang.InterruptedException
-
Constructs an InterruptedException with no detail message.
- InterruptedException(String) - Constructor for exception java.lang.InterruptedException
-
Constructs an InterruptedException with the
specified detail message.
- InterruptedIOException - Exception in java.io
-
Signals that an I/O operation has been interrupted.
- InterruptedIOException() - Constructor for exception java.io.InterruptedIOException
-
Constructs an InterruptedIOException with
null as its error detail message.
- InterruptedIOException(String) - Constructor for exception java.io.InterruptedIOException
-
Constructs an InterruptedIOException with the
specified detail message.
- intValue() - Method in class java.lang.Byte
-
Returns the value of this Byte as an
int.
- intValue() - Method in class java.lang.Double
-
Returns the value of this Double as an
int (by casting to type int).
- intValue() - Method in class java.lang.Float
-
Returns the value of this Float as an int (by
casting to type int).
- intValue() - Method in class java.lang.Integer
-
Returns the value of this Integer as an
int.
- intValue() - Method in class java.lang.Long
-
Returns the value of this Long as an
int.
- intValue() - Method in class java.lang.Number
-
Returns the value of the specified number as an int.
- intValue() - Method in class java.lang.Short
-
Returns the value of this Short as an
int.
- intValue() - Method in class java.math.BigDecimal
-
Converts this BigDecimal to an int.
- intValue() - Method in class java.math.BigInteger
-
Converts this BigInteger to an int.
- intValue() - Method in class java.util.logging.Level
-
Get the integer value for this level.
- intValueExact() - Method in class java.math.BigDecimal
-
Converts this BigDecimal to an int, checking
for lost information.
- InvalidClassException - Exception in java.io
-
Thrown when the Serialization runtime detects one of the following
problems with a Class.
- InvalidClassException(String) - Constructor for exception java.io.InvalidClassException
-
Report an InvalidClassException for the reason specified.
- InvalidClassException(String, String) - Constructor for exception java.io.InvalidClassException
-
Constructs an InvalidClassException object.
- InvalidObjectException - Exception in java.io
-
Indicates that one or more deserialized objects failed validation
tests.
- InvalidObjectException(String) - Constructor for exception java.io.InvalidObjectException
-
Constructs an InvalidObjectException.
- InvocationHandler - Interface in java.lang.reflect
-
InvocationHandler is the interface implemented by
the invocation handler of a proxy instance.
- InvocationTargetException - Exception in java.lang.reflect
-
InvocationTargetException is a checked exception that wraps
an exception thrown by an invoked method or constructor.
- InvocationTargetException() - Constructor for exception java.lang.reflect.InvocationTargetException
-
Constructs an InvocationTargetException with
null as the target exception.
- InvocationTargetException(Throwable) - Constructor for exception java.lang.reflect.InvocationTargetException
-
Constructs a InvocationTargetException with a target exception.
- InvocationTargetException(Throwable, String) - Constructor for exception java.lang.reflect.InvocationTargetException
-
Constructs a InvocationTargetException with a target exception
and a detail message.
- invoke(Object, Method, Object[]) - Method in interface java.lang.reflect.InvocationHandler
-
Processes a method invocation on a proxy instance and returns
the result.
- invoke(Object, Object...) - Method in class java.lang.reflect.Method
-
Invokes the underlying method represented by this Method
object, on the specified object with the specified parameters.
- IOException - Exception in java.io
-
Signals that an I/O exception of some sort has occurred.
- IOException() - Constructor for exception java.io.IOException
-
Constructs an IOException with null
as its error detail message.
- IOException(String) - Constructor for exception java.io.IOException
-
Constructs an IOException with the specified detail message.
- IOException(String, Throwable) - Constructor for exception java.io.IOException
-
Constructs an IOException with the specified detail message
and cause.
- IOException(Throwable) - Constructor for exception java.io.IOException
-
Constructs an IOException with the specified cause and a
detail message of {@code (cause==null ?
- isAbsolute() - Method in class java.io.File
-
Tests whether this abstract pathname is absolute.
- isAbsolute() - Method in class java.net.URI
-
Tells whether or not this URI is absolute.
- isAbstract(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
abstract modifier, false otherwise.
- isAccessible() - Method in class java.lang.reflect.AccessibleObject
-
Get the value of the accessible flag for this object.
- isAlive() - Method in class java.lang.Thread
-
Tests if this thread is alive.
- isAnnotation() - Method in class java.lang.Class
-
Returns true if this Class object represents an annotation
type.
- isAnnotationPresent(Class<? extends Annotation>) - Method in class java.lang.Class
-
- isAnnotationPresent(Class<? extends Annotation>) - Method in class java.lang.reflect.AccessibleObject
-
- isAnnotationPresent(Class<? extends Annotation>) - Method in interface java.lang.reflect.AnnotatedElement
-
Returns true if an annotation for the specified type
is present on this element, else false.
- isArray() - Method in class java.lang.Class
-
Determines if this Class object represents an array class.
- isAssignableFrom(Class<?>) - Method in class java.lang.Class
-
Determines if the class or interface represented by this
Class object is either the same as, or is a superclass or
superinterface of, the class or interface represented by the specified
Class parameter.
- isBmpCodePoint(int) - Static method in class java.lang.Character
-
- isBridge() - Method in class java.lang.reflect.Method
-
Returns true if this method is a bridge
method; returns false otherwise.
- isDaemon() - Method in class java.lang.Thread
-
Tests if this thread is a daemon thread.
- isDefined(char) - Static method in class java.lang.Character
-
Determines if a character is defined in Unicode.
- isDefined(int) - Static method in class java.lang.Character
-
Determines if a character (Unicode code point) is defined in Unicode.
- isDigit(char) - Static method in class java.lang.Character
-
Determines if the specified character is a digit.
- isDigit(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is a digit.
- isDirectory() - Method in class java.io.File
-
Tests whether the file denoted by this abstract pathname is a
directory.
- isDirectory() - Method in class java.util.zip.ZipEntry
-
Returns true if this is a directory entry.
- isEmpty() - Method in class java.lang.String
-
- isEmpty() - Method in class java.util.AbstractCollection
-
Returns true if this collection contains no elements.
- isEmpty() - Method in class java.util.AbstractMap
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in class java.util.ArrayDeque
-
Returns true if this deque contains no elements.
- isEmpty() - Method in class java.util.ArrayList
-
Returns true if this list contains no elements.
- isEmpty() - Method in interface java.util.Collection
-
Returns true if this collection contains no elements.
- isEmpty() - Method in class java.util.Dictionary
-
Tests if this dictionary maps no keys to value.
- isEmpty() - Method in class java.util.HashMap
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in class java.util.HashSet
-
Returns true if this set contains no elements.
- isEmpty() - Method in class java.util.Hashtable
-
Tests if this hashtable maps no keys to values.
- isEmpty() - Method in class java.util.IdentityHashMap
-
Returns true if this identity hash map contains no key-value
mappings.
- isEmpty() - Method in interface java.util.List
-
Returns true if this list contains no elements.
- isEmpty() - Method in interface java.util.Map
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in interface java.util.Set
-
Returns true if this set contains no elements.
- isEmpty() - Method in class java.util.TreeSet
-
Returns true if this set contains no elements.
- isEmpty() - Method in class java.util.Vector
-
Tests if this vector has no components.
- isEmpty() - Method in class java.util.WeakHashMap
-
Returns true if this map contains no key-value mappings.
- isEnqueued() - Method in class java.lang.ref.Reference
-
Tells whether or not this reference object has been enqueued, either by
the program or by the garbage collector.
- isEnum() - Method in class java.lang.Class
-
Returns true if and only if this class was declared as an enum in the
source code.
- isEnumConstant() - Method in class java.lang.reflect.Field
-
Returns true if this field represents an element of
an enumerated type; returns false otherwise.
- isFile() - Method in class java.io.File
-
Tests whether the file denoted by this abstract pathname is a normal
file.
- isFinal(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
final modifier, false otherwise.
- isHidden() - Method in class java.io.File
-
Tests whether the file named by this abstract pathname is a hidden
file.
- isHighSurrogate(char) - Static method in class java.lang.Character
-
- isInfinite(double) - Static method in class java.lang.Double
-
Returns true if the specified number is infinitely
large in magnitude, false otherwise.
- isInfinite() - Method in class java.lang.Double
-
Returns true if this Double value is
infinitely large in magnitude, false otherwise.
- isInfinite(float) - Static method in class java.lang.Float
-
Returns true if the specified number is infinitely
large in magnitude, false otherwise.
- isInfinite() - Method in class java.lang.Float
-
Returns true if this Float value is
infinitely large in magnitude, false otherwise.
- isInstance(Object) - Method in class java.lang.Class
-
Determines if the specified Object is assignment-compatible
with the object represented by this Class.
- isInterface() - Method in class java.lang.Class
-
Determines if the specified Class object represents an
interface type.
- isInterface(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
interface modifier, false otherwise.
- isInterrupted() - Method in class java.lang.Thread
-
Tests whether this thread has been interrupted.
- isISOControl(char) - Static method in class java.lang.Character
-
Determines if the specified character is an ISO control
character.
- isISOControl(int) - Static method in class java.lang.Character
-
Determines if the referenced character (Unicode code point) is an ISO control
character.
- isJavaIdentifierPart(char) - Static method in class java.lang.Character
-
Determines if the specified character may be part of a Java
identifier as other than the first character.
- isJavaIdentifierPart(int) - Static method in class java.lang.Character
-
Determines if the character (Unicode code point) may be part of a Java
identifier as other than the first character.
- isJavaIdentifierStart(char) - Static method in class java.lang.Character
-
Determines if the specified character is
permissible as the first character in a Java identifier.
- isJavaIdentifierStart(int) - Static method in class java.lang.Character
-
Determines if the character (Unicode code point) is
permissible as the first character in a Java identifier.
- isLetter(char) - Static method in class java.lang.Character
-
Determines if the specified character is a letter.
- isLetter(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is a letter.
- isLetterOrDigit(char) - Static method in class java.lang.Character
-
Determines if the specified character is a letter or digit.
- isLetterOrDigit(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is a letter or digit.
- isLoggable(Level) - Method in class java.util.logging.Logger
-
Check if a message of the given level would actually be logged
by this logger.
- isLowerCase(char) - Static method in class java.lang.Character
-
Determines if the specified character is a lowercase character.
- isLowSurrogate(char) - Static method in class java.lang.Character
-
- isNaN(double) - Static method in class java.lang.Double
-
Returns true if the specified number is a
Not-a-Number (NaN) value, false otherwise.
- isNaN() - Method in class java.lang.Double
-
Returns true if this Double value is
a Not-a-Number (NaN), false otherwise.
- isNaN(float) - Static method in class java.lang.Float
-
Returns true if the specified number is a
Not-a-Number (NaN) value, false otherwise.
- isNaN() - Method in class java.lang.Float
-
Returns true if this Float value is a
Not-a-Number (NaN), false otherwise.
- isNative(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
native modifier, false otherwise.
- isNativeMethod() - Method in class java.lang.StackTraceElement
-
Returns true if the method containing the execution point
represented by this stack trace element is a native method.
- isOpaque() - Method in class java.net.URI
-
Tells whether or not this URI is opaque.
- isPrimitive() - Method in class java.io.ObjectStreamField
-
Return true if this field has a primitive type.
- isPrimitive() - Method in class java.lang.Class
-
Determines if the specified Class object represents a
primitive type.
- isPrivate(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
private modifier, false otherwise.
- isProbablePrime(int) - Method in class java.math.BigInteger
-
Returns true if this BigInteger is probably prime,
false if it's definitely composite.
- isProtected(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
protected modifier, false otherwise.
- isProxyClass(Class<?>) - Static method in class java.lang.reflect.Proxy
-
Returns true if and only if the specified class was dynamically
generated to be a proxy class using the getProxyClass
method or the newProxyInstance method.
- isPublic(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
public modifier, false otherwise.
- isSpace(char) - Static method in class java.lang.Character
-
Deprecated.
Replaced by isWhitespace(char).
- isSpaceChar(int) - Static method in class java.lang.Character
-
- isStatic(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
static modifier, false otherwise.
- isStrict(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
strictfp modifier, false otherwise.
- isSupplementaryCodePoint(int) - Static method in class java.lang.Character
-
- isSurrogate(char) - Static method in class java.lang.Character
-
Determines if the given char value is a Unicode
surrogate code unit.
- isSurrogatePair(char, char) - Static method in class java.lang.Character
-
- isSynchronized(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
synchronized modifier, false otherwise.
- isSynthetic() - Method in class java.lang.Class
-
Returns true if this class is a synthetic class;
returns false otherwise.
- isSynthetic() - Method in class java.lang.reflect.Constructor
-
Returns true if this constructor is a synthetic
constructor; returns false otherwise.
- isSynthetic() - Method in class java.lang.reflect.Field
-
Returns true if this field is a synthetic
field; returns false otherwise.
- isSynthetic() - Method in interface java.lang.reflect.Member
-
Returns true if this member was introduced by
the compiler; returns false otherwise.
- isSynthetic() - Method in class java.lang.reflect.Method
-
Returns true if this method is a synthetic
method; returns false otherwise.
- isTitleCase(char) - Static method in class java.lang.Character
-
Determines if the specified character is a titlecase character.
- isTitleCase(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is a titlecase character.
- isTransient(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
transient modifier, false otherwise.
- isUnshared() - Method in class java.io.ObjectStreamField
-
Returns boolean value indicating whether or not the serializable field
represented by this ObjectStreamField instance is unshared.
- isUpperCase(char) - Static method in class java.lang.Character
-
Determines if the specified character is an uppercase character.
- isValidCodePoint(int) - Static method in class java.lang.Character
-
- isVarArgs() - Method in class java.lang.reflect.Constructor
-
Returns true if this constructor was declared to take
a variable number of arguments; returns false
otherwise.
- isVarArgs() - Method in class java.lang.reflect.Method
-
Returns true if this method was declared to take
a variable number of arguments; returns false
otherwise.
- isVolatile(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
volatile modifier, false otherwise.
- isWhitespace(char) - Static method in class java.lang.Character
-
Determines if the specified character is white space according to Java.
- isWhitespace(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is
white space according to Java.
- Iterable<T> - Interface in java.lang
-
Implementing this interface allows an object to be the target of
the "foreach" statement.
- iterator() - Method in interface java.lang.Iterable
-
Returns an iterator over a set of elements of type T.
- iterator() - Method in class java.util.AbstractCollection
-
Returns an iterator over the elements contained in this collection.
- iterator() - Method in class java.util.AbstractList
-
Returns an iterator over the elements in this list in proper sequence.
- iterator() - Method in class java.util.AbstractSequentialList
-
Returns an iterator over the elements in this list (in proper
sequence).
- iterator() - Method in class java.util.ArrayDeque
-
Returns an iterator over the elements in this deque.
- iterator() - Method in class java.util.ArrayList
-
Returns an iterator over the elements in this list in proper sequence.
- iterator() - Method in interface java.util.Collection
-
Returns an iterator over the elements in this collection.
- iterator() - Method in interface java.util.Deque
-
Returns an iterator over the elements in this deque in proper sequence.
- iterator() - Method in class java.util.HashSet
-
Returns an iterator over the elements in this set.
- Iterator<E> - Interface in java.util
-
An iterator over a collection.
- iterator() - Method in interface java.util.List
-
Returns an iterator over the elements in this list in proper sequence.
- iterator() - Method in interface java.util.NavigableSet
-
Returns an iterator over the elements in this set, in ascending order.
- iterator() - Method in class java.util.PriorityQueue
-
Returns an iterator over the elements in this queue.
- iterator() - Method in class java.util.ServiceLoader
-
Lazily loads the available providers of this loader's service.
- iterator() - Method in interface java.util.Set
-
Returns an iterator over the elements in this set.
- iterator() - Method in class java.util.TreeSet
-
Returns an iterator over the elements in this set in ascending order.
- iterator() - Method in class java.util.Vector
-
Returns an iterator over the elements in this list in proper sequence.
- last() - Method in interface java.util.SortedSet
-
Returns the last (highest) element currently in this set.
- last() - Method in class java.util.TreeSet
-
- lastElement() - Method in class java.util.Vector
-
Returns the last component of the vector.
- lastEntry() - Method in interface java.util.NavigableMap
-
Returns a key-value mapping associated with the greatest
key in this map, or null if the map is empty.
- lastEntry() - Method in class java.util.TreeMap
-
- lastIndexOf(int) - Method in class java.lang.String
-
Returns the index within this string of the last occurrence of
the specified character.
- lastIndexOf(int, int) - Method in class java.lang.String
-
Returns the index within this string of the last occurrence of
the specified character, searching backward starting at the
specified index.
- lastIndexOf(String) - Method in class java.lang.String
-
Returns the index within this string of the last occurrence of the
specified substring.
- lastIndexOf(String, int) - Method in class java.lang.String
-
Returns the index within this string of the last occurrence of the
specified substring, searching backward starting at the specified index.
- lastIndexOf(String) - Method in class java.lang.StringBuffer
-
- lastIndexOf(String, int) - Method in class java.lang.StringBuffer
-
- lastIndexOf(String) - Method in class java.lang.StringBuilder
-
- lastIndexOf(String, int) - Method in class java.lang.StringBuilder
-
- lastIndexOf(Object) - Method in class java.util.AbstractList
-
Returns the index of the last occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- lastIndexOf(Object) - Method in class java.util.ArrayList
-
Returns the index of the last occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- lastIndexOf(Object) - Method in class java.util.LinkedList
-
Returns the index of the last occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- lastIndexOf(Object) - Method in interface java.util.List
-
Returns the index of the last occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- lastIndexOf(Object) - Method in class java.util.Vector
-
Returns the index of the last occurrence of the specified element
in this vector, or -1 if this vector does not contain the element.
- lastIndexOf(Object, int) - Method in class java.util.Vector
-
Returns the index of the last occurrence of the specified element in
this vector, searching backwards from index, or returns -1 if
the element is not found.
- lastIndexOfSubList(List<?>, List<?>) - Static method in class java.util.Collections
-
Returns the starting position of the last occurrence of the specified
target list within the specified source list, or -1 if there is no such
occurrence.
- lastKey() - Method in interface java.util.SortedMap
-
Returns the last (highest) key currently in this map.
- lastKey() - Method in class java.util.TreeMap
-
- lastModified() - Method in class java.io.File
-
Returns the time that the file denoted by this abstract pathname was
last modified.
- len - Variable in class java.util.zip.InflaterInputStream
-
Length of input buffer.
- length() - Method in class java.io.File
-
Returns the length of the file denoted by this abstract pathname.
- length - Variable in exception java.io.OptionalDataException
-
The number of bytes of primitive data available to be read
in the current buffer.
- length() - Method in interface java.lang.CharSequence
-
Returns the length of this character sequence.
- length() - Method in class java.lang.String
-
Returns the length of this string.
- length() - Method in class java.lang.StringBuffer
-
- LETTER_NUMBER - Static variable in class java.lang.Character
-
General category "Nl" in the Unicode specification.
- Level - Class in java.util.logging
-
The Level class defines a set of standard logging levels that
can be used to control logging output.
- Level(String, int) - Constructor for class java.util.logging.Level
-
Create a named Level with a given integer value.
- Level(String, int, String) - Constructor for class java.util.logging.Level
-
Create a named Level with a given integer value and a
given localization resource name.
- LINE_SEPARATOR - Static variable in class java.lang.Character
-
General category "Zl" in the Unicode specification.
- lineSeparator() - Static method in class java.lang.System
-
Returns the system-dependent line separator string.
- LinkageError - Error in java.lang
-
Subclasses of LinkageError indicate that a class has
some dependency on another class; however, the latter class has
incompatibly changed after the compilation of the former class.
- LinkageError() - Constructor for error java.lang.LinkageError
-
Constructs a LinkageError with no detail message.
- LinkageError(String) - Constructor for error java.lang.LinkageError
-
Constructs a LinkageError with the specified detail
message.
- LinkageError(String, Throwable) - Constructor for error java.lang.LinkageError
-
Constructs a LinkageError with the specified detail
message and cause.
- LinkedHashMap<K,V> - Class in java.util
-
Hash table and linked list implementation of the Map interface,
with predictable iteration order.
- LinkedHashMap(int, float) - Constructor for class java.util.LinkedHashMap
-
Constructs an empty insertion-ordered LinkedHashMap instance
with the specified initial capacity and load factor.
- LinkedHashMap(int) - Constructor for class java.util.LinkedHashMap
-
Constructs an empty insertion-ordered LinkedHashMap instance
with the specified initial capacity and a default load factor (0.75).
- LinkedHashMap() - Constructor for class java.util.LinkedHashMap
-
Constructs an empty insertion-ordered LinkedHashMap instance
with the default initial capacity (16) and load factor (0.75).
- LinkedHashMap(Map<? extends K, ? extends V>) - Constructor for class java.util.LinkedHashMap
-
Constructs an insertion-ordered LinkedHashMap instance with
the same mappings as the specified map.
- LinkedHashMap(int, float, boolean) - Constructor for class java.util.LinkedHashMap
-
Constructs an empty LinkedHashMap instance with the
specified initial capacity, load factor and ordering mode.
- LinkedHashSet<E> - Class in java.util
-
Hash table and linked list implementation of the Set interface,
with predictable iteration order.
- LinkedHashSet(int, float) - Constructor for class java.util.LinkedHashSet
-
Constructs a new, empty linked hash set with the specified initial
capacity and load factor.
- LinkedHashSet(int) - Constructor for class java.util.LinkedHashSet
-
Constructs a new, empty linked hash set with the specified initial
capacity and the default load factor (0.75).
- LinkedHashSet() - Constructor for class java.util.LinkedHashSet
-
Constructs a new, empty linked hash set with the default initial
capacity (16) and load factor (0.75).
- LinkedHashSet(Collection<? extends E>) - Constructor for class java.util.LinkedHashSet
-
Constructs a new linked hash set with the same elements as the
specified collection.
- LinkedList<E> - Class in java.util
-
Doubly-linked list implementation of the List and Deque
interfaces.
- LinkedList() - Constructor for class java.util.LinkedList
-
Constructs an empty list.
- LinkedList(Collection<? extends E>) - Constructor for class java.util.LinkedList
-
Constructs a list containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
- list() - Method in class java.io.File
-
Returns an array of strings naming the files and directories in the
directory denoted by this abstract pathname.
- list(FilenameFilter) - Method in class java.io.File
-
Returns an array of strings naming the files and directories in the
directory denoted by this abstract pathname that satisfy the specified
filter.
- list(Enumeration<T>) - Static method in class java.util.Collections
-
Returns an array list containing the elements returned by the
specified enumeration in the order they are returned by the
enumeration.
- List<E> - Interface in java.util
-
An ordered collection (also known as a sequence).
- listFiles() - Method in class java.io.File
-
Returns an array of abstract pathnames denoting the files in the
directory denoted by this abstract pathname.
- listFiles(FilenameFilter) - Method in class java.io.File
-
Returns an array of abstract pathnames denoting the files and
directories in the directory denoted by this abstract pathname that
satisfy the specified filter.
- listFiles(FileFilter) - Method in class java.io.File
-
Returns an array of abstract pathnames denoting the files and
directories in the directory denoted by this abstract pathname that
satisfy the specified filter.
- listIterator() - Method in class java.util.AbstractList
-
Returns a list iterator over the elements in this list (in proper
sequence).
- listIterator(int) - Method in class java.util.AbstractList
-
Returns a list iterator over the elements in this list (in proper
sequence), starting at the specified position in the list.
- listIterator(int) - Method in class java.util.AbstractSequentialList
-
Returns a list iterator over the elements in this list (in proper
sequence).
- listIterator(int) - Method in class java.util.ArrayList
-
Returns a list iterator over the elements in this list (in proper
sequence), starting at the specified position in the list.
- listIterator() - Method in class java.util.ArrayList
-
Returns a list iterator over the elements in this list (in proper
sequence).
- listIterator(int) - Method in class java.util.LinkedList
-
Returns a list-iterator of the elements in this list (in proper
sequence), starting at the specified position in the list.
- listIterator() - Method in interface java.util.List
-
Returns a list iterator over the elements in this list (in proper
sequence).
- listIterator(int) - Method in interface java.util.List
-
Returns a list iterator over the elements in this list (in proper
sequence), starting at the specified position in the list.
- ListIterator<E> - Interface in java.util
-
An iterator for lists that allows the programmer
to traverse the list in either direction, modify
the list during iteration, and obtain the iterator's
current position in the list.
- listIterator(int) - Method in class java.util.Vector
-
Returns a list iterator over the elements in this list (in proper
sequence), starting at the specified position in the list.
- listIterator() - Method in class java.util.Vector
-
Returns a list iterator over the elements in this list (in proper
sequence).
- listRoots() - Static method in class java.io.File
-
List the available filesystem roots.
- load(Class<S>, ClassLoader) - Static method in class java.util.ServiceLoader
-
Creates a new service loader for the given service type and class
loader.
- load(Class<S>) - Static method in class java.util.ServiceLoader
-
Creates a new service loader for the given service type, using the
current thread's
context class loader.
- loadClass(String) - Method in class java.lang.ClassLoader
-
- loadClass(String, boolean) - Method in class java.lang.ClassLoader
-
- loadInstalled(Class<S>) - Static method in class java.util.ServiceLoader
-
Creates a new service loader for the given service type, using the
extension class loader.
- lock - Variable in class java.io.Reader
-
The object used to synchronize operations on this stream.
- lock - Variable in class java.io.Writer
-
The object used to synchronize operations on this stream.
- log(double) - Static method in class java.lang.Math
-
Returns the natural logarithm (base e) of a double
value.
- log(LogRecord) - Method in class java.util.logging.Logger
-
Log a LogRecord.
- log(Level, String) - Method in class java.util.logging.Logger
-
Log a message, with no arguments.
- log(Level, String, Object) - Method in class java.util.logging.Logger
-
Log a message, with one object parameter.
- log(Level, String, Object[]) - Method in class java.util.logging.Logger
-
Log a message, with an array of object arguments.
- log(Level, String, Throwable) - Method in class java.util.logging.Logger
-
Log a message, with associated Throwable information.
- log10(double) - Static method in class java.lang.Math
-
Returns the base 10 logarithm of a double value.
- Logger - Class in java.util.logging
-
A Logger object is used to log messages for a specific
system or application component.
- Logger(String, String) - Constructor for class java.util.logging.Logger
-
Protected method to construct a logger for a named subsystem.
- logp(Level, String, String, String) - Method in class java.util.logging.Logger
-
Log a message, specifying source class and method,
with no arguments.
- logp(Level, String, String, String, Object) - Method in class java.util.logging.Logger
-
Log a message, specifying source class and method,
with a single object parameter to the log message.
- logp(Level, String, String, String, Object[]) - Method in class java.util.logging.Logger
-
Log a message, specifying source class and method,
with an array of object arguments.
- logp(Level, String, String, String, Throwable) - Method in class java.util.logging.Logger
-
Log a message, specifying source class and method,
with associated Throwable information.
- logrb(Level, String, String, String, String) - Method in class java.util.logging.Logger
-
Log a message, specifying source class, method, and resource bundle name
with no arguments.
- logrb(Level, String, String, String, String, Object) - Method in class java.util.logging.Logger
-
Log a message, specifying source class, method, and resource bundle name,
with a single object parameter to the log message.
- logrb(Level, String, String, String, String, Object[]) - Method in class java.util.logging.Logger
-
Log a message, specifying source class, method, and resource bundle name,
with an array of object arguments.
- logrb(Level, String, String, String, String, Throwable) - Method in class java.util.logging.Logger
-
Log a message, specifying source class, method, and resource bundle name,
with associated Throwable information.
- LogRecord - Class in java.util.logging
-
LogRecord objects are used to pass logging requests between
the logging framework and individual log Handlers.
- LogRecord(Level, String) - Constructor for class java.util.logging.LogRecord
-
Construct a LogRecord with the given level and message values.
- Long - Class in java.lang
-
The Long class wraps a value of the primitive type long in an object.
- Long(long) - Constructor for class java.lang.Long
-
Constructs a newly allocated Long object that
represents the specified long argument.
- Long(String) - Constructor for class java.lang.Long
-
Constructs a newly allocated Long object that
represents the long value indicated by the
String parameter.
- longBitsToDouble(long) - Static method in class java.lang.Double
-
Returns the double value corresponding to a given
bit representation.
- longValue() - Method in class java.lang.Byte
-
Returns the value of this Byte as a
long.
- longValue() - Method in class java.lang.Double
-
Returns the value of this Double as a
long (by casting to type long).
- longValue() - Method in class java.lang.Float
-
Returns value of this Float as a long (by
casting to type long).
- longValue() - Method in class java.lang.Integer
-
Returns the value of this Integer as a
long.
- longValue() - Method in class java.lang.Long
-
Returns the value of this Long as a
long value.
- longValue() - Method in class java.lang.Number
-
Returns the value of the specified number as a long.
- longValue() - Method in class java.lang.Short
-
Returns the value of this Short as a
long.
- longValue() - Method in class java.math.BigDecimal
-
Converts this BigDecimal to a long.
- longValue() - Method in class java.math.BigInteger
-
Converts this BigInteger to a long.
- longValueExact() - Method in class java.math.BigDecimal
-
Converts this BigDecimal to a long, checking
for lost information.
- lookup(Class<?>) - Static method in class java.io.ObjectStreamClass
-
Find the descriptor for a class that can be serialized.
- lookupAny(Class<?>) - Static method in class java.io.ObjectStreamClass
-
Returns the descriptor for any class, regardless of whether it
implements
Serializable.
- lower(E) - Method in interface java.util.NavigableSet
-
Returns the greatest element in this set strictly less than the
given element, or null if there is no such element.
- lower(E) - Method in class java.util.TreeSet
-
- LOWERCASE_LETTER - Static variable in class java.lang.Character
-
General category "Ll" in the Unicode specification.
- lowerEntry(K) - Method in interface java.util.NavigableMap
-
Returns a key-value mapping associated with the greatest key
strictly less than the given key, or null if there is
no such key.
- lowerEntry(K) - Method in class java.util.TreeMap
-
- lowerKey(K) - Method in interface java.util.NavigableMap
-
Returns the greatest key strictly less than the given key, or
null if there is no such key.
- lowerKey(K) - Method in class java.util.TreeMap
-
- lowestOneBit(int) - Static method in class java.lang.Integer
-
Returns an int value with at most a single one-bit, in the
position of the lowest-order ("rightmost") one-bit in the specified
int value.
- lowestOneBit(long) - Static method in class java.lang.Long
-
Returns a long value with at most a single one-bit, in the
position of the lowest-order ("rightmost") one-bit in the specified
long value.
- lowSurrogate(int) - Static method in class java.lang.Character
-