- 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.
- AbstractExecutorService - Class in java.util.concurrent
-
- AbstractExecutorService() - Constructor for class java.util.concurrent.AbstractExecutorService
-
- 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.
- AbstractOwnableSynchronizer - Class in java.util.concurrent.locks
-
A synchronizer that may be exclusively owned by a thread.
- AbstractOwnableSynchronizer() - Constructor for class java.util.concurrent.locks.AbstractOwnableSynchronizer
-
Empty constructor for use by subclasses.
- 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.
- AbstractQueuedLongSynchronizer - Class in java.util.concurrent.locks
-
- AbstractQueuedLongSynchronizer() - Constructor for class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Creates a new AbstractQueuedLongSynchronizer instance
with initial synchronization state of zero.
- AbstractQueuedLongSynchronizer.ConditionObject - Class in java.util.concurrent.locks
-
- AbstractQueuedLongSynchronizer.ConditionObject() - Constructor for class java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
-
Creates a new ConditionObject instance.
- AbstractQueuedSynchronizer - Class in java.util.concurrent.locks
-
Provides a framework for implementing blocking locks and related
synchronizers (semaphores, events, etc) that rely on
first-in-first-out (FIFO) wait queues.
- AbstractQueuedSynchronizer() - Constructor for class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Creates a new AbstractQueuedSynchronizer instance
with initial synchronization state of zero.
- AbstractQueuedSynchronizer.ConditionObject - Class in java.util.concurrent.locks
-
- AbstractQueuedSynchronizer.ConditionObject() - Constructor for class java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
Creates a new ConditionObject instance.
- 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.
- AccessController - Class in java.security
-
The AccessController class is used for access control operations
and decisions.
- 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.
- acquire(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Acquires in exclusive mode, ignoring interrupts.
- acquire(int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Acquires in exclusive mode, ignoring interrupts.
- acquire() - Method in class java.util.concurrent.Semaphore
-
Acquires a permit from this semaphore, blocking until one is
available, or the thread is
interrupted.
- acquire(int) - Method in class java.util.concurrent.Semaphore
-
Acquires the given number of permits from this semaphore,
blocking until all are available,
or the thread is
interrupted.
- acquireInterruptibly(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Acquires in exclusive mode, aborting if interrupted.
- acquireInterruptibly(int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Acquires in exclusive mode, aborting if interrupted.
- acquireShared(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Acquires in shared mode, ignoring interrupts.
- acquireShared(int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Acquires in shared mode, ignoring interrupts.
- acquireSharedInterruptibly(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Acquires in shared mode, aborting if interrupted.
- acquireSharedInterruptibly(int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Acquires in shared mode, aborting if interrupted.
- acquireUninterruptibly() - Method in class java.util.concurrent.Semaphore
-
Acquires a permit from this semaphore, blocking until one is
available.
- acquireUninterruptibly(int) - Method in class java.util.concurrent.Semaphore
-
Acquires the given number of permits from this semaphore,
blocking until all are available.
- 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.
- adapt(Runnable) - Static method in class java.util.concurrent.ForkJoinTask
-
Returns a new
ForkJoinTask that performs the
run
method of the given
Runnable as its action, and returns
a null result upon
ForkJoinTask.join().
- adapt(Runnable, T) - Static method in class java.util.concurrent.ForkJoinTask
-
Returns a new
ForkJoinTask that performs the
run
method of the given
Runnable as its action, and returns
the given result upon
ForkJoinTask.join().
- adapt(Callable<? extends T>) - Static method in class java.util.concurrent.ForkJoinTask
-
Returns a new
ForkJoinTask that performs the
call
method of the given
Callable as its action, and returns
its result upon
ForkJoinTask.join(), translating any checked exceptions
encountered into
RuntimeException.
- 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(int, int) - Method in class java.util.Calendar
-
Adds or subtracts the specified amount of time to the given calendar field,
based on the calendar's rules.
- add(E) - Method in interface java.util.Collection
-
Ensures that this collection contains the specified element (optional
operation).
- add(E) - Method in class java.util.concurrent.ArrayBlockingQueue
-
Inserts the specified element at the tail of this queue if it is
possible to do so immediately without exceeding the queue's capacity,
returning true upon success and throwing an
IllegalStateException if this queue is full.
- add(E) - Method in interface java.util.concurrent.BlockingDeque
-
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 interface java.util.concurrent.BlockingQueue
-
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 class java.util.concurrent.ConcurrentLinkedDeque
-
Inserts the specified element at the tail of this deque.
- add(E) - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
Inserts the specified element at the tail of this queue.
- add(E) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Adds the specified element to this set if it is not already present.
- add(E) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Appends the specified element to the end of this list.
- add(int, E) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Inserts the specified element at the specified position in this
list.
- add(E) - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Adds the specified element to this set if it is not already present.
- add(E) - Method in class java.util.concurrent.DelayQueue
-
Inserts the specified element into this delay queue.
- add(E) - Method in class java.util.concurrent.LinkedBlockingDeque
-
Inserts the specified element at the end of this deque unless it would
violate capacity restrictions.
- add(E) - Method in class java.util.concurrent.LinkedTransferQueue
-
Inserts the specified element at the tail of this queue.
- add(E) - Method in class java.util.concurrent.PriorityBlockingQueue
-
Inserts the specified element into this priority queue.
- 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.concurrent.ConcurrentLinkedDeque
-
Appends all of the elements in the specified collection to the end of
this deque, in the order that they are returned by the specified
collection's iterator.
- addAll(Collection<? extends E>) - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
Appends all of the elements in the specified collection to the end of
this queue, in the order that they are returned by the specified
collection's iterator.
- addAll(Collection<? extends E>) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
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.concurrent.CopyOnWriteArrayList
-
Inserts all of the elements in the specified collection into this
list, starting at the specified position.
- addAll(Collection<? extends E>) - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Adds all of the elements in the specified collection to this set if
they're not already present.
- 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.
- addAllAbsent(Collection<? extends E>) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Appends all of the elements in the specified collection that
are not already contained in this list, to the end of
this list, in the order that they are returned by the
specified collection's iterator.
- addAndGet(int) - Method in class java.util.concurrent.atomic.AtomicInteger
-
Atomically adds the given value to the current value.
- addAndGet(int, int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Atomically adds the given value to the element at index i.
- addAndGet(T, int) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Atomically adds the given value to the current value of the field of
the given object managed by this updater.
- addAndGet(long) - Method in class java.util.concurrent.atomic.AtomicLong
-
Atomically adds the given value to the current value.
- addAndGet(int, long) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Atomically adds the given value to the element at index i.
- addAndGet(T, long) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Atomically adds the given value to the current value of the field of
the given object managed by this updater.
- addAttribute(AttributedCharacterIterator.Attribute, Object) - Method in class java.text.AttributedString
-
Adds an attribute to the entire string.
- addAttribute(AttributedCharacterIterator.Attribute, Object, int, int) - Method in class java.text.AttributedString
-
Adds an attribute to a subrange of the string.
- addAttributes(Map<? extends AttributedCharacterIterator.Attribute, ?>, int, int) - Method in class java.text.AttributedString
-
Adds a set of attributes to a subrange of the string.
- addClasses(String...) - Method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
Adds additional classes
to the list of those that should be included in the generated
JavaScript file.
- addElement(E) - Method in class java.util.Vector
-
Adds the specified component to the end of this vector,
increasing its size by one.
- addExported(String...) - Method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
Adds exported classes or packages.
- 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.concurrent.BlockingDeque
-
Inserts the specified element at the front of this deque if it is
possible to do so immediately without violating capacity restrictions,
throwing an IllegalStateException if no space is currently
available.
- addFirst(E) - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Inserts the specified element at the front of this deque.
- addFirst(E) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- 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.
- addHttpResource(String, String, String[], InputStream) - Method in class org.apidesign.bck2brwsr.launcher.InvocationContext
-
HTTP resource to be available during execution.
- addIfAbsent(E) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Append the element if not present.
- 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.concurrent.BlockingDeque
-
Inserts the specified element at the end of this deque if it is
possible to do so immediately without violating capacity restrictions,
throwing an IllegalStateException if no space is currently
available.
- addLast(E) - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Inserts the specified element at the end of this deque.
- addLast(E) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- 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.
- addRequestProperty(String, String) - Method in class java.net.URLConnection
-
Adds a general request property specified by a
key-value pair.
- addResources(String...) - Method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
These resources should be made available in the compiled file in
binary form.
- addRootClasses(String...) - Method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
Adds additional classes
to the list of those that should be included in the generated
JavaScript file.
- 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.
- after(Object) - Method in class java.util.Calendar
-
Returns whether this Calendar represents a time
after the time represented by the specified
Object.
- after(Date) - Method in class java.util.Date
-
Tests if this date is after the specified date.
- afterExecute(Runnable, Throwable) - Method in class java.util.concurrent.ThreadPoolExecutor
-
Method invoked upon completion of execution of the given Runnable.
- aliases() - Method in class java.nio.charset.Charset
-
Returns a set containing this charset's aliases.
- ALL - Static variable in class java.util.logging.Level
-
ALL indicates that all messages should be logged.
- ALL_STYLES - Static variable in class java.util.Calendar
-
A style specifier for
getDisplayNames indicating names in all styles, such as
"January" and "Jan".
- allOf(Class<E>) - Static method in class java.util.EnumSet
-
Creates an enum set containing all of the elements in the specified
element type.
- allowCoreThreadTimeOut(boolean) - Method in class java.util.concurrent.ThreadPoolExecutor
-
Sets the policy governing whether core threads may time out and
terminate if no tasks arrive within the keep-alive time, being
replaced if needed when new tasks arrive.
- allowsCoreThreadTimeOut() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns true if this pool allows core threads to time out and
terminate if no tasks arrive within the keepAlive time, being
replaced if needed when new tasks arrive.
- allowUserInteraction - Variable in class java.net.URLConnection
-
If true, this URL is being examined in
a context in which it makes sense to allow user interactions such
as popping up an authentication dialog.
- altMetafactory(MethodHandles.Lookup, String, MethodType, Object...) - Static method in class java.lang.invoke.LambdaMetafactory
-
Facilitates the creation of simple "function objects" that implement one
or more interfaces by delegation to a provided
MethodHandle,
after appropriate type adaptation and partial evaluation of arguments.
- AM - Static variable in class java.util.Calendar
-
Value of the
Calendar.AM_PM field indicating the
period of the day from midnight to just before noon.
- AM_PM - Static variable in class java.text.DateFormat.Field
-
Constant identifying the time of day indicator
(e.g.
- AM_PM - Static variable in class java.util.Calendar
-
Field number for get and set indicating
whether the HOUR is before or after noon.
- AM_PM_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for AM_PM field alignment.
- and(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this & val).
- and(BitSet) - Method in class java.util.BitSet
-
Performs a logical AND of this target bit set with the
argument bit set.
- andNot(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this & ~val).
- andNot(BitSet) - Method in class java.util.BitSet
-
Clears all of the bits in this BitSet whose corresponding
bit is set in the specified BitSet.
- 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.
- Annotation - Class in java.text
-
An Annotation object is used as a wrapper for a text attribute value if
the attribute has annotation characteristics.
- Annotation(Object) - Constructor for class java.text.Annotation
-
Constructs an annotation record with the given value, which
may be null.
- AnnotationFormatError - Error in java.lang.annotation
-
Thrown when the annotation parser attempts to read an annotation
from a class file and determines that the annotation is malformed.
- AnnotationFormatError(String) - Constructor for error java.lang.annotation.AnnotationFormatError
-
Constructs a new AnnotationFormatError with the specified
detail message.
- AnnotationFormatError(String, Throwable) - Constructor for error java.lang.annotation.AnnotationFormatError
-
Constructs a new AnnotationFormatError with the specified
detail message and cause.
- AnnotationFormatError(Throwable) - Constructor for error java.lang.annotation.AnnotationFormatError
-
Constructs a new AnnotationFormatError with the specified
cause and a detail message of
(cause == null ? null : cause.toString()) (which
typically contains the class and detail message of cause).
- annotationType() - Method in interface java.lang.annotation.Annotation
-
Returns the annotation type of this annotation.
- annotationType() - Method in exception java.lang.annotation.IncompleteAnnotationException
-
Returns the Class object for the annotation type with the
missing element.
- AnnotationTypeMismatchException - Exception in java.lang.annotation
-
Thrown to indicate that a program has attempted to access an element of
an annotation whose type has changed after the annotation was compiled
(or serialized).
- AnnotationTypeMismatchException(Method, String) - Constructor for exception java.lang.annotation.AnnotationTypeMismatchException
-
Constructs an AnnotationTypeMismatchException for the specified
annotation type element and found data type.
- 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.StringWriter
-
Appends the specified character sequence to this writer.
- append(CharSequence, int, int) - Method in class java.io.StringWriter
-
Appends a subsequence of the specified character sequence to this writer.
- append(char) - Method in class java.io.StringWriter
-
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
-
- appendParameterTypes(Class<?>...) - Method in class java.lang.invoke.MethodType
-
Finds or creates a method type with additional parameter types.
- appendParameterTypes(List<Class<?>>) - Method in class java.lang.invoke.MethodType
-
Finds or creates a method type with additional parameter types.
- appendReplacement(StringBuffer, String) - Method in class java.util.regex.Matcher
-
Implements a non-terminal append-and-replace step.
- appendTail(StringBuffer) - Method in class java.util.regex.Matcher
-
Implements a terminal append-and-replace step.
- applyLocalizedPattern(String) - Method in class java.text.DecimalFormat
-
Apply the given pattern to this Format object.
- applyLocalizedPattern(String) - Method in class java.text.SimpleDateFormat
-
Applies the given localized pattern string to this date format.
- applyPattern(String) - Method in class java.text.ChoiceFormat
-
Sets the pattern.
- applyPattern(String) - Method in class java.text.DecimalFormat
-
Apply the given pattern to this Format object.
- applyPattern(String) - Method in class java.text.MessageFormat
-
Sets the pattern used by this message format.
- applyPattern(String) - Method in class java.text.SimpleDateFormat
-
Applies the given pattern string to this date format.
- APRIL - Static variable in class java.util.Calendar
-
Value of the
Calendar.MONTH field indicating the
fourth month of the year in the Gregorian and Julian calendars.
- areFieldsSet - Variable in class java.util.Calendar
-
True if fields[] are in sync with the currently set time.
- ARGUMENT - Static variable in class java.text.MessageFormat.Field
-
Constant identifying a portion of a message that was generated
from an argument passed into formatToCharacterIterator.
- 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.
- ArrayBlockingQueue<E> - Class in java.util.concurrent
-
- ArrayBlockingQueue(int) - Constructor for class java.util.concurrent.ArrayBlockingQueue
-
Creates an ArrayBlockingQueue with the given (fixed)
capacity and default access policy.
- ArrayBlockingQueue(int, boolean) - Constructor for class java.util.concurrent.ArrayBlockingQueue
-
Creates an ArrayBlockingQueue with the given (fixed)
capacity and the specified access policy.
- ArrayBlockingQueue(int, boolean, Collection<? extends E>) - Constructor for class java.util.concurrent.ArrayBlockingQueue
-
Creates an ArrayBlockingQueue with the given (fixed)
capacity, the specified access policy and initially containing the
elements of the given collection,
added in traversal order of the collection's iterator.
- 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.
- arrive() - Method in class java.util.concurrent.Phaser
-
Arrives at this phaser, without waiting for others to arrive.
- arriveAndAwaitAdvance() - Method in class java.util.concurrent.Phaser
-
Arrives at this phaser and awaits others.
- arriveAndDeregister() - Method in class java.util.concurrent.Phaser
-
Arrives at this phaser and deregisters from it without waiting
for others to arrive.
- asCollector(Class<?>, int) - Method in class java.lang.invoke.MethodHandle
-
Makes an array-collecting method handle, which accepts a given number of trailing
positional arguments and collects them into an array argument.
- asFixedArity() - Method in class java.lang.invoke.MethodHandle
-
Makes a fixed arity method handle which is otherwise
equivalent to the current method handle.
- 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.
- asSpreader(Class<?>, int) - Method in class java.lang.invoke.MethodHandle
-
Makes an array-spreading method handle, which accepts a trailing array argument
and spreads its elements as positional arguments.
- 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.
- asType(MethodType) - Method in class java.lang.invoke.MethodHandle
-
Produces an adapter method handle which adapts the type of the
current method handle to a new type.
- asVarargsCollector(Class<?>) - Method in class java.lang.invoke.MethodHandle
-
Makes a variable arity adapter which is able to accept
any number of trailing positional arguments and collect them
into an array argument.
- 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).
- AtomicBoolean - Class in java.util.concurrent.atomic
-
A boolean value that may be updated atomically.
- AtomicBoolean(boolean) - Constructor for class java.util.concurrent.atomic.AtomicBoolean
-
Creates a new AtomicBoolean with the given initial value.
- AtomicBoolean() - Constructor for class java.util.concurrent.atomic.AtomicBoolean
-
Creates a new AtomicBoolean with initial value false.
- AtomicInteger - Class in java.util.concurrent.atomic
-
An int value that may be updated atomically.
- AtomicInteger(int) - Constructor for class java.util.concurrent.atomic.AtomicInteger
-
Creates a new AtomicInteger with the given initial value.
- AtomicInteger() - Constructor for class java.util.concurrent.atomic.AtomicInteger
-
Creates a new AtomicInteger with initial value 0.
- AtomicIntegerArray - Class in java.util.concurrent.atomic
-
An int array in which elements may be updated atomically.
- AtomicIntegerArray(int) - Constructor for class java.util.concurrent.atomic.AtomicIntegerArray
-
Creates a new AtomicIntegerArray of the given length, with all
elements initially zero.
- AtomicIntegerArray(int[]) - Constructor for class java.util.concurrent.atomic.AtomicIntegerArray
-
Creates a new AtomicIntegerArray with the same length as, and
all elements copied from, the given array.
- AtomicIntegerFieldUpdater<T> - Class in java.util.concurrent.atomic
-
A reflection-based utility that enables atomic updates to
designated volatile int fields of designated classes.
- AtomicIntegerFieldUpdater() - Constructor for class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Protected do-nothing constructor for use by subclasses.
- AtomicLong - Class in java.util.concurrent.atomic
-
A long value that may be updated atomically.
- AtomicLong(long) - Constructor for class java.util.concurrent.atomic.AtomicLong
-
Creates a new AtomicLong with the given initial value.
- AtomicLong() - Constructor for class java.util.concurrent.atomic.AtomicLong
-
Creates a new AtomicLong with initial value 0.
- AtomicLongArray - Class in java.util.concurrent.atomic
-
A long array in which elements may be updated atomically.
- AtomicLongArray(int) - Constructor for class java.util.concurrent.atomic.AtomicLongArray
-
Creates a new AtomicLongArray of the given length, with all
elements initially zero.
- AtomicLongArray(long[]) - Constructor for class java.util.concurrent.atomic.AtomicLongArray
-
Creates a new AtomicLongArray with the same length as, and
all elements copied from, the given array.
- AtomicLongFieldUpdater<T> - Class in java.util.concurrent.atomic
-
A reflection-based utility that enables atomic updates to
designated volatile long fields of designated classes.
- AtomicLongFieldUpdater() - Constructor for class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Protected do-nothing constructor for use by subclasses.
- AtomicReference<V> - Class in java.util.concurrent.atomic
-
An object reference that may be updated atomically.
- AtomicReference(V) - Constructor for class java.util.concurrent.atomic.AtomicReference
-
Creates a new AtomicReference with the given initial value.
- AtomicReference() - Constructor for class java.util.concurrent.atomic.AtomicReference
-
Creates a new AtomicReference with null initial value.
- AtomicReferenceArray<E> - Class in java.util.concurrent.atomic
-
An array of object references in which elements may be updated
atomically.
- AtomicReferenceArray(int) - Constructor for class java.util.concurrent.atomic.AtomicReferenceArray
-
Creates a new AtomicReferenceArray of the given length, with all
elements initially null.
- AtomicReferenceArray(E[]) - Constructor for class java.util.concurrent.atomic.AtomicReferenceArray
-
Creates a new AtomicReferenceArray with the same length as, and
all elements copied from, the given array.
- AtomicReferenceFieldUpdater<T,V> - Class in java.util.concurrent.atomic
-
A reflection-based utility that enables atomic updates to
designated volatile reference fields of designated
classes.
- AtomicReferenceFieldUpdater() - Constructor for class java.util.concurrent.atomic.AtomicReferenceFieldUpdater
-
Protected do-nothing constructor for use by subclasses.
- AttributedCharacterIterator - Interface in java.text
-
An AttributedCharacterIterator allows iteration through both text and
related attribute information.
- AttributedCharacterIterator.Attribute - Class in java.text
-
Defines attribute keys that are used to identify text attributes.
- AttributedCharacterIterator.Attribute(String) - Constructor for class java.text.AttributedCharacterIterator.Attribute
-
Constructs an Attribute with the given name.
- AttributedString - Class in java.text
-
An AttributedString holds text and related attribute information.
- AttributedString(String) - Constructor for class java.text.AttributedString
-
Constructs an AttributedString instance with the given text.
- AttributedString(String, Map<? extends AttributedCharacterIterator.Attribute, ?>) - Constructor for class java.text.AttributedString
-
Constructs an AttributedString instance with the given text and attributes.
- AttributedString(AttributedCharacterIterator) - Constructor for class java.text.AttributedString
-
Constructs an AttributedString instance with the given attributed
text represented by AttributedCharacterIterator.
- AttributedString(AttributedCharacterIterator, int, int) - Constructor for class java.text.AttributedString
-
Constructs an AttributedString instance with the subrange of
the given attributed text represented by
AttributedCharacterIterator.
- AttributedString(AttributedCharacterIterator, int, int, AttributedCharacterIterator.Attribute[]) - Constructor for class java.text.AttributedString
-
Constructs an AttributedString instance with the subrange of
the given attributed text represented by
AttributedCharacterIterator.
- AUGUST - Static variable in class java.util.Calendar
-
Value of the
Calendar.MONTH field indicating the
eighth month of the year in the Gregorian and Julian calendars.
- AutoCloseable - Interface in java.lang
-
A resource that must be closed when it is no longer needed.
- available() - Method in class java.io.BufferedInputStream
-
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.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.FileInputStream
-
Returns an estimate of the number of remaining 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.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 class java.io.LineNumberInputStream
-
Deprecated.
Returns the number of bytes that can be read from this input
stream without blocking.
- 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.
- availableCharsets() - Static method in class java.nio.charset.Charset
-
Constructs a sorted map from canonical charset names to charset objects.
- availablePermits() - Method in class java.util.concurrent.Semaphore
-
Returns the current number of permits available in this semaphore.
- averageBytesPerChar() - Method in class java.nio.charset.CharsetEncoder
-
Returns the average number of bytes that will be produced for each
character of input.
- averageCharsPerByte() - Method in class java.nio.charset.CharsetDecoder
-
Returns the average number of characters that will be produced for each
byte of input.
- await() - Method in class java.util.concurrent.CountDownLatch
-
Causes the current thread to wait until the latch has counted down to
zero, unless the thread is
interrupted.
- await(long, TimeUnit) - Method in class java.util.concurrent.CountDownLatch
-
Causes the current thread to wait until the latch has counted down to
zero, unless the thread is
interrupted,
or the specified waiting time elapses.
- await() - Method in class java.util.concurrent.CyclicBarrier
-
Waits until all
parties have invoked
await on this barrier.
- await(long, TimeUnit) - Method in class java.util.concurrent.CyclicBarrier
-
Waits until all
parties have invoked
await on this barrier, or the specified waiting time elapses.
- await() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
-
Implements interruptible condition wait.
- await(long, TimeUnit) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
-
Implements timed condition wait.
- await() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
Implements interruptible condition wait.
- await(long, TimeUnit) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
Implements timed condition wait.
- await() - Method in interface java.util.concurrent.locks.Condition
-
Causes the current thread to wait until it is signalled or
interrupted.
- await(long, TimeUnit) - Method in interface java.util.concurrent.locks.Condition
-
Causes the current thread to wait until it is signalled or interrupted,
or the specified waiting time elapses.
- awaitAdvance(int) - Method in class java.util.concurrent.Phaser
-
Awaits the phase of this phaser to advance from the given phase
value, returning immediately if the current phase is not equal
to the given phase value or this phaser is terminated.
- awaitAdvanceInterruptibly(int) - Method in class java.util.concurrent.Phaser
-
Awaits the phase of this phaser to advance from the given phase
value, throwing InterruptedException if interrupted
while waiting, or returning immediately if the current phase is
not equal to the given phase value or this phaser is
terminated.
- awaitAdvanceInterruptibly(int, long, TimeUnit) - Method in class java.util.concurrent.Phaser
-
Awaits the phase of this phaser to advance from the given phase
value or the given timeout to elapse, throwing InterruptedException if interrupted while waiting, or
returning immediately if the current phase is not equal to the
given phase value or this phaser is terminated.
- awaitNanos(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
-
Implements timed condition wait.
- awaitNanos(long) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
Implements timed condition wait.
- awaitNanos(long) - Method in interface java.util.concurrent.locks.Condition
-
Causes the current thread to wait until it is signalled or interrupted,
or the specified waiting time elapses.
- awaitTermination(long, TimeUnit) - Method in interface java.util.concurrent.ExecutorService
-
Blocks until all tasks have completed execution after a shutdown
request, or the timeout occurs, or the current thread is
interrupted, whichever happens first.
- awaitTermination(long, TimeUnit) - Method in class java.util.concurrent.ForkJoinPool
-
Blocks until all tasks have completed execution after a shutdown
request, or the timeout occurs, or the current thread is
interrupted, whichever happens first.
- awaitTermination(long, TimeUnit) - Method in class java.util.concurrent.ThreadPoolExecutor
-
- awaitUninterruptibly() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
-
Implements uninterruptible condition wait.
- awaitUninterruptibly() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
Implements uninterruptible condition wait.
- awaitUninterruptibly() - Method in interface java.util.concurrent.locks.Condition
-
Causes the current thread to wait until it is signalled.
- awaitUntil(Date) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
-
Implements absolute timed condition wait.
- awaitUntil(Date) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
Implements absolute timed condition wait.
- awaitUntil(Date) - Method in interface java.util.concurrent.locks.Condition
-
Causes the current thread to wait until it is signalled or interrupted,
or the specified deadline elapses.
- calendar - Variable in class java.text.DateFormat
-
The
Calendar instance used for calculating the date-time fields
and the instant of time.
- Calendar - Class in java.util
-
The
Calendar class is an abstract class that provides methods
for converting between a specific instant in time and a set of
calendar fields such as
YEAR,
MONTH,
DAY_OF_MONTH,
HOUR, and so on, and for
manipulating the calendar fields, such as getting the date of the next
week.
- Calendar() - Constructor for class java.util.Calendar
-
Constructs a Calendar with the default time zone
and locale.
- Calendar(TimeZone, Locale) - Constructor for class java.util.Calendar
-
Constructs a calendar with the specified time zone and locale.
- 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.
- callable(Runnable, T) - Static method in class java.util.concurrent.Executors
-
Returns a
Callable object that, when
called, runs the given task and returns the given result.
- callable(Runnable) - Static method in class java.util.concurrent.Executors
-
Returns a
Callable object that, when
called, runs the given task and returns
null.
- callable(PrivilegedAction<?>) - Static method in class java.util.concurrent.Executors
-
Returns a
Callable object that, when
called, runs the given privileged action and returns its result.
- callable(PrivilegedExceptionAction<?>) - Static method in class java.util.concurrent.Executors
-
Returns a
Callable object that, when
called, runs the given privileged exception action and returns
its result.
- CallSite - Class in java.lang.invoke
-
A
CallSite is a holder for a variable
MethodHandle,
which is called its
target.
- CANADA - Static variable in class java.util.Locale
-
Useful constant for country.
- CANADA_FRENCH - Static variable in class java.util.Locale
-
Useful constant for country.
- cancel(boolean) - Method in class java.util.concurrent.ForkJoinTask
-
Attempts to cancel execution of this task.
- cancel(boolean) - Method in interface java.util.concurrent.Future
-
Attempts to cancel execution of this task.
- cancel(boolean) - Method in class java.util.concurrent.FutureTask
-
- cancel() - Method in class java.util.Timer
-
Terminates this timer, discarding any currently scheduled tasks.
- cancel() - Method in class java.util.TimerTask
-
Cancels this timer task.
- CancellationException - Exception in java.util.concurrent
-
Exception indicating that the result of a value-producing task,
such as a
FutureTask, cannot be retrieved because the task
was cancelled.
- CancellationException() - Constructor for exception java.util.concurrent.CancellationException
-
Constructs a CancellationException with no detail message.
- CancellationException(String) - Constructor for exception java.util.concurrent.CancellationException
-
Constructs a CancellationException with the specified detail
message.
- canEncode() - Method in class java.nio.charset.Charset
-
Tells whether or not this charset supports encoding.
- canExecute() - Method in class java.io.File
-
Tests whether the application can execute the file denoted by this
abstract pathname.
- CANON_EQ - Static variable in class java.util.regex.Pattern
-
Enables canonical equivalence.
- 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.
- cardinality() - Method in class java.util.BitSet
-
Returns the number of bits set to true in this BitSet.
- CASE_INSENSITIVE - Static variable in class java.util.regex.Pattern
-
Enables case-insensitive matching.
- 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 class java.util.concurrent.ConcurrentSkipListSet
-
- 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 class java.util.concurrent.ConcurrentSkipListMap
-
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 entry.
- 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 class java.util.concurrent.ConcurrentSkipListMap
-
- 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
-
- changeParameterType(int, Class<?>) - Method in class java.lang.invoke.MethodType
-
Finds or creates a method type with a single different parameter type.
- changeReturnType(Class<?>) - Method in class java.lang.invoke.MethodType
-
Finds or creates a method type with a different return type.
- 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.
- CharacterIterator - Interface in java.text
-
This interface defines a protocol for bidirectional iteration over text.
- 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
-
- CharBuffer - Class in java.nio
-
- CharBuffer() - Constructor for class java.nio.CharBuffer
-
- 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.
- Charset - Class in java.nio.charset
-
A named mapping between sequences of sixteen-bit Unicode
code units and sequences of
bytes.
- Charset(String, String[]) - Constructor for class java.nio.charset.Charset
-
Initializes a new charset with the given canonical name and alias
set.
- charset() - Method in class java.nio.charset.CharsetDecoder
-
Returns the charset that created this decoder.
- charset() - Method in class java.nio.charset.CharsetEncoder
-
Returns the charset that created this encoder.
- CharsetDecoder - Class in java.nio.charset
-
An engine that can transform a sequence of bytes in a specific charset into a sequence of
sixteen-bit Unicode characters.
- CharsetDecoder(Charset, float, float) - Constructor for class java.nio.charset.CharsetDecoder
-
Initializes a new decoder.
- CharsetEncoder - Class in java.nio.charset
-
An engine that can transform a sequence of sixteen-bit Unicode characters into a sequence of
bytes in a specific charset.
- CharsetEncoder(Charset, float, float, byte[]) - Constructor for class java.nio.charset.CharsetEncoder
-
Initializes a new encoder.
- CharsetEncoder(Charset, float, float) - Constructor for class java.nio.charset.CharsetEncoder
-
Initializes a new encoder.
- 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.
- CHINA - Static variable in class java.util.Locale
-
Useful constant for country.
- CHINESE - Static variable in class java.util.Locale
-
Useful constant for language.
- ChoiceFormat - Class in java.text
-
A ChoiceFormat allows you to attach a format to a range of numbers.
- ChoiceFormat(String) - Constructor for class java.text.ChoiceFormat
-
Constructs with limits and corresponding formats based on the pattern.
- ChoiceFormat(double[], String[]) - Constructor for class java.text.ChoiceFormat
-
Constructs with the limits and the corresponding formats.
- 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.
- ClassValue<T> - Class in java.lang
-
Lazily associate a computed value with (potentially) every type.
- ClassValue() - Constructor for class java.lang.ClassValue
-
Sole constructor.
- 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(int) - Method in class java.util.BitSet
-
Sets the bit specified by the index to false.
- clear(int, int) - Method in class java.util.BitSet
-
Sets the bits from the specified fromIndex (inclusive) to the
specified toIndex (exclusive) to false.
- clear() - Method in class java.util.BitSet
-
Sets all of the bits in this BitSet to false.
- clear() - Method in class java.util.Calendar
-
Sets all the calendar field values and the time value
(millisecond offset from the
Epoch) of
this
Calendar undefined.
- clear(int) - Method in class java.util.Calendar
-
Sets the given calendar field value and the time value
(millisecond offset from the
Epoch) of
this
Calendar undefined.
- clear() - Method in interface java.util.Collection
-
Removes all of the elements from this collection (optional operation).
- clear() - Method in class java.util.concurrent.ArrayBlockingQueue
-
Atomically removes all of the elements from this queue.
- clear() - Method in class java.util.concurrent.ConcurrentHashMap
-
- clear() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Removes all of the elements from this deque.
- clear() - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Removes all of the mappings from this map.
- clear() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Removes all of the elements from this set.
- clear() - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Removes all of the elements from this list.
- clear() - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Removes all of the elements from this set.
- clear() - Method in class java.util.concurrent.DelayQueue
-
Atomically removes all of the elements from this delay queue.
- clear() - Method in class java.util.concurrent.LinkedBlockingDeque
-
Atomically removes all of the elements from this deque.
- clear() - Method in class java.util.concurrent.LinkedBlockingQueue
-
Atomically removes all of the elements from this queue.
- clear() - Method in class java.util.concurrent.PriorityBlockingQueue
-
Atomically removes all of the elements from this queue.
- clear() - Method in class java.util.concurrent.SynchronousQueue
-
Does nothing.
- clear() - Method in class java.util.EnumMap
-
Removes all mappings from this map.
- 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.
- clearCache() - Static method in class java.util.ResourceBundle
-
Removes all resource bundles from the cache that have been loaded
using the caller's class loader.
- clearCache(ClassLoader) - Static method in class java.util.ResourceBundle
-
Removes all resource bundles from the cache that have been loaded
using the given class loader.
- 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 interface java.text.CharacterIterator
-
Create a copy of this iterator
- clone() - Method in class java.text.ChoiceFormat
-
Overrides Cloneable
- clone() - Method in class java.text.DateFormat
-
Overrides Cloneable
- clone() - Method in class java.text.DateFormatSymbols
-
Overrides Cloneable
- clone() - Method in class java.text.DecimalFormat
-
Standard override; no change in semantics.
- clone() - Method in class java.text.DecimalFormatSymbols
-
Standard override.
- clone() - Method in class java.text.Format
-
Creates and returns a copy of this object.
- clone() - Method in class java.text.MessageFormat
-
Creates and returns a copy of this object.
- clone() - Method in class java.text.NumberFormat
-
Overrides Cloneable
- clone() - Method in class java.text.SimpleDateFormat
-
Creates a copy of this SimpleDateFormat.
- 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.BitSet
-
Cloning this BitSet produces a new BitSet
that is equal to it.
- clone() - Method in class java.util.Calendar
-
Creates and returns a copy of this object.
- clone() - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Returns a shallow copy of this ConcurrentSkipListMap
instance.
- clone() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Returns a shallow copy of this ConcurrentSkipListSet
instance.
- clone() - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns a shallow copy of this list.
- clone() - Method in class java.util.Date
-
Return a copy of this object.
- clone() - Method in class java.util.EnumMap
-
Returns a shallow copy of this enum map.
- clone() - Method in class java.util.EnumSet
-
Returns a copy of this set.
- 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.Locale
-
Overrides Cloneable.
- clone() - Method in class java.util.SimpleTimeZone
-
Returns a clone of this SimpleTimeZone instance.
- clone() - Method in class java.util.TimeZone
-
Creates a copy of this TimeZone.
- 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.
- 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.BufferedInputStream
-
Closes this input stream and releases any system resources
associated with the stream.
- 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.FileInputStream
-
Closes this file input stream and releases any system resources
associated with the stream.
- close() - Method in class java.io.FileOutputStream
-
Closes this file output stream and releases any system resources
associated with this stream.
- 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.FilterReader
-
- close() - Method in class java.io.FilterWriter
-
- 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.StringReader
-
Closes the stream and releases any system resources associated with
it.
- close() - Method in class java.io.StringWriter
-
Closing a StringWriter has no effect.
- 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.
- Closeable - Interface in java.io
-
A Closeable is a source or destination of data that can be closed.
- 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.
- COMMENTS - Static variable in class java.util.regex.Pattern
-
Permits whitespace and comments in pattern.
- 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.concurrent.ConcurrentSkipListMap
-
- comparator() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- comparator() - Method in class java.util.concurrent.PriorityBlockingQueue
-
Returns the comparator used to order the elements in this queue,
or
null if this queue uses the
natural ordering of its elements.
- 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.
- compareAndSet(boolean, boolean) - Method in class java.util.concurrent.atomic.AtomicBoolean
-
Atomically sets the value to the given updated value
if the current value == the expected value.
- compareAndSet(int, int) - Method in class java.util.concurrent.atomic.AtomicInteger
-
Atomically sets the value to the given updated value
if the current value == the expected value.
- compareAndSet(int, int, int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Atomically sets the element at position i to the given
updated value if the current value == the expected value.
- compareAndSet(T, int, int) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Atomically sets the field of the given object managed by this updater
to the given updated value if the current value == the
expected value.
- compareAndSet(long, long) - Method in class java.util.concurrent.atomic.AtomicLong
-
Atomically sets the value to the given updated value
if the current value == the expected value.
- compareAndSet(int, long, long) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Atomically sets the element at position i to the given
updated value if the current value == the expected value.
- compareAndSet(T, long, long) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Atomically sets the field of the given object managed by this updater
to the given updated value if the current value == the
expected value.
- compareAndSet(V, V) - Method in class java.util.concurrent.atomic.AtomicReference
-
Atomically sets the value to the given updated value
if the current value == the expected value.
- compareAndSet(int, E, E) - Method in class java.util.concurrent.atomic.AtomicReferenceArray
-
Atomically sets the element at position i to the given
updated value if the current value == the expected value.
- compareAndSet(T, V, V) - Method in class java.util.concurrent.atomic.AtomicReferenceFieldUpdater
-
Atomically sets the field of the given object managed by this updater
to the given updated value if the current value == the
expected value.
- compareAndSetState(long, long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Atomically sets synchronization state to the given updated
value if the current state value equals the expected value.
- compareAndSetState(int, int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Atomically sets synchronization state to the given updated
value if the current state value equals the expected value.
- 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.
- compareTo(Charset) - Method in class java.nio.charset.Charset
-
Compares this charset to another.
- compareTo(Calendar) - Method in class java.util.Calendar
-
Compares the time values (millisecond offsets from the
Epoch) represented by two
Calendar objects.
- compareTo(Date) - Method in class java.util.Date
-
Compares two Dates for ordering.
- compareToIgnoreCase(String) - Method in class java.lang.String
-
Compares two strings lexicographically, ignoring case
differences.
- compile(String) - Static method in class java.util.regex.Pattern
-
Compiles the given regular expression into a pattern.
- compile(String, int) - Static method in class java.util.regex.Pattern
-
Compiles the given regular expression into a pattern with the given
flags.
- complementOf(EnumSet<E>) - Static method in class java.util.EnumSet
-
Creates an enum set with the same element type as the specified enum
set, initially containing all the elements of this type that are
not contained in the specified set.
- complete() - Method in class java.util.Calendar
-
Fills in any unset fields in the calendar fields.
- complete(V) - Method in class java.util.concurrent.ForkJoinTask
-
Completes this task, and if not already aborted or cancelled,
returning the given value as the result of subsequent
invocations of join and related operations.
- completeExceptionally(Throwable) - Method in class java.util.concurrent.ForkJoinTask
-
Completes this task abnormally, and if not already aborted or
cancelled, causes it to throw the given exception upon
join and related operations.
- CompletionService<V> - Interface in java.util.concurrent
-
A service that decouples the production of new asynchronous tasks
from the consumption of the results of completed tasks.
- compute() - Method in class java.util.concurrent.RecursiveAction
-
The main computation performed by this task.
- compute() - Method in class java.util.concurrent.RecursiveTask
-
The main computation performed by this task.
- computeFields() - Method in class java.util.Calendar
-
- computeTime() - Method in class java.util.Calendar
-
- computeValue(Class<?>) - Method in class java.lang.ClassValue
-
Computes the given class's derived value for this ClassValue.
- concat(String) - Method in class java.lang.String
-
Concatenates the specified string to the end of this string.
- ConcurrentHashMap<K,V> - Class in java.util.concurrent
-
A hash table supporting full concurrency of retrievals and adjustable
expected concurrency for updates.
- ConcurrentHashMap(int, float, int) - Constructor for class java.util.concurrent.ConcurrentHashMap
-
Creates a new, empty map with the specified initial
capacity, load factor and concurrency level.
- ConcurrentHashMap(int, float) - Constructor for class java.util.concurrent.ConcurrentHashMap
-
Creates a new, empty map with the specified initial capacity
and load factor and with the default concurrencyLevel (16).
- ConcurrentHashMap(int) - Constructor for class java.util.concurrent.ConcurrentHashMap
-
Creates a new, empty map with the specified initial capacity,
and with default load factor (0.75) and concurrencyLevel (16).
- ConcurrentHashMap() - Constructor for class java.util.concurrent.ConcurrentHashMap
-
Creates a new, empty map with a default initial capacity (16),
load factor (0.75) and concurrencyLevel (16).
- ConcurrentHashMap(Map<? extends K, ? extends V>) - Constructor for class java.util.concurrent.ConcurrentHashMap
-
Creates a new map with the same mappings as the given map.
- ConcurrentLinkedDeque<E> - Class in java.util.concurrent
-
An unbounded concurrent
deque based on linked nodes.
- ConcurrentLinkedDeque() - Constructor for class java.util.concurrent.ConcurrentLinkedDeque
-
Constructs an empty deque.
- ConcurrentLinkedDeque(Collection<? extends E>) - Constructor for class java.util.concurrent.ConcurrentLinkedDeque
-
Constructs a deque initially containing the elements of
the given collection, added in traversal order of the
collection's iterator.
- ConcurrentLinkedQueue<E> - Class in java.util.concurrent
-
An unbounded thread-safe
queue based on linked nodes.
- ConcurrentLinkedQueue() - Constructor for class java.util.concurrent.ConcurrentLinkedQueue
-
Creates a ConcurrentLinkedQueue that is initially empty.
- ConcurrentLinkedQueue(Collection<? extends E>) - Constructor for class java.util.concurrent.ConcurrentLinkedQueue
-
Creates a ConcurrentLinkedQueue
initially containing the elements of the given collection,
added in traversal order of the collection's iterator.
- ConcurrentMap<K,V> - Interface in java.util.concurrent
-
A
Map providing additional atomic
putIfAbsent,
remove, and
replace methods.
- 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 (cause==null ? null : cause.toString()) (which
typically contains the class and detail message of cause.
- ConcurrentModificationException(String, Throwable) - Constructor for exception java.util.ConcurrentModificationException
-
Constructs a new exception with the specified detail message and
cause.
- ConcurrentNavigableMap<K,V> - Interface in java.util.concurrent
-
- ConcurrentSkipListMap<K,V> - Class in java.util.concurrent
-
- ConcurrentSkipListMap() - Constructor for class java.util.concurrent.ConcurrentSkipListMap
-
Constructs a new, empty map, sorted according to the
natural ordering of the keys.
- ConcurrentSkipListMap(Comparator<? super K>) - Constructor for class java.util.concurrent.ConcurrentSkipListMap
-
Constructs a new, empty map, sorted according to the specified
comparator.
- ConcurrentSkipListMap(Map<? extends K, ? extends V>) - Constructor for class java.util.concurrent.ConcurrentSkipListMap
-
Constructs a new map containing the same mappings as the given map,
sorted according to the
natural ordering of
the keys.
- ConcurrentSkipListMap(SortedMap<K, ? extends V>) - Constructor for class java.util.concurrent.ConcurrentSkipListMap
-
Constructs a new map containing the same mappings and using the
same ordering as the specified sorted map.
- ConcurrentSkipListSet<E> - Class in java.util.concurrent
-
- ConcurrentSkipListSet() - Constructor for class java.util.concurrent.ConcurrentSkipListSet
-
Constructs a new, empty set that orders its elements according to
their
natural ordering.
- ConcurrentSkipListSet(Comparator<? super E>) - Constructor for class java.util.concurrent.ConcurrentSkipListSet
-
Constructs a new, empty set that orders its elements according to
the specified comparator.
- ConcurrentSkipListSet(Collection<? extends E>) - Constructor for class java.util.concurrent.ConcurrentSkipListSet
-
Constructs a new set containing the elements in the specified
collection, that orders its elements according to their
natural ordering.
- ConcurrentSkipListSet(SortedSet<E>) - Constructor for class java.util.concurrent.ConcurrentSkipListSet
-
Constructs a new set containing the same elements and using the
same ordering as the specified sorted set.
- Condition - Interface in java.util.concurrent.locks
-
Condition factors out the
Object monitor
methods (
wait,
notify
and
notifyAll) into distinct objects to
give the effect of having multiple wait-sets per object, by
combining them with the use of arbitrary
Lock implementations.
- 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.
- connect() - Method in class java.net.URLConnection
-
Opens a communications link to the resource referenced by this
URL, if such a connection has not already been established.
- connected - Variable in class java.net.URLConnection
-
If false, this connection object has not created a
communications link to the specified URL.
- CONNECTOR_PUNCTUATION - Static variable in class java.lang.Character
-
General category "Pc" in the Unicode specification.
- Console - Class in org.apidesign.bck2brwsr.launcher.impl
-
- 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(Charset) - Method in class java.nio.charset.Charset
-
Tells whether or not this charset contains the given charset.
- 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 class java.util.concurrent.ArrayBlockingQueue
-
Returns true if this queue contains the specified element.
- contains(Object) - Method in interface java.util.concurrent.BlockingDeque
-
Returns true if this deque contains the specified element.
- contains(Object) - Method in interface java.util.concurrent.BlockingQueue
-
Returns true if this queue contains the specified element.
- contains(Object) - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Returns true if this deque contains at least one
element e such that o.equals(e).
- contains(Object) - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
Returns true if this queue contains the specified element.
- contains(Object) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Returns true if this set contains the specified element.
- contains(Object) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns true if this list contains the specified element.
- contains(Object) - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Returns true if this set contains the specified element.
- contains(Object) - Method in class java.util.concurrent.LinkedBlockingDeque
-
Returns true if this deque contains the specified element.
- contains(Object) - Method in class java.util.concurrent.LinkedBlockingQueue
-
Returns true if this queue contains the specified element.
- contains(Object) - Method in class java.util.concurrent.LinkedTransferQueue
-
Returns true if this queue contains the specified element.
- contains(Object) - Method in class java.util.concurrent.PriorityBlockingQueue
-
Returns true if this queue contains the specified element.
- contains(Object) - Method in class java.util.concurrent.SynchronousQueue
-
Always returns false.
- 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 class java.util.concurrent.CopyOnWriteArrayList
-
Returns true if this list contains all of the elements of the
specified collection.
- containsAll(Collection<?>) - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Returns true if this set contains all of the elements of the
specified collection.
- containsAll(Collection<?>) - Method in class java.util.concurrent.SynchronousQueue
-
Returns false unless the given collection is empty.
- 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.concurrent.ConcurrentHashMap
-
- containsKey(Object) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Returns true if this map contains a mapping for the specified
key.
- containsKey(Object) - Method in class java.util.EnumMap
-
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(String) - Method in class java.util.ResourceBundle
-
Determines whether the given key is contained in
this ResourceBundle or its parent bundles.
- 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.concurrent.ConcurrentHashMap
-
- containsValue(Object) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Returns true if this map maps one or more keys to the
specified value.
- containsValue(Object) - Method in class java.util.EnumMap
-
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.
- copyOf(EnumSet<E>) - Static method in class java.util.EnumSet
-
Creates an enum set with the same element type as the specified enum
set, initially containing the same elements (if any).
- copyOf(Collection<E>) - Static method in class java.util.EnumSet
-
Creates an enum set initialized from the specified collection.
- 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.
- CopyOnWriteArrayList<E> - Class in java.util.concurrent
-
A thread-safe variant of
ArrayList in which all mutative
operations (
add,
set, and so on) are implemented by
making a fresh copy of the underlying array.
- CopyOnWriteArrayList() - Constructor for class java.util.concurrent.CopyOnWriteArrayList
-
Creates an empty list.
- CopyOnWriteArrayList(Collection<? extends E>) - Constructor for class java.util.concurrent.CopyOnWriteArrayList
-
Creates a list containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
- CopyOnWriteArrayList(E[]) - Constructor for class java.util.concurrent.CopyOnWriteArrayList
-
Creates a list holding a copy of the given array.
- CopyOnWriteArraySet<E> - Class in java.util.concurrent
-
- CopyOnWriteArraySet() - Constructor for class java.util.concurrent.CopyOnWriteArraySet
-
Creates an empty set.
- CopyOnWriteArraySet(Collection<? extends E>) - Constructor for class java.util.concurrent.CopyOnWriteArraySet
-
Creates a set containing all of the elements of the specified
collection.
- 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.BufferedInputStream
-
The index one greater than the index of the last valid byte in
the buffer.
- 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.
- countDown() - Method in class java.util.concurrent.CountDownLatch
-
Decrements the count of the latch, releasing all waiting threads if
the count reaches zero.
- CountDownLatch - Class in java.util.concurrent
-
A synchronization aid that allows one or more threads to wait until
a set of operations being performed in other threads completes.
- CountDownLatch(int) - Constructor for class java.util.concurrent.CountDownLatch
-
Constructs a CountDownLatch initialized with the given count.
- 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.
- create(String) - Static method in class java.net.URI
-
Creates a URI by parsing the given string.
- createBrowser(String) - Static method in class org.apidesign.bck2brwsr.launcher.Launcher
-
Creates launcher that is using external browser.
- createBrowser(String, ClassLoader, String) - Static method in class org.apidesign.bck2brwsr.launcher.Launcher
-
Creates launcher that is using external browser.
- createInvocation(Class<?>, String) - Method in class org.apidesign.bck2brwsr.launcher.Launcher
-
Builds an invocation context.
- createJavaScript() - Static method in class org.apidesign.bck2brwsr.launcher.Launcher
-
Creates launcher that uses internal JavaScript engine (Rhino).
- 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.
- CURRENCY - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the currency field.
- Currency - Class in java.util
-
Represents a currency.
- CURRENCY_SYMBOL - Static variable in class java.lang.Character
-
General category "Sc" in the Unicode specification.
- current() - Method in interface java.text.CharacterIterator
-
Gets the character at the current position (as returned by getIndex()).
- current() - Static method in class java.util.concurrent.ThreadLocalRandom
-
Returns the current thread's ThreadLocalRandom.
- 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
-
- CyclicBarrier - Class in java.util.concurrent
-
A synchronization aid that allows a set of threads to all wait for
each other to reach a common barrier point.
- CyclicBarrier(int, Runnable) - Constructor for class java.util.concurrent.CyclicBarrier
-
Creates a new CyclicBarrier that will trip when the
given number of parties (threads) are waiting upon it, and which
will execute the given barrier action when the barrier is tripped,
performed by the last thread entering the barrier.
- CyclicBarrier(int) - Constructor for class java.util.concurrent.CyclicBarrier
-
Creates a new CyclicBarrier that will trip when the
given number of parties (threads) are waiting upon it, and
does not perform a predefined action when the barrier is tripped.
- DASH_PUNCTUATION - Static variable in class java.lang.Character
-
General category "Pd" in the Unicode specification.
- 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.
- DATE - Static variable in class java.util.Calendar
-
Field number for get and set indicating the
day of the month.
- Date - Class in java.util
-
The class Date represents a specific instant
in time, with millisecond precision.
- Date() - Constructor for class java.util.Date
-
Allocates a Date object and initializes it so that
it represents the time at which it was allocated, measured to the
nearest millisecond.
- Date(long) - Constructor for class java.util.Date
-
Allocates a Date object and initializes it to
represent the specified number of milliseconds since the
standard base time known as "the epoch", namely January 1,
1970, 00:00:00 GMT.
- Date(int, int, int) - Constructor for class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.set(year + 1900, month, date)
or GregorianCalendar(year + 1900, month, date).
- Date(int, int, int, int, int) - Constructor for class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.set(year + 1900, month, date,
hrs, min) or GregorianCalendar(year + 1900,
month, date, hrs, min).
- Date(int, int, int, int, int, int) - Constructor for class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.set(year + 1900, month, date,
hrs, min, sec) or GregorianCalendar(year + 1900,
month, date, hrs, min, sec).
- Date(String) - Constructor for class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by DateFormat.parse(String s).
- DATE_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for DATE field alignment.
- DateFormat - Class in java.text
-
DateFormat is an abstract class for date/time formatting subclasses which
formats and parses dates or time in a language-independent manner.
- DateFormat() - Constructor for class java.text.DateFormat
-
Create a new date format.
- DateFormat.Field - Class in java.text
-
Defines constants that are used as attribute keys in the
AttributedCharacterIterator returned
from DateFormat.formatToCharacterIterator and as
field identifiers in FieldPosition.
- DateFormat.Field(String, int) - Constructor for class java.text.DateFormat.Field
-
Creates a Field.
- DateFormatSymbols - Class in java.text
-
DateFormatSymbols is a public class for encapsulating
localizable date-time formatting data, such as the names of the
months, the names of the days of the week, and the time zone data.
- DateFormatSymbols() - Constructor for class java.text.DateFormatSymbols
-
Construct a DateFormatSymbols object by loading format data from
resources for the default locale.
- DateFormatSymbols(Locale) - Constructor for class java.text.DateFormatSymbols
-
Construct a DateFormatSymbols object by loading format data from
resources for the given locale.
- DAY_OF_MONTH - Static variable in class java.text.DateFormat.Field
-
Constant identifying the day of month field.
- DAY_OF_MONTH - Static variable in class java.util.Calendar
-
Field number for get and set indicating the
day of the month.
- DAY_OF_WEEK - Static variable in class java.text.DateFormat.Field
-
Constant identifying the day of week field.
- DAY_OF_WEEK - Static variable in class java.util.Calendar
-
Field number for get and set indicating the day
of the week.
- DAY_OF_WEEK_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for DAY_OF_WEEK field alignment.
- DAY_OF_WEEK_IN_MONTH - Static variable in class java.text.DateFormat.Field
-
Constant identifying the day of week field.
- DAY_OF_WEEK_IN_MONTH - Static variable in class java.util.Calendar
-
Field number for get and set indicating the
ordinal number of the day of the week within the current month.
- DAY_OF_WEEK_IN_MONTH_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for DAY_OF_WEEK_IN_MONTH field alignment.
- DAY_OF_YEAR - Static variable in class java.text.DateFormat.Field
-
Constant identifying the day of year field.
- DAY_OF_YEAR - Static variable in class java.util.Calendar
-
Field number for get and set indicating the day
number within the current year.
- DAY_OF_YEAR_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for DAY_OF_YEAR field alignment.
- DECEMBER - Static variable in class java.util.Calendar
-
Value of the
Calendar.MONTH field indicating the
twelfth month of the year in the Gregorian and Julian calendars.
- 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.
- DECIMAL_SEPARATOR - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the decimal separator field.
- DecimalFormat - Class in java.text
-
DecimalFormat is a concrete subclass of
NumberFormat that formats decimal numbers.
- DecimalFormat() - Constructor for class java.text.DecimalFormat
-
Creates a DecimalFormat using the default pattern and symbols
for the default locale.
- DecimalFormat(String) - Constructor for class java.text.DecimalFormat
-
Creates a DecimalFormat using the given pattern and the symbols
for the default locale.
- DecimalFormat(String, DecimalFormatSymbols) - Constructor for class java.text.DecimalFormat
-
Creates a DecimalFormat using the given pattern and symbols.
- DecimalFormatSymbols - Class in java.text
-
This class represents the set of symbols (such as the decimal separator,
the grouping separator, and so on) needed by DecimalFormat
to format numbers.
- DecimalFormatSymbols() - Constructor for class java.text.DecimalFormatSymbols
-
Create a DecimalFormatSymbols object for the default locale.
- DecimalFormatSymbols(Locale) - Constructor for class java.text.DecimalFormatSymbols
-
Create a DecimalFormatSymbols object for the given locale.
- 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.
- decorateTask(Runnable, RunnableScheduledFuture<V>) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Modifies or replaces the task used to execute a runnable.
- decorateTask(Callable<V>, RunnableScheduledFuture<V>) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Modifies or replaces the task used to execute a callable.
- decrementAndGet() - Method in class java.util.concurrent.atomic.AtomicInteger
-
Atomically decrements by one the current value.
- decrementAndGet(int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Atomically decrements by one the element at index i.
- decrementAndGet(T) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Atomically decrements by one the current value of the field of the
given object managed by this updater.
- decrementAndGet() - Method in class java.util.concurrent.atomic.AtomicLong
-
Atomically decrements by one the current value.
- decrementAndGet(int) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Atomically decrements by one the element at index i.
- decrementAndGet(T) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Atomically decrements by one the current value of the field of the
given object managed by this updater.
- 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.
- DEFAULT - Static variable in class java.text.DateFormat
-
Constant for default style pattern.
- defaultCharset() - Static method in class java.nio.charset.Charset
-
Returns the default charset of this Java virtual machine.
- defaulted(String) - Method in class java.io.ObjectInputStream.GetField
-
Return true if the named field is defaulted and has no value in this
stream.
- defaultForkJoinWorkerThreadFactory - Static variable in class java.util.concurrent.ForkJoinPool
-
Creates a new ForkJoinWorkerThread.
- defaultReadObject() - Method in class java.io.ObjectInputStream
-
Read the non-static and non-transient fields of the current class from
this stream.
- defaults - Variable in class java.util.Properties
-
A property list that contains default values for any keys not
found in this property list.
- defaultThreadFactory() - Static method in class java.util.concurrent.Executors
-
Returns a default thread factory used to create new threads.
- 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.
- Delayed - Interface in java.util.concurrent
-
A mix-in style interface for marking objects that should be
acted upon after a given delay.
- DelayQueue<E extends Delayed> - Class in java.util.concurrent
-
An unbounded
blocking queue of
Delayed elements, in which an element can only be taken
when its delay has expired.
- DelayQueue() - Constructor for class java.util.concurrent.DelayQueue
-
Creates a new DelayQueue that is initially empty.
- DelayQueue(Collection<? extends E>) - Constructor for class java.util.concurrent.DelayQueue
-
Creates a
DelayQueue initially containing the elements of the
given collection of
Delayed instances.
- 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 class java.util.concurrent.ConcurrentLinkedDeque
-
Returns an iterator over the elements in this deque in reverse
sequential order.
- descendingIterator() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Returns an iterator over the elements in this set in descending order.
- descendingIterator() - Method in class java.util.concurrent.LinkedBlockingDeque
-
Returns an iterator over the elements in this deque in reverse
sequential order.
- 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.concurrent.ConcurrentNavigableMap
-
Returns a reverse order
NavigableSet view of the keys contained in this map.
- descendingKeySet() - Method in class java.util.concurrent.ConcurrentSkipListMap
-
- 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.concurrent.ConcurrentNavigableMap
-
Returns a reverse order view of the mappings contained in this map.
- descendingMap() - Method in class java.util.concurrent.ConcurrentSkipListMap
-
- 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 class java.util.concurrent.ConcurrentSkipListSet
-
Returns a reverse order view of the elements contained in this set.
- 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.
- detectedCharset() - Method in class java.nio.charset.CharsetDecoder
-
Retrieves the charset that was detected by this
decoder (optional operation).
- 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.
- displayName() - Method in class java.nio.charset.Charset
-
Returns this charset's human-readable name for the default locale.
- displayName(Locale) - Method in class java.nio.charset.Charset
-
Returns this charset's human-readable name for the given locale.
- 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.
- doInput - Variable in class java.net.URLConnection
-
This variable is set by the setDoInput method.
- DONE - Static variable in interface java.text.CharacterIterator
-
Constant that is returned when the iterator has reached either the end
or the beginning of the text.
- done() - Method in class java.util.concurrent.FutureTask
-
Protected method invoked when this task transitions to state
isDone (whether normally or via cancellation).
- doOutput - Variable in class java.net.URLConnection
-
This variable is set by the setDoOutput method.
- doPrivileged(PrivilegedAction<T>) - Static method in class java.security.AccessController
-
Performs the specified PrivilegedAction with privileges
enabled.
- doPrivileged(PrivilegedExceptionAction<T>) - Static method in class java.security.AccessController
-
Performs the specified PrivilegedExceptionAction with
privileges enabled.
- doPrivilegedWithCombiner(PrivilegedAction<T>) - Static method in class java.security.AccessController
-
Performs the specified PrivilegedAction with privileges
enabled.
- doPrivilegedWithCombiner(PrivilegedExceptionAction<T>) - Static method in class java.security.AccessController
-
Performs the specified PrivilegedExceptionAction with
privileges enabled.
- DOTALL - Static variable in class java.util.regex.Pattern
-
Enables dotall mode.
- 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.
- doubleValue() - Method in class java.util.concurrent.atomic.AtomicInteger
-
- doubleValue() - Method in class java.util.concurrent.atomic.AtomicLong
-
- drain() - Method in class java.io.ObjectOutputStream
-
Drain any buffered data in ObjectOutputStream.
- drainPermits() - Method in class java.util.concurrent.Semaphore
-
Acquires and returns all permits that are immediately available.
- drainTasksTo(Collection<? super ForkJoinTask<?>>) - Method in class java.util.concurrent.ForkJoinPool
-
Removes all available unexecuted submitted and forked tasks
from scheduling queues and adds them to the given collection,
without altering their execution status.
- drainTo(Collection<? super E>) - Method in class java.util.concurrent.ArrayBlockingQueue
-
- drainTo(Collection<? super E>, int) - Method in class java.util.concurrent.ArrayBlockingQueue
-
- drainTo(Collection<? super E>) - Method in interface java.util.concurrent.BlockingQueue
-
Removes all available elements from this queue and adds them
to the given collection.
- drainTo(Collection<? super E>, int) - Method in interface java.util.concurrent.BlockingQueue
-
Removes at most the given number of available elements from
this queue and adds them to the given collection.
- drainTo(Collection<? super E>) - Method in class java.util.concurrent.DelayQueue
-
- drainTo(Collection<? super E>, int) - Method in class java.util.concurrent.DelayQueue
-
- drainTo(Collection<? super E>) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- drainTo(Collection<? super E>, int) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- drainTo(Collection<? super E>) - Method in class java.util.concurrent.LinkedBlockingQueue
-
- drainTo(Collection<? super E>, int) - Method in class java.util.concurrent.LinkedBlockingQueue
-
- drainTo(Collection<? super E>) - Method in class java.util.concurrent.LinkedTransferQueue
-
- drainTo(Collection<? super E>, int) - Method in class java.util.concurrent.LinkedTransferQueue
-
- drainTo(Collection<? super E>) - Method in class java.util.concurrent.PriorityBlockingQueue
-
- drainTo(Collection<? super E>, int) - Method in class java.util.concurrent.PriorityBlockingQueue
-
- drainTo(Collection<? super E>) - Method in class java.util.concurrent.SynchronousQueue
-
- drainTo(Collection<? super E>, int) - Method in class java.util.concurrent.SynchronousQueue
-
- dropParameterTypes(int, int) - Method in class java.lang.invoke.MethodType
-
Finds or creates a method type with some parameter types omitted.
- DST_OFFSET - Static variable in class java.util.Calendar
-
Field number for get and set indicating the
daylight saving offset in milliseconds.
- dumpStack() - Static method in class java.lang.Thread
-
Prints a stack trace of the current thread to the standard error stream.
- dynamicInvoker() - Method in class java.lang.invoke.CallSite
-
Produces a method handle equivalent to an invokedynamic instruction
which has been linked to this call site.
- 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 exception java.lang.annotation.AnnotationTypeMismatchException
-
Returns the Method object for the incorrectly typed element.
- 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.concurrent.BlockingDeque
-
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.concurrent.ConcurrentLinkedDeque
-
- element() - Method in class java.util.concurrent.LinkedBlockingDeque
-
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.
- elementName() - Method in exception java.lang.annotation.IncompleteAnnotationException
-
Returns the name of the missing element.
- 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.regex.Matcher
-
Returns the offset after the last character matched.
- end(int) - Method in class java.util.regex.Matcher
-
Returns the offset after the last character of the subsequence
captured by the given group during the previous match operation.
- end() - Method in interface java.util.regex.MatchResult
-
Returns the offset after the last character matched.
- end(int) - Method in interface java.util.regex.MatchResult
-
Returns the offset after the last character of the subsequence
captured by the given group during this match.
- 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.
- ENGLISH - Static variable in class java.util.Locale
-
Useful constant for language.
- 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.concurrent.ConcurrentHashMap
-
- entrySet() - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Returns a
Set view of the mappings contained in this map.
- entrySet() - Method in class java.util.EnumMap
-
Returns a
Set view of the mappings contained in this map.
- 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.
- EnumMap<K extends Enum<K>,V> - Class in java.util
-
A specialized
Map implementation for use with enum type keys.
- EnumMap(Class<K>) - Constructor for class java.util.EnumMap
-
Creates an empty enum map with the specified key type.
- EnumMap(EnumMap<K, ? extends V>) - Constructor for class java.util.EnumMap
-
Creates an enum map with the same key type as the specified enum
map, initially containing the same mappings (if any).
- EnumMap(Map<K, ? extends V>) - Constructor for class java.util.EnumMap
-
Creates an enum map initialized from the specified map.
- EnumSet<E extends Enum<E>> - Class in java.util
-
A specialized
Set implementation for use with enum types.
- 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.Class
-
- 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.invoke.MethodType
-
Compares the specified object with this type for equality.
- 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.nio.charset.Charset
-
Tells whether or not this object is equal to another.
- equals(Object) - Method in class java.text.AttributedCharacterIterator.Attribute
-
Compares two objects for equality.
- equals(Object) - Method in class java.text.ChoiceFormat
-
Equality comparision between two
- equals(Object) - Method in class java.text.DateFormat
-
Overrides equals
- equals(Object) - Method in class java.text.DateFormatSymbols
-
Override equals
- equals(Object) - Method in class java.text.DecimalFormat
-
Overrides equals
- equals(Object) - Method in class java.text.DecimalFormatSymbols
-
Override equals.
- equals(Object) - Method in class java.text.FieldPosition
-
Overrides equals
- equals(Object) - Method in class java.text.MessageFormat
-
Equality comparison between two message format objects
- equals(Object) - Method in class java.text.NumberFormat
-
Overrides equals
- equals(Object) - Method in class java.text.ParsePosition
-
Overrides equals
- equals(Object) - Method in class java.text.SimpleDateFormat
-
Compares the given object with this SimpleDateFormat for
equality.
- 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 class java.util.BitSet
-
Compares this object against the specified object.
- equals(Object) - Method in class java.util.Calendar
-
Compares this Calendar to the specified
Object.
- 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.concurrent.ConcurrentHashMap
-
- equals(Object) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Compares the specified object with this map for equality.
- equals(Object) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Compares the specified object with this set for equality.
- equals(Object) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Compares the specified object with this list for equality.
- equals(Object) - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Compares the specified object with this set for equality.
- equals(Object) - Method in class java.util.Date
-
Compares two dates for equality.
- equals(Object) - Method in class java.util.EnumMap
-
Compares the specified object with this map for equality.
- 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.Locale
-
- 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.SimpleTimeZone
-
Compares the equality of two SimpleTimeZone objects.
- 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.
- ERA - Static variable in class java.text.DateFormat.Field
-
Constant identifying the era field.
- ERA - Static variable in class java.util.Calendar
-
Field number for get and set indicating the
era, e.g., AD or BC in the Julian calendar.
- ERA_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for ERA field alignment.
- erase() - Method in class java.lang.invoke.MethodType
-
Erases all reference types to Object.
- err - Static variable in class java.io.FileDescriptor
-
A handle to the standard error stream.
- err - Static variable in class java.lang.System
-
- 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 (cause==null ? null : cause.toString()) (which
typically contains the class and detail message of cause).
- 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 ? null : cause.toString()) (which
typically contains the class and detail message of cause).
- 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.
- exchange(V) - Method in class java.util.concurrent.Exchanger
-
Waits for another thread to arrive at this exchange point (unless
the current thread is
interrupted),
and then transfers the given object to it, receiving its object
in return.
- exchange(V, long, TimeUnit) - Method in class java.util.concurrent.Exchanger
-
Waits for another thread to arrive at this exchange point (unless
the current thread is
interrupted or
the specified waiting time elapses), and then transfers the given
object to it, receiving its object in return.
- Exchanger<V> - Class in java.util.concurrent
-
A synchronization point at which threads can pair and swap elements
within pairs.
- Exchanger() - Constructor for class java.util.concurrent.Exchanger
-
Creates a new Exchanger.
- exec() - Method in class java.util.concurrent.ForkJoinTask
-
Immediately performs the base action of this task.
- exec() - Method in class java.util.concurrent.RecursiveAction
-
Implements execution conventions for RecursiveActions.
- exec() - Method in class java.util.concurrent.RecursiveTask
-
Implements execution conventions for RecursiveTask.
- execute(Runnable) - Method in interface java.util.concurrent.Executor
-
Executes the given command at some time in the future.
- execute(ForkJoinTask<?>) - Method in class java.util.concurrent.ForkJoinPool
-
Arranges for (asynchronous) execution of the given task.
- execute(Runnable) - Method in class java.util.concurrent.ForkJoinPool
-
- execute(Runnable) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Executes command with zero required delay.
- execute(Runnable) - Method in class java.util.concurrent.ThreadPoolExecutor
-
Executes the given task sometime in the future.
- ExecutionException - Exception in java.util.concurrent
-
Exception thrown when attempting to retrieve the result of a task
that aborted by throwing an exception.
- ExecutionException() - Constructor for exception java.util.concurrent.ExecutionException
-
Constructs an ExecutionException with no detail message.
- ExecutionException(String) - Constructor for exception java.util.concurrent.ExecutionException
-
Constructs an ExecutionException with the specified detail
message.
- ExecutionException(String, Throwable) - Constructor for exception java.util.concurrent.ExecutionException
-
Constructs an ExecutionException with the specified detail
message and cause.
- ExecutionException(Throwable) - Constructor for exception java.util.concurrent.ExecutionException
-
Constructs an ExecutionException with the specified cause.
- Executor - Interface in java.util.concurrent
-
An object that executes submitted
Runnable tasks.
- ExecutorCompletionService<V> - Class in java.util.concurrent
-
- ExecutorCompletionService(Executor) - Constructor for class java.util.concurrent.ExecutorCompletionService
-
Creates an ExecutorCompletionService using the supplied
executor for base task execution and a
LinkedBlockingQueue as a completion queue.
- ExecutorCompletionService(Executor, BlockingQueue<Future<V>>) - Constructor for class java.util.concurrent.ExecutorCompletionService
-
Creates an ExecutorCompletionService using the supplied
executor for base task execution and the supplied queue as its
completion queue.
- Executors - Class in java.util.concurrent
-
- ExecutorService - Interface in java.util.concurrent
-
An
Executor that provides methods to manage termination and
methods that can produce a
Future for tracking progress of
one or more asynchronous 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.
- EXPONENT - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the exponent field.
- EXPONENT_SIGN - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the exponent sign field.
- EXPONENT_SYMBOL - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the exponent symbol field.
- Exported - Annotation Type in org.apidesign.bck2brwsr.core
-
Marks the corresponding program element as exported.
- 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.
- FEBRUARY - Static variable in class java.util.Calendar
-
Value of the
Calendar.MONTH field indicating the
second month of the year in the Gregorian and Julian calendars.
- Field - Class in java.lang.reflect
-
A Field provides information about, and dynamic access to, a
single field of a class or an interface.
- FIELD_COUNT - Static variable in class java.util.Calendar
-
The number of distinct fields recognized by get and set.
- 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.
- FieldPosition - Class in java.text
-
FieldPosition is a simple class used by Format
and its subclasses to identify fields in formatted output.
- FieldPosition(int) - Constructor for class java.text.FieldPosition
-
Creates a FieldPosition object for the given field.
- FieldPosition(Format.Field) - Constructor for class java.text.FieldPosition
-
Creates a FieldPosition object for the given field constant.
- FieldPosition(Format.Field, int) - Constructor for class java.text.FieldPosition
-
Creates a FieldPosition object for the given field.
- fields - Variable in class java.util.Calendar
-
The calendar field values for the currently set time for this calendar.
- 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.
- FileDescriptor - Class in java.io
-
Instances of the file descriptor class serve as an opaque handle
to the underlying machine-specific structure representing an open
file, an open socket, or another source or sink of bytes.
- FileDescriptor() - Constructor for class java.io.FileDescriptor
-
Constructs an (invalid) FileDescriptor
object.
- FileFilter - Interface in java.io
-
A filter for abstract pathnames.
- FileInputStream - Class in java.io
-
A FileInputStream obtains input bytes
from a file in a file system.
- FileInputStream(String) - Constructor for class java.io.FileInputStream
-
Creates a FileInputStream by
opening a connection to an actual file,
the file named by the path name name
in the file system.
- FileInputStream(File) - Constructor for class java.io.FileInputStream
-
Creates a FileInputStream by
opening a connection to an actual file,
the file named by the File
object file in the file system.
- FileInputStream(FileDescriptor) - Constructor for class java.io.FileInputStream
-
Creates a FileInputStream by using the file descriptor
fdObj, which represents an existing connection to an
actual file in the file system.
- 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.
- FileOutputStream - Class in java.io
-
A file output stream is an output stream for writing data to a
File or to a FileDescriptor.
- FileOutputStream(String) - Constructor for class java.io.FileOutputStream
-
Creates a file output stream to write to the file with the
specified name.
- FileOutputStream(String, boolean) - Constructor for class java.io.FileOutputStream
-
Creates a file output stream to write to the file with the specified
name.
- FileOutputStream(File) - Constructor for class java.io.FileOutputStream
-
Creates a file output stream to write to the file represented by
the specified File object.
- FileOutputStream(File, boolean) - Constructor for class java.io.FileOutputStream
-
Creates a file output stream to write to the file represented by
the specified File object.
- FileOutputStream(FileDescriptor) - Constructor for class java.io.FileOutputStream
-
Creates a file output stream to write to the specified file
descriptor, which represents an existing connection to an actual
file in the file system.
- FileReader - Class in java.io
-
Convenience class for reading character files.
- FileReader(String) - Constructor for class java.io.FileReader
-
Creates a new FileReader, given the name of the
file to read from.
- FileReader(File) - Constructor for class java.io.FileReader
-
Creates a new FileReader, given the File
to read from.
- FileReader(FileDescriptor) - Constructor for class java.io.FileReader
-
Creates a new FileReader, given the
FileDescriptor to read from.
- FileWriter - Class in java.io
-
Convenience class for writing character files.
- FileWriter(String) - Constructor for class java.io.FileWriter
-
Constructs a FileWriter object given a file name.
- FileWriter(String, boolean) - Constructor for class java.io.FileWriter
-
Constructs a FileWriter object given a file name with a boolean
indicating whether or not to append the data written.
- FileWriter(File) - Constructor for class java.io.FileWriter
-
Constructs a FileWriter object given a File object.
- FileWriter(File, boolean) - Constructor for class java.io.FileWriter
-
Constructs a FileWriter object given a File object.
- FileWriter(FileDescriptor) - Constructor for class java.io.FileWriter
-
Constructs a FileWriter object associated with a file descriptor.
- 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.
- 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.
- FilterReader - Class in java.io
-
Abstract class for reading filtered character streams.
- FilterReader(Reader) - Constructor for class java.io.FilterReader
-
Creates a new filtered reader.
- FilterWriter - Class in java.io
-
Abstract class for writing filtered character streams.
- FilterWriter(Writer) - Constructor for class java.io.FilterWriter
-
Create a new filtered writer.
- 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.io.FileInputStream
-
Ensures that the close method of this file input stream is
called when there are no more references to it.
- finalize() - Method in class java.io.FileOutputStream
-
Cleans up the connection to the file, and ensures that the
close method of this file output stream is
called when there are no more references to this stream.
- 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.concurrent.ThreadPoolExecutor
-
Invokes shutdown when this executor is no longer
referenced and it has no threads.
- find() - Method in class java.util.regex.Matcher
-
Attempts to find the next subsequence of the input sequence that matches
the pattern.
- find(int) - Method in class java.util.regex.Matcher
-
Resets this matcher and then attempts to find the next subsequence of
the input sequence that matches the pattern, starting at the specified
index.
- findClass(String) - Method in class java.lang.ClassLoader
-
- findConstructor(Class<?>, MethodType) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Produces a method handle which creates an object and initializes it, using
the constructor of the specified type.
- findGetter(Class<?>, String, Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Produces a method handle giving read access to a non-static field.
- 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.
- findSetter(Class<?>, String, Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Produces a method handle giving write access to a non-static field.
- findSpecial(Class<?>, String, MethodType, Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Produces an early-bound method handle for a virtual method.
- findStatic(Class<?>, String, MethodType) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Produces a method handle for a static method.
- findStaticGetter(Class<?>, String, Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Produces a method handle giving read access to a static field.
- findStaticSetter(Class<?>, String, Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Produces a method handle giving write access to a static field.
- findVirtual(Class<?>, String, MethodType) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Produces a method handle for a virtual method.
- 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.
- 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.text.CharacterIterator
-
Sets the position to getBeginIndex() and returns the character at that
position.
- first() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- 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 class java.util.concurrent.ConcurrentSkipListMap
-
Returns a key-value mapping associated with the least
key in this map, or null if the map is empty.
- 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 class java.util.concurrent.ConcurrentSkipListMap
-
- firstKey() - Method in interface java.util.SortedMap
-
Returns the first (lowest) key currently in this map.
- firstKey() - Method in class java.util.TreeMap
-
- FLAG_BRIDGES - Static variable in class java.lang.invoke.LambdaMetafactory
-
Flag for alternate metafactories indicating the lambda object requires
additional bridge methods
- FLAG_MARKERS - Static variable in class java.lang.invoke.LambdaMetafactory
-
Flag for alternate metafactories indicating the lambda object implements
other marker interfaces
besides Serializable
- FLAG_SERIALIZABLE - Static variable in class java.lang.invoke.LambdaMetafactory
-
Flag for alternate metafactories indicating the lambda object
must be serializable
- flags() - Method in class java.util.regex.Pattern
-
Returns this pattern's match flags.
- flip(int) - Method in class java.util.BitSet
-
Sets the bit at the specified index to the complement of its
current value.
- flip(int, int) - Method in class java.util.BitSet
-
Sets each bit from the specified fromIndex (inclusive) to the
specified toIndex (exclusive) to the complement of its current
value.
- 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.
- floatValue() - Method in class java.util.concurrent.atomic.AtomicInteger
-
- floatValue() - Method in class java.util.concurrent.atomic.AtomicLong
-
- 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 class java.util.concurrent.ConcurrentSkipListSet
-
- 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 class java.util.concurrent.ConcurrentSkipListMap
-
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 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 class java.util.concurrent.ConcurrentSkipListMap
-
- 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 class java.io.FilterWriter
-
Flushes 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.StringWriter
-
Flush 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.
- forceTermination() - Method in class java.util.concurrent.Phaser
-
Forces this phaser to enter termination state.
- 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.
- fork() - Method in class java.util.concurrent.ForkJoinTask
-
Arranges to asynchronously execute this task.
- ForkJoinPool - Class in java.util.concurrent
-
- ForkJoinPool() - Constructor for class java.util.concurrent.ForkJoinPool
-
- ForkJoinPool(int) - Constructor for class java.util.concurrent.ForkJoinPool
-
Creates a
ForkJoinPool with the indicated parallelism
level, the
default thread factory,
no UncaughtExceptionHandler, and non-async LIFO processing mode.
- ForkJoinPool(int, ForkJoinPool.ForkJoinWorkerThreadFactory, Thread.UncaughtExceptionHandler, boolean) - Constructor for class java.util.concurrent.ForkJoinPool
-
Creates a ForkJoinPool with the given parameters.
- ForkJoinPool.ForkJoinWorkerThreadFactory - Interface in java.util.concurrent
-
- ForkJoinPool.ManagedBlocker - Interface in java.util.concurrent
-
Interface for extending managed parallelism for tasks running
in
ForkJoinPools.
- ForkJoinTask<V> - Class in java.util.concurrent
-
Abstract base class for tasks that run within a
ForkJoinPool.
- ForkJoinTask() - Constructor for class java.util.concurrent.ForkJoinTask
-
- ForkJoinWorkerThread - Class in java.util.concurrent
-
- ForkJoinWorkerThread(ForkJoinPool) - Constructor for class java.util.concurrent.ForkJoinWorkerThread
-
Creates a ForkJoinWorkerThread operating in the given pool.
- 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.
- format(Locale, String, Object...) - Static method in class java.lang.String
-
Returns a formatted string using the specified locale, format string,
and arguments.
- format(long, StringBuffer, FieldPosition) - Method in class java.text.ChoiceFormat
-
Specialization of format.
- format(double, StringBuffer, FieldPosition) - Method in class java.text.ChoiceFormat
-
Returns pattern with formatted double.
- format(Object, StringBuffer, FieldPosition) - Method in class java.text.DateFormat
-
Overrides Format.
- format(Date, StringBuffer, FieldPosition) - Method in class java.text.DateFormat
-
Formats a Date into a date/time string.
- format(Date) - Method in class java.text.DateFormat
-
Formats a Date into a date/time string.
- format(Object, StringBuffer, FieldPosition) - Method in class java.text.DecimalFormat
-
Formats a number and appends the resulting text to the given string
buffer.
- format(double, StringBuffer, FieldPosition) - Method in class java.text.DecimalFormat
-
Formats a double to produce a string.
- format(long, StringBuffer, FieldPosition) - Method in class java.text.DecimalFormat
-
Format a long to produce a string.
- Format - Class in java.text
-
Format is an abstract base class for formatting locale-sensitive
information such as dates, messages, and numbers.
- Format() - Constructor for class java.text.Format
-
Sole constructor.
- format(Object) - Method in class java.text.Format
-
Formats an object to produce a string.
- format(Object, StringBuffer, FieldPosition) - Method in class java.text.Format
-
Formats an object and appends the resulting text to a given string
buffer.
- format(Object[], StringBuffer, FieldPosition) - Method in class java.text.MessageFormat
-
Formats an array of objects and appends the MessageFormat's
pattern, with format elements replaced by the formatted objects, to the
provided StringBuffer.
- format(String, Object...) - Static method in class java.text.MessageFormat
-
Creates a MessageFormat with the given pattern and uses it
to format the given arguments.
- format(Object, StringBuffer, FieldPosition) - Method in class java.text.MessageFormat
-
Formats an array of objects and appends the MessageFormat's
pattern, with format elements replaced by the formatted objects, to the
provided StringBuffer.
- format(Object, StringBuffer, FieldPosition) - Method in class java.text.NumberFormat
-
Formats a number and appends the resulting text to the given string
buffer.
- format(double) - Method in class java.text.NumberFormat
-
Specialization of format.
- format(long) - Method in class java.text.NumberFormat
-
Specialization of format.
- format(double, StringBuffer, FieldPosition) - Method in class java.text.NumberFormat
-
Specialization of format.
- format(long, StringBuffer, FieldPosition) - Method in class java.text.NumberFormat
-
Specialization of format.
- format(Date, StringBuffer, FieldPosition) - Method in class java.text.SimpleDateFormat
-
Formats the given Date into a date/time string and appends
the result to the given StringBuffer.
- Format.Field - Class in java.text
-
Defines constants that are used as attribute keys in the
AttributedCharacterIterator returned
from Format.formatToCharacterIterator and as
field identifiers in FieldPosition.
- Format.Field(String) - Constructor for class java.text.Format.Field
-
Creates a Field with the specified name.
- FORMAT_CLASS - Static variable in class java.util.ResourceBundle.Control
-
The class-only format List containing
"java.class".
- FORMAT_DEFAULT - Static variable in class java.util.ResourceBundle.Control
-
The default format List, which contains the strings
"java.class" and "java.properties", in
this order.
- FORMAT_PROPERTIES - Static variable in class java.util.ResourceBundle.Control
-
The properties-only format List containing
"java.properties".
- formatToCharacterIterator(Object) - Method in class java.text.DecimalFormat
-
Formats an Object producing an AttributedCharacterIterator.
- formatToCharacterIterator(Object) - Method in class java.text.Format
-
Formats an Object producing an AttributedCharacterIterator.
- formatToCharacterIterator(Object) - Method in class java.text.MessageFormat
-
Formats an array of objects and inserts them into the
MessageFormat's pattern, producing an
AttributedCharacterIterator.
- formatToCharacterIterator(Object) - Method in class java.text.SimpleDateFormat
-
Formats an Object producing an AttributedCharacterIterator.
- 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.
- forName(String) - Static method in class java.nio.charset.Charset
-
Returns a charset object for the named charset.
- foundType() - Method in exception java.lang.annotation.AnnotationTypeMismatchException
-
Returns the type of data found in the incorrectly typed element.
- FRACTION - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the fraction field.
- FRACTION_FIELD - Static variable in class java.text.NumberFormat
-
Field constant used to construct a FieldPosition object.
- FRANCE - Static variable in class java.util.Locale
-
Useful constant for country.
- FRENCH - Static variable in class java.util.Locale
-
Useful constant for language.
- frequency(Collection<?>, Object) - Static method in class java.util.Collections
-
Returns the number of elements in the specified collection equal to the
specified object.
- FRIDAY - Static variable in class java.util.Calendar
-
- fromMethodDescriptorString(String, ClassLoader) - Static method in class java.lang.invoke.MethodType
-
Finds or creates an instance of a method type, given the spelling of its bytecode descriptor.
- FULL - Static variable in class java.text.DateFormat
-
Constant for full style pattern.
- Future<V> - Interface in java.util.concurrent
-
A Future represents the result of an asynchronous
computation.
- FutureTask<V> - Class in java.util.concurrent
-
A cancellable asynchronous computation.
- FutureTask(Callable<V>) - Constructor for class java.util.concurrent.FutureTask
-
Creates a FutureTask that will, upon running, execute the
given Callable.
- FutureTask(Runnable, V) - Constructor for class java.util.concurrent.FutureTask
-
Creates a FutureTask that will, upon running, execute the
given Runnable, and arrange that get will return the
given result on successful completion.
- gcd(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is the greatest common divisor of
abs(this) and abs(val).
- generate(Appendable, Bck2Brwsr.Resources, String...) - Static method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
Helper method to generate virtual machine from bytes served by a resources
provider.
- generate(Appendable, ClassLoader, String...) - Static method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
Helper method to generate virtual machine from bytes served by a class loader.
- generate(Appendable) - Method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
Generates virtual machine based on previous configuration of the
compiler.
- generic() - Method in class java.lang.invoke.MethodType
-
Converts all types, both reference and primitive, to Object.
- GenericDeclaration - Interface in java.lang.reflect
-
A common interface for all entities that declare type variables.
- genericMethodType(int, boolean) - Static method in class java.lang.invoke.MethodType
-
Finds or creates a method type whose components are Object with an optional trailing Object[] array.
- genericMethodType(int) - Static method in class java.lang.invoke.MethodType
-
Finds or creates a method type whose components are all Object.
- GERMAN - Static variable in class java.util.Locale
-
Useful constant for language.
- GERMANY - Static variable in class java.util.Locale
-
Useful constant for country.
- 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(Class<?>) - Method in class java.lang.ClassValue
-
Returns the value for the given class.
- 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(int) - Method in class java.util.BitSet
-
Returns the value of the bit with the specified index.
- get(int, int) - Method in class java.util.BitSet
-
Returns a new BitSet composed of bits from this BitSet
from fromIndex (inclusive) to toIndex (exclusive).
- get(int) - Method in class java.util.Calendar
-
Returns the value of the given calendar field.
- get() - Method in class java.util.concurrent.atomic.AtomicBoolean
-
Returns the current value.
- get() - Method in class java.util.concurrent.atomic.AtomicInteger
-
Gets the current value.
- get(int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Gets the current value at position i.
- get(T) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Gets the current value held in the field of the given object managed
by this updater.
- get() - Method in class java.util.concurrent.atomic.AtomicLong
-
Gets the current value.
- get(int) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Gets the current value at position i.
- get(T) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Gets the current value held in the field of the given object managed
by this updater.
- get() - Method in class java.util.concurrent.atomic.AtomicReference
-
Gets the current value.
- get(int) - Method in class java.util.concurrent.atomic.AtomicReferenceArray
-
Gets the current value at position i.
- get(T) - Method in class java.util.concurrent.atomic.AtomicReferenceFieldUpdater
-
Gets the current value held in the field of the given object managed
by this updater.
- get(Object) - Method in class java.util.concurrent.ConcurrentHashMap
-
- get(Object) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
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.concurrent.CopyOnWriteArrayList
-
Returns the element at the specified position in this list.
- get() - Method in class java.util.concurrent.ForkJoinTask
-
Waits if necessary for the computation to complete, and then
retrieves its result.
- get(long, TimeUnit) - Method in class java.util.concurrent.ForkJoinTask
-
Waits if necessary for at most the given time for the computation
to complete, and then retrieves its result, if available.
- get() - Method in interface java.util.concurrent.Future
-
Waits if necessary for the computation to complete, and then
retrieves its result.
- get(long, TimeUnit) - Method in interface java.util.concurrent.Future
-
Waits if necessary for at most the given time for the computation
to complete, and then retrieves its result, if available.
- get() - Method in class java.util.concurrent.FutureTask
-
- get(long, TimeUnit) - Method in class java.util.concurrent.FutureTask
-
- 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.EnumMap
-
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.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.
- get(String) - Method in interface org.apidesign.vm4brwsr.Bck2Brwsr.Resources
-
Loads given resource (class or other file like image).
- get2DigitYearStart() - Method in class java.text.SimpleDateFormat
-
Returns the beginning date of the 100-year period 2-digit years are interpreted
as being within.
- 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.
- getActiveCount() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns the approximate number of threads that are actively
executing tasks.
- getActiveThreadCount() - Method in class java.util.concurrent.ForkJoinPool
-
Returns an estimate of the number of threads that are currently
stealing or executing tasks.
- getActualMaximum(int) - Method in class java.util.Calendar
-
Returns the maximum value that the specified calendar field
could have, given the time value of this
Calendar.
- getActualMinimum(int) - Method in class java.util.Calendar
-
Returns the minimum value that the specified calendar field
could have, given the time value of this Calendar.
- getAllAttributeKeys() - Method in interface java.text.AttributedCharacterIterator
-
Returns the keys of all attributes defined on the
iterator's text range.
- getAllowUserInteraction() - Method in class java.net.URLConnection
-
Returns the value of the allowUserInteraction field for
this object.
- getAllStackTraces() - Static method in class java.lang.Thread
-
Returns a map of stack traces for all live threads.
- getAmPmStrings() - Method in class java.text.DateFormatSymbols
-
Gets ampm strings.
- getAndAdd(int) - Method in class java.util.concurrent.atomic.AtomicInteger
-
Atomically adds the given value to the current value.
- getAndAdd(int, int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Atomically adds the given value to the element at index i.
- getAndAdd(T, int) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Atomically adds the given value to the current value of the field of
the given object managed by this updater.
- getAndAdd(long) - Method in class java.util.concurrent.atomic.AtomicLong
-
Atomically adds the given value to the current value.
- getAndAdd(int, long) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Atomically adds the given value to the element at index i.
- getAndAdd(T, long) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Atomically adds the given value to the current value of the field of
the given object managed by this updater.
- getAndDecrement() - Method in class java.util.concurrent.atomic.AtomicInteger
-
Atomically decrements by one the current value.
- getAndDecrement(int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Atomically decrements by one the element at index i.
- getAndDecrement(T) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Atomically decrements by one the current value of the field of the
given object managed by this updater.
- getAndDecrement() - Method in class java.util.concurrent.atomic.AtomicLong
-
Atomically decrements by one the current value.
- getAndDecrement(int) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Atomically decrements by one the element at index i.
- getAndDecrement(T) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Atomically decrements by one the current value of the field of the
given object managed by this updater.
- getAndIncrement() - Method in class java.util.concurrent.atomic.AtomicInteger
-
Atomically increments by one the current value.
- getAndIncrement(int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Atomically increments by one the element at index i.
- getAndIncrement(T) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Atomically increments by one the current value of the field of the
given object managed by this updater.
- getAndIncrement() - Method in class java.util.concurrent.atomic.AtomicLong
-
Atomically increments by one the current value.
- getAndIncrement(int) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Atomically increments by one the element at index i.
- getAndIncrement(T) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Atomically increments by one the current value of the field of the
given object managed by this updater.
- getAndSet(boolean) - Method in class java.util.concurrent.atomic.AtomicBoolean
-
Atomically sets to the given value and returns the previous value.
- getAndSet(int) - Method in class java.util.concurrent.atomic.AtomicInteger
-
Atomically sets to the given value and returns the old value.
- getAndSet(int, int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Atomically sets the element at position i to the given
value and returns the old value.
- getAndSet(T, int) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Atomically sets the field of the given object managed by this updater
to the given value and returns the old value.
- getAndSet(long) - Method in class java.util.concurrent.atomic.AtomicLong
-
Atomically sets to the given value and returns the old value.
- getAndSet(int, long) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Atomically sets the element at position i to the given value
and returns the old value.
- getAndSet(T, long) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Atomically sets the field of the given object managed by this updater
to the given value and returns the old value.
- getAndSet(V) - Method in class java.util.concurrent.atomic.AtomicReference
-
Atomically sets to the given value and returns the old value.
- getAndSet(int, E) - Method in class java.util.concurrent.atomic.AtomicReferenceArray
-
Atomically sets the element at position i to the given
value and returns the old value.
- getAndSet(T, V) - Method in class java.util.concurrent.atomic.AtomicReferenceFieldUpdater
-
Atomically sets the field of the given object managed by this updater
to the given value and returns the old value.
- 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.
- getArrivedParties() - Method in class java.util.concurrent.Phaser
-
Returns the number of registered parties that have arrived at
the current phase of this phaser.
- getAsyncMode() - Method in class java.util.concurrent.ForkJoinPool
-
Returns true if this pool uses local first-in-first-out
scheduling mode for forked tasks that are never joined.
- getAttribute(AttributedCharacterIterator.Attribute) - Method in interface java.text.AttributedCharacterIterator
-
Returns the value of the named attribute for the current character.
- getAttributes() - Method in interface java.text.AttributedCharacterIterator
-
Returns a map with the attributes defined on the current
character.
- 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.
- getAvailableCurrencies() - Static method in class java.util.Currency
-
Gets the set of available currencies.
- getAvailableIDs(int) - Static method in class java.util.TimeZone
-
Gets the available IDs according to the given time zone offset in milliseconds.
- getAvailableIDs() - Static method in class java.util.TimeZone
-
Gets all the available IDs supported.
- getAvailableLocales() - Static method in class java.text.DateFormat
-
Returns an array of all locales for which the
get*Instance methods of this class can return
localized instances.
- getAvailableLocales() - Static method in class java.text.DateFormatSymbols
-
Returns an array of all locales for which the
getInstance methods of this class can return
localized instances.
- getAvailableLocales() - Static method in class java.text.DecimalFormatSymbols
-
Returns an array of all locales for which the
getInstance methods of this class can return
localized instances.
- getAvailableLocales() - Static method in class java.text.NumberFormat
-
Returns an array of all locales for which the
get*Instance methods of this class can return
localized instances.
- getAvailableLocales() - Static method in class java.util.Calendar
-
Returns an array of all locales for which the getInstance
methods of this class can return localized instances.
- getAvailableLocales() - Static method in class java.util.Locale
-
Returns an array of all installed locales.
- getBeginIndex() - Method in interface java.text.CharacterIterator
-
Returns the start index of the text.
- getBeginIndex() - Method in class java.text.FieldPosition
-
Retrieves the index of the first character in the requested field.
- getBlocker(Thread) - Static method in class java.util.concurrent.locks.LockSupport
-
Returns the blocker object supplied to the most recent
invocation of a park method that has not yet unblocked, or null
if not blocked.
- 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.
- getBuffer() - Method in class java.io.StringWriter
-
Return the string buffer itself.
- getBundle(String) - Static method in class java.util.ResourceBundle
-
Gets a resource bundle using the specified base name, the default locale,
and the caller's class loader.
- getBundle(String, ResourceBundle.Control) - Static method in class java.util.ResourceBundle
-
Returns a resource bundle using the specified base name, the
default locale and the specified control.
- getBundle(String, Locale) - Static method in class java.util.ResourceBundle
-
Gets a resource bundle using the specified base name and locale,
and the caller's class loader.
- getBundle(String, Locale, ResourceBundle.Control) - Static method in class java.util.ResourceBundle
-
Returns a resource bundle using the specified base name, target
locale and control, and the caller's class loader.
- getBundle(String, Locale, ClassLoader) - Static method in class java.util.ResourceBundle
-
Gets a resource bundle using the specified base name, locale, and class
loader.
- getBundle(String, Locale, ClassLoader, ResourceBundle.Control) - Static method in class java.util.ResourceBundle
-
Returns a resource bundle using the specified base name, target
locale, class loader and control.
- 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.
- getCalendar() - Method in class java.text.DateFormat
-
Gets the calendar associated with this date/time formatter.
- getCalendarField() - Method in class java.text.DateFormat.Field
-
Returns the Calendar field associated with this
attribute.
- getCandidateLocales(String, Locale) - Method in class java.util.ResourceBundle.Control
-
Returns a List of Locales as candidate
locales for baseName and locale.
- 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.
- getCapturedArg(int) - Method in class java.lang.invoke.SerializedLambda
-
Get a dynamic argument to the lambda capture site.
- getCapturedArgCount() - Method in class java.lang.invoke.SerializedLambda
-
Get the count of dynamic arguments to the lambda capture site.
- getCapturingClass() - Method in class java.lang.invoke.SerializedLambda
-
Get the name of the class that captured this lambda.
- 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.
- getCause() - Method in exception java.security.PrivilegedActionException
-
Returns the cause of this exception (the exception thrown by
the privileged computation that resulted in this
PrivilegedActionException).
- 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
-
- getCharsetName() - Method in exception java.nio.charset.IllegalCharsetNameException
-
Retrieves the illegal charset name.
- getCharsetName() - Method in exception java.nio.charset.UnsupportedCharsetException
-
Retrieves the name of the unsupported charset.
- 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.
- getClassName() - Method in exception java.util.MissingResourceException
-
Gets parameter passed by constructor.
- getCompletedTaskCount() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns the approximate total number of tasks that have
completed execution.
- getComponentType() - Method in class java.lang.Class
-
Returns the Class representing the component type of an
array.
- getConnectTimeout() - Method in class java.net.URLConnection
-
Returns setting for connect timeout.
- getConstructor(Class<?>...) - Method in class java.lang.Class
-
Returns a Constructor object that reflects the specified
public constructor of the class represented by this Class
object.
- getConstructors() - Method in class java.lang.Class
-
Returns an array containing Constructor objects reflecting
all the public constructors of the class represented by this
Class object.
- 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.
- getContent() - Method in class java.net.URLConnection
-
Retrieves the contents of this URL connection.
- getContent(Class[]) - Method in class java.net.URLConnection
-
Retrieves the contents of this URL connection.
- getContentEncoding() - Method in class java.net.URLConnection
-
Returns the value of the content-encoding header field.
- getContentLength() - Method in class java.net.URLConnection
-
Returns the value of the content-length header field.
- getContentLengthLong() - Method in class java.net.URLConnection
-
Returns the value of the content-length header field as a
long.
- getContentType() - Method in class java.net.URLConnection
-
Returns the value of the content-type header field.
- getContextClassLoader() - Method in class java.lang.Thread
-
Returns the context ClassLoader for this Thread.
- getContinueExistingPeriodicTasksAfterShutdownPolicy() - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Gets the policy on whether to continue executing existing
periodic tasks even when this executor has been shutdown.
- getControl(List<String>) - Static method in class java.util.ResourceBundle.Control
-
Returns a
ResourceBundle.Control in which the
getFormats method returns the specified
formats.
- getCorePoolSize() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns the core number of threads.
- getCount() - Method in class java.util.concurrent.CountDownLatch
-
Returns the current count.
- getCountry() - Method in class java.util.Locale
-
Returns the country/region code for this locale, which should
either be the empty string, an uppercase ISO 3166 2-letter code,
or a UN M.49 3-digit code.
- getCurrency() - Method in class java.text.DecimalFormat
-
Gets the currency used by this decimal format when formatting
currency values.
- getCurrency() - Method in class java.text.DecimalFormatSymbols
-
Gets the currency of these DecimalFormatSymbols.
- getCurrency() - Method in class java.text.NumberFormat
-
Gets the currency used by this number format when formatting
currency values.
- getCurrencyCode() - Method in class java.util.Currency
-
Gets the ISO 4217 currency code of this currency.
- getCurrencyInstance() - Static method in class java.text.NumberFormat
-
Returns a currency format for the current default locale.
- getCurrencyInstance(Locale) - Static method in class java.text.NumberFormat
-
Returns a currency format for the specified locale.
- getCurrencySymbol() - Method in class java.text.DecimalFormatSymbols
-
Returns the currency symbol for the currency of these
DecimalFormatSymbols in their locale.
- getDate() - Method in class java.net.URLConnection
-
Returns the value of the date header field.
- getDate() - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.get(Calendar.DAY_OF_MONTH).
- getDateFormatSymbols() - Method in class java.text.SimpleDateFormat
-
Gets a copy of the date and time format symbols of this date format.
- getDateInstance() - Static method in class java.text.DateFormat
-
Gets the date formatter with the default formatting style
for the default locale.
- getDateInstance(int) - Static method in class java.text.DateFormat
-
Gets the date formatter with the given formatting style
for the default locale.
- getDateInstance(int, Locale) - Static method in class java.text.DateFormat
-
Gets the date formatter with the given formatting style
for the given locale.
- getDateTimeInstance() - Static method in class java.text.DateFormat
-
Gets the date/time formatter with the default formatting style
for the default locale.
- getDateTimeInstance(int, int) - Static method in class java.text.DateFormat
-
Gets the date/time formatter with the given date and time
formatting styles for the default locale.
- getDateTimeInstance(int, int, Locale) - Static method in class java.text.DateFormat
-
Gets the date/time formatter with the given formatting styles
for the given locale.
- getDay() - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.get(Calendar.DAY_OF_WEEK).
- getDecimalFormatSymbols() - Method in class java.text.DecimalFormat
-
Returns a copy of the decimal format symbols, which is generally not
changed by the programmer or user.
- getDecimalSeparator() - Method in class java.text.DecimalFormatSymbols
-
Gets the character used for decimal sign.
- 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
-
- getDeclaredConstructor(Class<?>...) - Method in class java.lang.Class
-
Returns a Constructor object that reflects the specified
constructor of the class or interface represented by this
Class object.
- getDeclaredConstructors() - Method in class java.lang.Class
-
Returns an array of Constructor objects reflecting all the
constructors declared by the class represented by this
Class object.
- getDeclaredField(String) - Method in class java.lang.Class
-
Returns a Field object that reflects the specified declared
field of the class or interface represented by this Class
object.
- getDeclaredFields() - Method in class java.lang.Class
-
Returns an array of Field objects reflecting all the fields
declared by the class or interface represented by this
Class object.
- getDeclaredMethod(String, Class<?>...) - Method in class java.lang.Class
-
Bck2Brwsr emulation can only seek public methods, otherwise it
throws a SecurityException.
- 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.Class
-
If the class or interface represented by this Class object
is a member of another class, returns the Class object
representing the class in which it was declared.
- 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.
- getDefault() - Static method in class java.util.Locale
-
Gets the current value of the default locale for this instance
of the Java Virtual Machine.
- getDefault(Locale.Category) - Static method in class java.util.Locale
-
Gets the current value of the default locale for the specified Category
for this instance of the Java Virtual Machine.
- getDefault() - Static method in class java.util.TimeZone
-
Gets the default TimeZone for this host.
- getDefaultAllowUserInteraction() - Static method in class java.net.URLConnection
-
Returns the default value of the allowUserInteraction
field.
- getDefaultFractionDigits() - Method in class java.util.Currency
-
Gets the default number of fraction digits used with this currency.
- 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.
- getDefaultRequestProperty(String) - Static method in class java.net.URLConnection
-
Deprecated.
The instance specific getRequestProperty method
should be used after an appropriate instance of URLConnection
is obtained.
- getDefaultUncaughtExceptionHandler() - Static method in class java.lang.Thread
-
Returns the default handler invoked when a thread abruptly terminates
due to an uncaught exception.
- getDefaultUseCaches() - Method in class java.net.URLConnection
-
Returns the default value of a URLConnection's
useCaches flag.
- getDefaultValue() - Method in class java.lang.reflect.Method
-
Returns the default value for the annotation member represented by
this Method instance.
- getDelay(TimeUnit) - Method in interface java.util.concurrent.Delayed
-
Returns the remaining delay associated with this object, in the
given time unit.
- getDescription() - Method in exception java.util.regex.PatternSyntaxException
-
Retrieves the description of the error.
- getDigit() - Method in class java.text.DecimalFormatSymbols
-
Gets the character used for a digit in a pattern.
- getDisplayName(int, int, Locale) - Method in class java.util.Calendar
-
Returns the string representation of the calendar
field value in the given style and
locale.
- getDisplayName() - Method in class java.util.Currency
-
Gets the name that is suitable for displaying this currency for
the default locale.
- getDisplayName(Locale) - Method in class java.util.Currency
-
Gets the name that is suitable for displaying this currency for
the specified locale.
- getDisplayName() - Method in class java.util.TimeZone
-
Returns a long standard time name of this TimeZone suitable for
presentation to the user in the default locale.
- getDisplayName(Locale) - Method in class java.util.TimeZone
-
Returns a long standard time name of this TimeZone suitable for
presentation to the user in the specified locale.
- getDisplayName(boolean, int) - Method in class java.util.TimeZone
-
Returns a name in the specified style of this TimeZone
suitable for presentation to the user in the default locale.
- getDisplayName(boolean, int, Locale) - Method in class java.util.TimeZone
-
Returns a name in the specified style of this TimeZone
suitable for presentation to the user in the specified locale.
- getDisplayNames(int, int, Locale) - Method in class java.util.Calendar
-
Returns a Map containing all names of the calendar
field in the given style and
locale and their corresponding field values.
- getDoInput() - Method in class java.net.URLConnection
-
Returns the value of this URLConnection's
doInput flag.
- getDoOutput() - Method in class java.net.URLConnection
-
Returns the value of this URLConnection's
doOutput flag.
- 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.
- getDSTSavings() - Method in class java.util.SimpleTimeZone
-
Returns the amount of time in milliseconds that the clock is
advanced during daylight saving time.
- getDSTSavings() - Method in class java.util.TimeZone
-
Returns the amount of time to be added to local standard time
to get local wall clock time.
- 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.
- getEndIndex() - Method in interface java.text.CharacterIterator
-
Returns the end index of the text.
- getEndIndex() - Method in class java.text.FieldPosition
-
Retrieves the index of the character following the last character in the
requested field.
- getEras() - Method in class java.text.DateFormatSymbols
-
Gets era strings.
- getErrorIndex() - Method in class java.text.ParsePosition
-
Retrieve the index at which an error occurred, or -1 if the
error index has not been set.
- getErrorOffset() - Method in exception java.text.ParseException
-
Returns the position where the error was found.
- getException() - Method in exception java.lang.ClassNotFoundException
-
Returns the exception that was raised if an error occurred while
attempting to load the class.
- getException() - Method in exception java.security.PrivilegedActionException
-
Returns the exception thrown by the privileged computation that
resulted in this PrivilegedActionException.
- getException() - Method in class java.util.concurrent.ForkJoinTask
-
Returns the exception thrown by the base computation, or a
CancellationException if cancelled, or null if
none or if the method has not yet completed.
- 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.
- getExclusiveOwnerThread() - Method in class java.util.concurrent.locks.AbstractOwnableSynchronizer
-
Returns the thread last set by
setExclusiveOwnerThread, or null if never
set.
- getExclusiveQueuedThreads() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns a collection containing threads that may be waiting to
acquire in exclusive mode.
- getExclusiveQueuedThreads() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns a collection containing threads that may be waiting to
acquire in exclusive mode.
- getExecuteExistingDelayedTasksAfterShutdownPolicy() - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Gets the policy on whether to execute existing delayed
tasks even when this executor has been shutdown.
- getExpiration() - Method in class java.net.URLConnection
-
Returns the value of the expires header field.
- getExponentSeparator() - Method in class java.text.DecimalFormatSymbols
-
Returns the string used to separate the mantissa from the exponent.
- getExtension(char) - Method in class java.util.Locale
-
Returns the extension (or private use) value associated with
the specified key, or null if there is no extension
associated with the key.
- getExtensionKeys() - Method in class java.util.Locale
-
Returns the set of extension keys associated with this locale, or the
empty set if it has no extensions.
- getFactory() - Method in class java.util.concurrent.ForkJoinPool
-
Returns the factory used for constructing new workers.
- getFallbackLocale(String, Locale) - Method in class java.util.ResourceBundle.Control
-
Returns a Locale to be used as a fallback locale for
further resource bundle searches by the
ResourceBundle.getBundle factory method.
- getFD() - Method in class java.io.FileInputStream
-
Returns the FileDescriptor
object that represents the connection to
the actual file in the file system being
used by this FileInputStream.
- getFD() - Method in class java.io.FileOutputStream
-
Returns the file descriptor associated with this stream.
- 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.
- getField() - Method in class java.text.FieldPosition
-
Retrieves the field identifier.
- getFieldAttribute() - Method in class java.text.FieldPosition
-
Returns the field identifier as an attribute constant
from one of the Field subclasses.
- 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.
- getFileNameMap() - Static method in class java.net.URLConnection
-
Loads filename map (a mimetable) from a data file.
- getFirst() - Method in class java.util.ArrayDeque
-
- getFirst() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- getFirst() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- 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.
- getFirstDayOfWeek() - Method in class java.util.Calendar
-
Gets what the first day of the week is; e.g., SUNDAY in the U.S.,
MONDAY in France.
- getFirstQueuedThread() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns the first (longest-waiting) thread in the queue, or
null if no threads are currently queued.
- getFirstQueuedThread() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns the first (longest-waiting) thread in the queue, or
null if no threads are currently queued.
- 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.
- getFormats() - Method in class java.text.ChoiceFormat
-
Get the formats passed in the constructor.
- getFormats() - Method in class java.text.MessageFormat
-
Gets the formats used for the format elements in the
previously set pattern string.
- getFormats(String) - Method in class java.util.ResourceBundle.Control
-
Returns a List of Strings containing
formats to be used to load resource bundles for the given
baseName.
- getFormatsByArgumentIndex() - Method in class java.text.MessageFormat
-
Gets the formats used for the values passed into
format methods or returned from parse
methods.
- 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.
- getFunctionalInterfaceClass() - Method in class java.lang.invoke.SerializedLambda
-
Get the name of the invoked type to which this
lambda has been converted
- getFunctionalInterfaceMethodName() - Method in class java.lang.invoke.SerializedLambda
-
Get the name of the primary method for the functional interface
to which this lambda has been converted.
- getFunctionalInterfaceMethodSignature() - Method in class java.lang.invoke.SerializedLambda
-
Get the signature of the primary method for the functional
interface to which this lambda has been converted.
- 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.
- getGreatestMinimum(int) - Method in class java.util.Calendar
-
Returns the highest minimum value for the given calendar field
of this Calendar instance.
- getGroupingSeparator() - Method in class java.text.DecimalFormatSymbols
-
Gets the character used for thousands separator.
- getGroupingSize() - Method in class java.text.DecimalFormat
-
Return the grouping size.
- getHeaderField(String) - Method in class java.net.URLConnection
-
Returns the value of the named header field.
- getHeaderField(int) - Method in class java.net.URLConnection
-
Returns the value for the nth header field.
- getHeaderFieldDate(String, long) - Method in class java.net.URLConnection
-
Returns the value of the named field parsed as date.
- getHeaderFieldInt(String, int) - Method in class java.net.URLConnection
-
Returns the value of the named field parsed as a number.
- getHeaderFieldKey(int) - Method in class java.net.URLConnection
-
Returns the key for the nth header field.
- getHeaderFieldLong(String, long) - Method in class java.net.URLConnection
-
Returns the value of the named field parsed as a number.
- getHeaderFields() - Method in class java.net.URLConnection
-
Returns an unmodifiable Map of the header fields.
- getHoldCount() - Method in class java.util.concurrent.locks.ReentrantLock
-
Queries the number of holds on this lock by the current thread.
- getHoldCount() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
-
Queries the number of holds on this write lock by the current
thread.
- 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.
- getHours() - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.get(Calendar.HOUR_OF_DAY).
- getId() - Method in class java.lang.Thread
-
Returns the identifier of this Thread.
- getID() - Method in class java.util.TimeZone
-
Gets the ID of this time zone.
- getIfModifiedSince() - Method in class java.net.URLConnection
-
Returns the value of this object's ifModifiedSince field.
- getImplClass() - Method in class java.lang.invoke.SerializedLambda
-
Get the name of the class containing the implementation
method.
- getImplMethodKind() - Method in class java.lang.invoke.SerializedLambda
-
- getImplMethodName() - Method in class java.lang.invoke.SerializedLambda
-
Get the name of the implementation method.
- getImplMethodSignature() - Method in class java.lang.invoke.SerializedLambda
-
Get the signature of the implementation method.
- 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.
- getIndex() - Method in interface java.text.CharacterIterator
-
Returns the current index.
- getIndex() - Method in class java.text.ParsePosition
-
Retrieve the current parse position.
- getIndex() - Method in exception java.util.regex.PatternSyntaxException
-
Retrieves the error index.
- getInfinity() - Method in class java.text.DecimalFormatSymbols
-
Gets the string used to represent infinity.
- getInput() - Method in exception java.net.URISyntaxException
-
Returns the input string.
- getInputStream() - Method in class java.net.URLConnection
-
Returns an input stream that reads from this open connection.
- getInstance() - Static method in class java.text.DateFormat
-
Get a default date/time formatter that uses the SHORT style for both the
date and the time.
- getInstance() - Static method in class java.text.DateFormatSymbols
-
Gets the DateFormatSymbols instance for the default
locale.
- getInstance(Locale) - Static method in class java.text.DateFormatSymbols
-
Gets the DateFormatSymbols instance for the specified
locale.
- getInstance() - Static method in class java.text.DecimalFormatSymbols
-
Gets the DecimalFormatSymbols instance for the default
locale.
- getInstance(Locale) - Static method in class java.text.DecimalFormatSymbols
-
Gets the DecimalFormatSymbols instance for the specified
locale.
- getInstance() - Static method in class java.text.NumberFormat
-
Returns a general-purpose number format for the current default locale.
- getInstance(Locale) - Static method in class java.text.NumberFormat
-
Returns a general-purpose number format for the specified locale.
- getInstance() - Static method in class java.util.Calendar
-
Gets a calendar using the default time zone and locale.
- getInstance(TimeZone) - Static method in class java.util.Calendar
-
Gets a calendar using the specified time zone and default locale.
- getInstance(Locale) - Static method in class java.util.Calendar
-
Gets a calendar using the default time zone and specified locale.
- getInstance(TimeZone, Locale) - Static method in class java.util.Calendar
-
Gets a calendar with the specified time zone and locale.
- getInstance(String) - Static method in class java.util.Currency
-
Returns the Currency instance for the given currency code.
- getInstance(Locale) - Static method in class java.util.Currency
-
Returns the Currency instance for the country of the
given locale.
- getInstantiatedMethodType() - Method in class java.lang.invoke.SerializedLambda
-
Get the signature of the primary functional interface method
after type variables are substituted with their instantiation
from the capture site.
- 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.
- getIntegerInstance() - Static method in class java.text.NumberFormat
-
Returns an integer number format for the current default locale.
- getIntegerInstance(Locale) - Static method in class java.text.NumberFormat
-
Returns an integer number format for the specified locale.
- getInterfaces() - Method in class java.lang.Class
-
Determines the interfaces implemented by the class or interface
represented by this object.
- getInternationalCurrencySymbol() - Method in class java.text.DecimalFormatSymbols
-
Returns the ISO 4217 currency code of the currency of these
DecimalFormatSymbols.
- getInvocationHandler(Object) - Static method in class java.lang.reflect.Proxy
-
Returns the invocation handler for the specified proxy instance.
- getIterator() - Method in class java.text.AttributedString
-
Creates an AttributedCharacterIterator instance that provides access to the entire contents of
this string.
- getIterator(AttributedCharacterIterator.Attribute[]) - Method in class java.text.AttributedString
-
Creates an AttributedCharacterIterator instance that provides access to
selected contents of this string.
- getIterator(AttributedCharacterIterator.Attribute[], int, int) - Method in class java.text.AttributedString
-
Creates an AttributedCharacterIterator instance that provides access to
selected contents of this string.
- getKeepAliveTime(TimeUnit) - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns the thread keep-alive time, which is the amount of time
that threads in excess of the core pool size may remain
idle before being terminated.
- 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.
- getKey() - Method in exception java.util.MissingResourceException
-
Gets parameter passed by constructor.
- getKeys() - Method in class java.util.PropertyResourceBundle
-
Returns an Enumeration of the keys contained in
this ResourceBundle and its parent bundles.
- getKeys() - Method in class java.util.ResourceBundle
-
Returns an enumeration of the keys.
- getLanguage() - Method in class java.util.Locale
-
Returns the language code of this Locale.
- getLargestPoolSize() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns the largest number of threads that have ever
simultaneously been in the pool.
- getLast() - Method in class java.util.ArrayDeque
-
- getLast() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- getLast() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- 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.
- getLastModified() - Method in class java.net.URLConnection
-
Returns the value of the last-modified header field.
- getLeastMaximum(int) - Method in class java.util.Calendar
-
Returns the lowest maximum value for the given calendar field
of this Calendar instance.
- 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.
- getLimits() - Method in class java.text.ChoiceFormat
-
Get the limits passed in the constructor.
- getLineNumber() - Method in class java.io.LineNumberInputStream
-
Deprecated.
Returns the current line number.
- getLineNumber() - Method in class java.io.LineNumberReader
-
Get the current line number.
- 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.
- getLocale() - Method in class java.text.MessageFormat
-
Gets the locale that's used when creating or comparing subformats.
- getLocale() - Method in class java.util.ResourceBundle
-
Returns the locale of this resource bundle.
- 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.
- getLocalPatternChars() - Method in class java.text.DateFormatSymbols
-
Gets localized date-time pattern characters.
- 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).
- getMaximum(int) - Method in class java.util.Calendar
-
Returns the maximum value for the given calendar field of this
Calendar instance.
- getMaximumFractionDigits() - Method in class java.text.DecimalFormat
-
Gets the maximum number of digits allowed in the fraction portion of a
number.
- getMaximumFractionDigits() - Method in class java.text.NumberFormat
-
Returns the maximum number of digits allowed in the fraction portion of a
number.
- getMaximumIntegerDigits() - Method in class java.text.DecimalFormat
-
Gets the maximum number of digits allowed in the integer portion of a
number.
- getMaximumIntegerDigits() - Method in class java.text.NumberFormat
-
Returns the maximum number of digits allowed in the integer portion of a
number.
- getMaximumPoolSize() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns the maximum allowed number of threads.
- 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.
- getMessage() - Method in exception java.util.regex.PatternSyntaxException
-
Returns a multi-line string containing the description of the syntax
error and its index, the erroneous regular-expression pattern, and a
visual indication of the error index within the pattern.
- 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.
- 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.
- getMinimalDaysInFirstWeek() - Method in class java.util.Calendar
-
Gets what the minimal days required in the first week of the year are;
e.g., if the first week is defined as one that contains the first day
of the first month of a year, this method returns 1.
- getMinimum(int) - Method in class java.util.Calendar
-
Returns the minimum value for the given calendar field of this
Calendar instance.
- getMinimumFractionDigits() - Method in class java.text.DecimalFormat
-
Gets the minimum number of digits allowed in the fraction portion of a
number.
- getMinimumFractionDigits() - Method in class java.text.NumberFormat
-
Returns the minimum number of digits allowed in the fraction portion of a
number.
- getMinimumIntegerDigits() - Method in class java.text.DecimalFormat
-
Gets the minimum number of digits allowed in the integer portion of a
number.
- getMinimumIntegerDigits() - Method in class java.text.NumberFormat
-
Returns the minimum number of digits allowed in the integer portion of a
number.
- getMinusSign() - Method in class java.text.DecimalFormatSymbols
-
Gets the character used to represent minus sign.
- getMinutes() - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.get(Calendar.MINUTE).
- 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.
- getMonetaryDecimalSeparator() - Method in class java.text.DecimalFormatSymbols
-
Returns the monetary decimal separator.
- getMonth() - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.get(Calendar.MONTH).
- getMonths() - Method in class java.text.DateFormatSymbols
-
Gets month strings.
- getMultiplier() - Method in class java.text.DecimalFormat
-
Gets the multiplier for use in percent, per mille, and similar
formats.
- 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.text.AttributedCharacterIterator.Attribute
-
Returns the name of the attribute.
- 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.
- getNaN() - Method in class java.text.DecimalFormatSymbols
-
Gets the string used to represent "not a number".
- getNegativePrefix() - Method in class java.text.DecimalFormat
-
Get the negative prefix.
- getNegativeSuffix() - Method in class java.text.DecimalFormat
-
Get the negative suffix.
- getNewValue() - Method in class java.beans.PropertyChangeEvent
-
Gets the new value for the property, expressed as an Object.
- getNoFallbackControl(List<String>) - Static method in class java.util.ResourceBundle.Control
-
Returns a
ResourceBundle.Control in which the
getFormats method returns the specified
formats and the
getFallbackLocale
method returns
null.
- getNumberFormat() - Method in class java.text.DateFormat
-
Gets the number formatter which this date/time formatter uses to
format and parse a time.
- getNumberInstance() - Static method in class java.text.NumberFormat
-
Returns a general-purpose number format for the current default locale.
- getNumberInstance(Locale) - Static method in class java.text.NumberFormat
-
Returns a general-purpose number format for the specified locale.
- getNumberWaiting() - Method in class java.util.concurrent.CyclicBarrier
-
Returns the number of parties currently waiting at the barrier.
- getNumericCode() - Method in class java.util.Currency
-
Returns the ISO 4217 numeric code of this currency.
- 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.
- getObject(String) - Method in class java.util.ResourceBundle
-
Gets an object for the given key from this resource bundle or one of its parents.
- 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.
- getOffset(long) - Method in class java.util.SimpleTimeZone
-
Returns the offset of this time zone from UTC at the given
time.
- getOffset(int, int, int, int, int, int) - Method in class java.util.SimpleTimeZone
-
Returns the difference in milliseconds between local time and
UTC, taking into account both the raw offset and the effect of
daylight saving, for the specified date and time.
- getOffset(int, int, int, int, int, int) - Method in class java.util.TimeZone
-
Gets the time zone offset, for current date, modified in case of
daylight savings.
- getOffset(long) - Method in class java.util.TimeZone
-
Returns the offset of this time zone from UTC at the specified
date.
- getOldValue() - Method in class java.beans.PropertyChangeEvent
-
Gets the old value for the property, expressed as an Object.
- getOutputStream() - Method in class java.net.URLConnection
-
Returns an output stream that writes to this connection.
- getOwner() - Method in class java.util.concurrent.locks.ReentrantLock
-
Returns the thread that currently owns this lock, or
null if not owned.
- getOwner() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Returns the thread that currently owns the write lock, or
null if not owned.
- getParallelism() - Method in class java.util.concurrent.ForkJoinPool
-
Returns the targeted parallelism level of this pool.
- 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.concurrent.Phaser
-
Returns the parent of this phaser, or null if none.
- 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.
- getParties() - Method in class java.util.concurrent.CyclicBarrier
-
Returns the number of parties required to trip this barrier.
- 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.
- getPattern() - Method in exception java.util.regex.PatternSyntaxException
-
Retrieves the erroneous regular-expression pattern.
- getPatternSeparator() - Method in class java.text.DecimalFormatSymbols
-
Gets the character used to separate positive and negative subpatterns
in a pattern.
- getPercent() - Method in class java.text.DecimalFormatSymbols
-
Gets the character used for percent sign.
- getPercentInstance() - Static method in class java.text.NumberFormat
-
Returns a percentage format for the current default locale.
- getPercentInstance(Locale) - Static method in class java.text.NumberFormat
-
Returns a percentage format for the specified locale.
- getPerMill() - Method in class java.text.DecimalFormatSymbols
-
Gets the character used for per mille sign.
- getPhase() - Method in class java.util.concurrent.Phaser
-
Returns the current phase number.
- getPool() - Static method in class java.util.concurrent.ForkJoinTask
-
Returns the pool hosting the current task execution, or null
if this task is executing outside of any ForkJoinPool.
- getPool() - Method in class java.util.concurrent.ForkJoinWorkerThread
-
Returns the pool hosting this thread.
- getPoolIndex() - Method in class java.util.concurrent.ForkJoinWorkerThread
-
Returns the index number of this thread in its pool.
- getPoolSize() - Method in class java.util.concurrent.ForkJoinPool
-
Returns the number of worker threads that have started but not
yet terminated.
- getPoolSize() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns the current number of threads in the pool.
- 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.
- getPositivePrefix() - Method in class java.text.DecimalFormat
-
Get the positive prefix.
- getPositiveSuffix() - Method in class java.text.DecimalFormat
-
Get the positive suffix.
- 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.
- getProperties() - Static method in class java.lang.System
-
- getProperty(String) - Static method in class java.lang.System
-
- getProperty(String, String) - Static method in class java.lang.System
-
- getProperty(String) - Method in class java.util.Properties
-
Searches for the property with the specified key in this property list.
- getProperty(String, String) - Method in class java.util.Properties
-
Searches for the property with the specified key in this property list.
- 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.
- getQueue() - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Returns the task queue used by this executor.
- getQueue() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns the task queue used by this executor.
- getQueuedReaderThreads() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Returns a collection containing threads that may be waiting to
acquire the read lock.
- getQueuedSubmissionCount() - Method in class java.util.concurrent.ForkJoinPool
-
Returns an estimate of the number of tasks submitted to this
pool that have not yet begun executing.
- getQueuedTaskCount() - Method in class java.util.concurrent.ForkJoinPool
-
Returns an estimate of the total number of tasks currently held
in queues by worker threads (but not including tasks submitted
to the pool that have not begun executing).
- getQueuedTaskCount() - Static method in class java.util.concurrent.ForkJoinTask
-
Returns an estimate of the number of tasks that have been
forked by the current worker thread but not yet executed.
- getQueuedThreads() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns a collection containing threads that may be waiting to
acquire.
- getQueuedThreads() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns a collection containing threads that may be waiting to
acquire.
- getQueuedThreads() - Method in class java.util.concurrent.locks.ReentrantLock
-
Returns a collection containing threads that may be waiting to
acquire this lock.
- getQueuedThreads() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Returns a collection containing threads that may be waiting to
acquire either the read or write lock.
- getQueuedThreads() - Method in class java.util.concurrent.Semaphore
-
Returns a collection containing threads that may be waiting to acquire.
- getQueuedWriterThreads() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Returns a collection containing threads that may be waiting to
acquire the write lock.
- getQueueLength() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns an estimate of the number of threads waiting to
acquire.
- getQueueLength() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns an estimate of the number of threads waiting to
acquire.
- getQueueLength() - Method in class java.util.concurrent.locks.ReentrantLock
-
Returns an estimate of the number of threads waiting to
acquire this lock.
- getQueueLength() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Returns an estimate of the number of threads waiting to acquire
either the read or write lock.
- getQueueLength() - Method in class java.util.concurrent.Semaphore
-
Returns an estimate of the number of threads waiting to acquire.
- 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.
- getRawOffset() - Method in class java.util.SimpleTimeZone
-
Gets the GMT offset for this time zone.
- getRawOffset() - Method in class java.util.TimeZone
-
Returns the amount of time in milliseconds to add to UTC to get
standard time in this time zone.
- 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.
- getRawResult() - Method in class java.util.concurrent.ForkJoinTask
-
Returns the result that would be returned by
ForkJoinTask.join(), even
if this task completed abnormally, or
null if this task
is not known to have been completed.
- getRawResult() - Method in class java.util.concurrent.RecursiveAction
-
Always returns null.
- getRawResult() - Method in class java.util.concurrent.RecursiveTask
-
- 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.
- getReadHoldCount() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Queries the number of reentrant read holds on this lock by the
current thread.
- getReadLockCount() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Queries the number of read locks held for this lock.
- getReadTimeout() - Method in class java.net.URLConnection
-
Returns setting for read timeout.
- 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.
- getRegisteredParties() - Method in class java.util.concurrent.Phaser
-
Returns the number of parties registered at this phaser.
- getRejectedExecutionHandler() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns the current handler for unexecutable tasks.
- getRemoveOnCancelPolicy() - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Gets the policy on whether cancelled tasks should be immediately
removed from the work queue at time of cancellation.
- getRequestProperties() - Method in class java.net.URLConnection
-
Returns an unmodifiable Map of general request
properties for this connection.
- getRequestProperty(String) - Method in class java.net.URLConnection
-
Returns the value of the named general request property for this
connection.
- 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
- 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.
- getRoot() - Method in class java.util.concurrent.Phaser
-
Returns the root ancestor of this phaser, which is the same as
this phaser if it has no parent.
- getRoundingMode() - Method in class java.math.MathContext
-
Returns the roundingMode setting.
- getRoundingMode() - Method in class java.text.DecimalFormat
-
- getRoundingMode() - Method in class java.text.NumberFormat
-
- getRunLimit() - Method in interface java.text.AttributedCharacterIterator
-
Returns the index of the first character following the run
with respect to all attributes containing the current character.
- getRunLimit(AttributedCharacterIterator.Attribute) - Method in interface java.text.AttributedCharacterIterator
-
Returns the index of the first character following the run
with respect to the given attribute containing the current character.
- getRunLimit(Set<? extends AttributedCharacterIterator.Attribute>) - Method in interface java.text.AttributedCharacterIterator
-
Returns the index of the first character following the run
with respect to the given attributes containing the current character.
- getRunningThreadCount() - Method in class java.util.concurrent.ForkJoinPool
-
Returns an estimate of the number of worker threads that are
not blocked waiting to join tasks or for other managed
synchronization.
- getRunStart() - Method in interface java.text.AttributedCharacterIterator
-
Returns the index of the first character of the run
with respect to all attributes containing the current character.
- getRunStart(AttributedCharacterIterator.Attribute) - Method in interface java.text.AttributedCharacterIterator
-
Returns the index of the first character of the run
with respect to the given attribute containing the current character.
- getRunStart(Set<? extends AttributedCharacterIterator.Attribute>) - Method in interface java.text.AttributedCharacterIterator
-
Returns the index of the first character of the run
with respect to the given attributes containing the current character.
- 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.
- getScript() - Method in class java.util.Locale
-
Returns the script for this locale, which should
either be the empty string or an ISO 15924 4-letter script
code.
- getSeconds() - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.get(Calendar.SECOND).
- 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.
- getSharedQueuedThreads() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns a collection containing threads that may be waiting to
acquire in shared mode.
- getSharedQueuedThreads() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns a collection containing threads that may be waiting to
acquire in shared mode.
- 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.
- getShortMonths() - Method in class java.text.DateFormatSymbols
-
Gets short month strings.
- getShortWeekdays() - Method in class java.text.DateFormatSymbols
-
Gets short weekday strings.
- getSimpleName() - Method in class java.lang.Class
-
Returns the simple name of the underlying class as given in the
source code.
- 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.
- getState() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns the current value of synchronization state.
- getState() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns the current value of synchronization state.
- getStealCount() - Method in class java.util.concurrent.ForkJoinPool
-
Returns an estimate of the total number of tasks stolen from
one thread's work queue by another.
- getString(String) - Method in class java.util.ResourceBundle
-
Gets a string for the given key from this resource bundle or one of its parents.
- getStringArray(String) - Method in class java.util.ResourceBundle
-
Gets a string array for the given key from this resource bundle or one of its parents.
- 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.
- getSurplusQueuedTaskCount() - Static method in class java.util.concurrent.ForkJoinTask
-
Returns an estimate of how many more locally queued tasks are
held by the current worker thread than there are other worker
threads that might steal them.
- getSymbol() - Method in class java.util.Currency
-
Gets the symbol of this currency for the default locale.
- getSymbol(Locale) - Method in class java.util.Currency
-
Gets the symbol of this currency for the specified locale.
- 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.
- getTarget() - Method in class java.lang.invoke.CallSite
-
Returns the target method of the call site, according to the
behavior defined by this call site's specific class.
- getTargetException() - Method in exception java.lang.reflect.InvocationTargetException
-
Get the thrown target exception.
- getTaskCount() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns the approximate total number of tasks that have ever been
scheduled for execution.
- getThreadFactory() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns the thread factory used to create new threads.
- 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.Calendar
-
Returns a
Date object representing this
Calendar's time value (millisecond offset from the
Epoch").
- getTime() - Method in class java.util.Date
-
Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT
represented by this Date object.
- getTimeInMillis() - Method in class java.util.Calendar
-
Returns this Calendar's time value in milliseconds.
- getTimeInstance() - Static method in class java.text.DateFormat
-
Gets the time formatter with the default formatting style
for the default locale.
- getTimeInstance(int) - Static method in class java.text.DateFormat
-
Gets the time formatter with the given formatting style
for the default locale.
- getTimeInstance(int, Locale) - Static method in class java.text.DateFormat
-
Gets the time formatter with the given formatting style
for the given locale.
- getTimeToLive(String, Locale) - Method in class java.util.ResourceBundle.Control
-
Returns the time-to-live (TTL) value for resource bundles that
are loaded under this
ResourceBundle.Control.
- getTimeZone() - Method in class java.text.DateFormat
-
Gets the time zone.
- getTimeZone() - Method in class java.util.Calendar
-
Gets the time zone.
- getTimeZone(String) - Static method in class java.util.TimeZone
-
Gets the TimeZone for the given ID.
- getTimezoneOffset() - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by -(Calendar.get(Calendar.ZONE_OFFSET) +
Calendar.get(Calendar.DST_OFFSET)) / (60 * 1000).
- 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(int) - Static method in class java.lang.Character
-
- 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.
- getUnarrivedParties() - Method in class java.util.concurrent.Phaser
-
Returns the number of registered parties that have not yet
arrived at the current phase of this phaser.
- getUncaughtExceptionHandler() - Method in class java.lang.Thread
-
Returns the handler invoked when this thread abruptly terminates
due to an uncaught exception.
- getUncaughtExceptionHandler() - Method in class java.util.concurrent.ForkJoinPool
-
Returns the handler for internal worker threads that terminate
due to unrecoverable errors encountered while executing tasks.
- getUndeclaredThrowable() - Method in exception java.lang.reflect.UndeclaredThrowableException
-
Returns the Throwable instance wrapped in this
UndeclaredThrowableException, which may be null.
- getUnicodeLocaleAttributes() - Method in class java.util.Locale
-
Returns the set of unicode locale attributes associated with
this locale, or the empty set if it has no attributes.
- getUnicodeLocaleKeys() - Method in class java.util.Locale
-
Returns the set of Unicode locale keys defined by this locale, or the empty set if
this locale has none.
- getUnicodeLocaleType(String) - Method in class java.util.Locale
-
Returns the Unicode locale type associated with the specified Unicode locale key
for this locale.
- getURL() - Method in class java.net.URLConnection
-
Returns the value of this URLConnection's URL
field.
- 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.
- getUseCaches() - Method in class java.net.URLConnection
-
Returns the value of this URLConnection's
useCaches field.
- 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.text.Annotation
-
Returns the value of the attribute, which may be null.
- 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.
- getVariant() - Method in class java.util.Locale
-
Returns the variant code for this locale.
- 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.
- getWaitingConsumerCount() - Method in class java.util.concurrent.LinkedTransferQueue
-
- getWaitingConsumerCount() - Method in interface java.util.concurrent.TransferQueue
-
- getWaitingThreads() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
-
Returns a collection containing those threads that may be
waiting on this Condition.
- getWaitingThreads(AbstractQueuedLongSynchronizer.ConditionObject) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns a collection containing those threads that may be
waiting on the given condition associated with this
synchronizer.
- getWaitingThreads() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
Returns a collection containing those threads that may be
waiting on this Condition.
- getWaitingThreads(AbstractQueuedSynchronizer.ConditionObject) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns a collection containing those threads that may be
waiting on the given condition associated with this
synchronizer.
- getWaitingThreads(Condition) - Method in class java.util.concurrent.locks.ReentrantLock
-
Returns a collection containing those threads that may be
waiting on the given condition associated with this lock.
- getWaitingThreads(Condition) - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Returns a collection containing those threads that may be
waiting on the given condition associated with the write lock.
- getWaitQueueLength() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
-
Returns an estimate of the number of threads waiting on
this condition.
- getWaitQueueLength(AbstractQueuedLongSynchronizer.ConditionObject) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns an estimate of the number of threads waiting on the
given condition associated with this synchronizer.
- getWaitQueueLength() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
Returns an estimate of the number of threads waiting on
this condition.
- getWaitQueueLength(AbstractQueuedSynchronizer.ConditionObject) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns an estimate of the number of threads waiting on the
given condition associated with this synchronizer.
- getWaitQueueLength(Condition) - Method in class java.util.concurrent.locks.ReentrantLock
-
Returns an estimate of the number of threads waiting on the
given condition associated with this lock.
- getWaitQueueLength(Condition) - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Returns an estimate of the number of threads waiting on the
given condition associated with the write lock.
- getWeekdays() - Method in class java.text.DateFormatSymbols
-
Gets weekday strings.
- getWeeksInWeekYear() - Method in class java.util.Calendar
-
Returns the number of weeks in the week year represented by this
Calendar.
- getWeekYear() - Method in class java.util.Calendar
-
Returns the week year represented by this Calendar.
- getWriteHoldCount() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Queries the number of reentrant write holds on this lock by the
current thread.
- getYear() - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.get(Calendar.YEAR) - 1900.
- getZeroDigit() - Method in class java.text.DecimalFormatSymbols
-
Gets the character used for zero.
- getZoneStrings() - Method in class java.text.DateFormatSymbols
-
Gets time zone strings.
- 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.
- group() - Method in class java.util.regex.Matcher
-
Returns the input subsequence matched by the previous match.
- group(int) - Method in class java.util.regex.Matcher
-
Returns the input subsequence captured by the given group during the
previous match operation.
- group(String) - Method in class java.util.regex.Matcher
-
Returns the input subsequence captured by the given
named-capturing group during the previous
match operation.
- group() - Method in interface java.util.regex.MatchResult
-
Returns the input subsequence matched by the previous match.
- group(int) - Method in interface java.util.regex.MatchResult
-
Returns the input subsequence captured by the given group during the
previous match operation.
- groupCount() - Method in class java.util.regex.Matcher
-
Returns the number of capturing groups in this matcher's pattern.
- groupCount() - Method in interface java.util.regex.MatchResult
-
Returns the number of capturing groups in this match result's pattern.
- GROUPING_SEPARATOR - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the grouping separator field.
- guessContentTypeFromName(String) - Static method in class java.net.URLConnection
-
Tries to determine the content type of an object, based
on the specified "file" component of a URL.
- guessContentTypeFromStream(InputStream) - Static method in class java.net.URLConnection
-
Tries to determine the type of an input stream based on the
characters at the beginning of the input stream.
- h - Variable in class java.lang.reflect.Proxy
-
the invocation handler for this proxy instance.
- handleGetObject(String) - Method in class java.util.PropertyResourceBundle
-
- handleGetObject(String) - Method in class java.util.ResourceBundle
-
Gets an object for the given key from this resource bundle.
- handleKeySet() - Method in class java.util.PropertyResourceBundle
-
Returns a Set of the keys contained
only in this ResourceBundle.
- handleKeySet() - Method in class java.util.ResourceBundle
-
Returns a Set of the keys contained only
in this ResourceBundle.
- harness(String) - Static method in class org.apidesign.bck2brwsr.launcher.impl.Console
-
- hasAnchoringBounds() - Method in class java.util.regex.Matcher
-
Queries the anchoring of region bounds for this matcher.
- hasContended() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Queries whether any threads have ever contended to acquire this
synchronizer; that is if an acquire method has ever blocked.
- hasContended() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Queries whether any threads have ever contended to acquire this
synchronizer; that is if an acquire method has ever blocked.
- 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:
- 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.invoke.MethodType
-
Returns the hash code value for this method type.
- 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.nio.charset.Charset
-
Computes a hashcode for this charset.
- hashCode() - Method in class java.text.AttributedCharacterIterator.Attribute
-
Returns a hash code value for the object.
- hashCode() - Method in class java.text.ChoiceFormat
-
Generates a hash code for the message format object.
- hashCode() - Method in class java.text.DateFormat
-
Overrides hashCode
- hashCode() - Method in class java.text.DateFormatSymbols
-
Override hashCode.
- hashCode() - Method in class java.text.DecimalFormat
-
Overrides hashCode
- hashCode() - Method in class java.text.DecimalFormatSymbols
-
Override hashCode.
- hashCode() - Method in class java.text.FieldPosition
-
Returns a hash code for this FieldPosition.
- hashCode() - Method in class java.text.MessageFormat
-
Generates a hash code for the message format object.
- hashCode() - Method in class java.text.NumberFormat
-
Overrides hashCode
- hashCode() - Method in class java.text.ParsePosition
-
Returns a hash code for this ParsePosition.
- hashCode() - Method in class java.text.SimpleDateFormat
-
Returns the hash code value for this SimpleDateFormat object.
- 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 class java.util.BitSet
-
Returns the hash code value for this bit set.
- hashCode() - Method in class java.util.Calendar
-
Returns a hash code for this calendar.
- hashCode() - Method in interface java.util.Collection
-
Returns the hash code value for this collection.
- hashCode() - Method in class java.util.concurrent.ConcurrentHashMap
-
- hashCode() - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns the hash code value for this list.
- hashCode() - Method in class java.util.Date
-
Returns a hash code value for this object.
- hashCode() - Method in class java.util.EnumMap
-
Returns the hash code value for this map.
- 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.Locale
-
Override hashCode.
- 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.SimpleTimeZone
-
Generates the hash code for the SimpleDateFormat object.
- hashCode() - Method in class java.util.Vector
-
Returns the hash code value for this Vector.
- 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.
- hasPrimitives() - Method in class java.lang.invoke.MethodType
-
Reports if this type contains a primitive argument or return value.
- hasQueuedPredecessors() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Queries whether any threads have been waiting to acquire longer
than the current thread.
- hasQueuedPredecessors() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Queries whether any threads have been waiting to acquire longer
than the current thread.
- hasQueuedSubmissions() - Method in class java.util.concurrent.ForkJoinPool
-
Returns true if there are any tasks submitted to this
pool that have not yet begun executing.
- hasQueuedThread(Thread) - Method in class java.util.concurrent.locks.ReentrantLock
-
Queries whether the given thread is waiting to acquire this
lock.
- hasQueuedThread(Thread) - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Queries whether the given thread is waiting to acquire either
the read or write lock.
- hasQueuedThreads() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Queries whether any threads are waiting to acquire.
- hasQueuedThreads() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Queries whether any threads are waiting to acquire.
- hasQueuedThreads() - Method in class java.util.concurrent.locks.ReentrantLock
-
Queries whether any threads are waiting to acquire this lock.
- hasQueuedThreads() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Queries whether any threads are waiting to acquire the read or
write lock.
- hasQueuedThreads() - Method in class java.util.concurrent.Semaphore
-
Queries whether any threads are waiting to acquire.
- hasSameRules(TimeZone) - Method in class java.util.SimpleTimeZone
-
Returns true if this zone has the same rules and offset as another zone.
- hasSameRules(TimeZone) - Method in class java.util.TimeZone
-
Returns true if this zone has the same rule and offset as another zone.
- hasTransparentBounds() - Method in class java.util.regex.Matcher
-
Queries the transparency of region bounds for this matcher.
- hasWaiters() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
-
Queries whether any threads are waiting on this condition.
- hasWaiters(AbstractQueuedLongSynchronizer.ConditionObject) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Queries whether any threads are waiting on the given condition
associated with this synchronizer.
- hasWaiters() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
Queries whether any threads are waiting on this condition.
- hasWaiters(AbstractQueuedSynchronizer.ConditionObject) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Queries whether any threads are waiting on the given condition
associated with this synchronizer.
- hasWaiters(Condition) - Method in class java.util.concurrent.locks.ReentrantLock
-
Queries whether any threads are waiting on the given condition
associated with this lock.
- hasWaiters(Condition) - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Queries whether any threads are waiting on the given condition
associated with the write lock.
- hasWaitingConsumer() - Method in class java.util.concurrent.LinkedTransferQueue
-
- hasWaitingConsumer() - Method in interface java.util.concurrent.TransferQueue
-
- hasWrappers() - Method in class java.lang.invoke.MethodType
-
Reports if this type contains a wrapper argument or return value.
- headMap(K, boolean) - Method in interface java.util.concurrent.ConcurrentNavigableMap
-
- headMap(K) - Method in interface java.util.concurrent.ConcurrentNavigableMap
-
- headMap(K, boolean) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
- headMap(K) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
- 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 class java.util.concurrent.ConcurrentSkipListSet
-
- headSet(E) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- 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
-
- helpQuiesce() - Static method in class java.util.concurrent.ForkJoinTask
-
Possibly executes tasks until the pool hosting the current task
is quiescent.
- higher(E) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- 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 class java.util.concurrent.ConcurrentSkipListMap
-
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 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 class java.util.concurrent.ConcurrentSkipListMap
-
- 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
-
- hitEnd() - Method in class java.util.regex.Matcher
-
Returns true if the end of input was hit by the search engine in
the last match operation performed by this matcher.
- 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.
- HOUR - Static variable in class java.util.Calendar
-
Field number for get and set indicating the
hour of the morning or afternoon.
- HOUR0 - Static variable in class java.text.DateFormat.Field
-
Constant identifying the hour field, where the legal values are
0 to 11.
- HOUR0_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for zero-based HOUR field alignment.
- HOUR1 - Static variable in class java.text.DateFormat.Field
-
Constant identifying the hour field, where the legal values are
1 to 12.
- HOUR1_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for one-based HOUR field alignment.
- HOUR_OF_DAY - Static variable in class java.util.Calendar
-
Field number for get and set indicating the
hour of the day.
- HOUR_OF_DAY0 - Static variable in class java.text.DateFormat.Field
-
Constant identifying the hour of day field, where the legal values
are 0 to 23.
- HOUR_OF_DAY0_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for zero-based HOUR_OF_DAY field alignment.
- HOUR_OF_DAY1 - Static variable in class java.text.DateFormat.Field
-
Constant identifying the hour of day field, where the legal values
are 1 to 24.
- HOUR_OF_DAY1_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for one-based HOUR_OF_DAY field alignment.
- 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.
- ifModifiedSince - Variable in class java.net.URLConnection
-
Some protocols support skipping the fetching of the object unless
the object has been modified more recently than a certain time.
- 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 ? null : cause.toString()) (which
typically contains the class and detail message of cause).
- IllegalCharsetNameException - Exception in java.nio.charset
-
Unchecked exception thrown when a string that is not a
legal charset name is used as such.
- IllegalCharsetNameException(String) - Constructor for exception java.nio.charset.IllegalCharsetNameException
-
Constructs an instance of this class.
- IllegalMonitorStateException - Exception in java.lang
-
Thrown to indicate that a thread has attempted to wait on an
object's monitor or to notify other threads waiting on an object's
monitor without owning the specified monitor.
- IllegalMonitorStateException() - Constructor for exception java.lang.IllegalMonitorStateException
-
Constructs an IllegalMonitorStateException with no
detail message.
- IllegalMonitorStateException(String) - Constructor for exception java.lang.IllegalMonitorStateException
-
Constructs an IllegalMonitorStateException with the
specified detail message.
- 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 ? null : cause.toString()) (which
typically contains the class and detail message of cause).
- implReplaceWith(String) - Method in class java.nio.charset.CharsetDecoder
-
Reports a change to this decoder's replacement value.
- implReplaceWith(byte[]) - Method in class java.nio.charset.CharsetEncoder
-
Reports a change to this encoder's replacement value.
- implReset() - Method in class java.nio.charset.CharsetDecoder
-
Resets this decoder, clearing any charset-specific internal state.
- implReset() - Method in class java.nio.charset.CharsetEncoder
-
Resets this encoder, clearing any charset-specific internal state.
- in - Static variable in class java.io.FileDescriptor
-
A handle to the standard input stream.
- in - Variable in class java.io.FilterInputStream
-
The input stream to be filtered.
- in - Variable in class java.io.FilterReader
-
The underlying character-input stream.
- in(Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Creates a lookup on the specified new lookup class.
- in - Static variable in class java.lang.System
-
- 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.
- IncompleteAnnotationException - Exception in java.lang.annotation
-
Thrown to indicate that a program has attempted to access an element of
an annotation type that was added to the annotation type definition after
the annotation was compiled (or serialized).
- IncompleteAnnotationException(Class<? extends Annotation>, String) - Constructor for exception java.lang.annotation.IncompleteAnnotationException
-
Constructs an IncompleteAnnotationException to indicate that
the named element was missing from the specified annotation type.
- incrementAndGet() - Method in class java.util.concurrent.atomic.AtomicInteger
-
Atomically increments by one the current value.
- incrementAndGet(int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Atomically increments by one the element at index i.
- incrementAndGet(T) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Atomically increments by one the current value of the field of the
given object managed by this updater.
- incrementAndGet() - Method in class java.util.concurrent.atomic.AtomicLong
-
Atomically increments by one the current value.
- incrementAndGet(int) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Atomically increments by one the element at index i.
- incrementAndGet(T) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Atomically increments by one the current value of the field of the
given object managed by this updater.
- inDaylightTime(Date) - Method in class java.util.SimpleTimeZone
-
Queries if the given date is in daylight saving time.
- inDaylightTime(Date) - Method in class java.util.TimeZone
-
Queries if the given date is in Daylight Saving Time in
this time zone.
- 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.concurrent.CopyOnWriteArrayList
-
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(E, int) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns the index of the first occurrence of the specified element in
this list, searching forwards from index, or returns -1 if
the element is not found.
- 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.
- 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.
- inForkJoinPool() - Static method in class java.util.concurrent.ForkJoinTask
-
Returns
true if the current thread is a
ForkJoinWorkerThread executing as a ForkJoinPool computation.
- Inherited - Annotation Type in java.lang.annotation
-
Indicates that an annotation type is automatically inherited.
- 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.
- initialize() - Method in class org.apidesign.bck2brwsr.launcher.Launcher
-
Initializes the launcher.
- initialValue() - Method in class java.lang.ThreadLocal
-
Returns the current thread's "initial value" for this
thread-local variable.
- INPUT_METHOD_SEGMENT - Static variable in class java.text.AttributedCharacterIterator.Attribute
-
Attribute key for input method segments.
- 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.
- insertParameterTypes(int, Class<?>...) - Method in class java.lang.invoke.MethodType
-
Finds or creates a method type with additional parameter types.
- insertParameterTypes(int, List<Class<?>>) - Method in class java.lang.invoke.MethodType
-
Finds or creates a method type with additional parameter types.
- 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.
- INTEGER - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the integer field.
- INTEGER_FIELD - Static variable in class java.text.NumberFormat
-
Field constant used to construct a FieldPosition object.
- 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.
- internalGet(int) - Method in class java.util.Calendar
-
Returns the value of the given calendar field.
- 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.
- intersects(BitSet) - Method in class java.util.BitSet
-
Returns true if the specified BitSet has any bits set to
true that are also set to true in this BitSet.
- 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.concurrent.atomic.AtomicInteger
-
- intValue() - Method in class java.util.concurrent.atomic.AtomicLong
-
- 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.
- InvocationContext - Class in org.apidesign.bck2brwsr.launcher
-
Represents individual method invocation, its context and its result.
- 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 in class java.lang.invoke.MethodHandle
-
Invokes the method handle, allowing any caller type descriptor,
and optionally performing conversions on arguments and return values.
- 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.
- invoke(ForkJoinTask<T>) - Method in class java.util.concurrent.ForkJoinPool
-
Performs the given task, returning its result upon completion.
- invoke() - Method in class java.util.concurrent.ForkJoinTask
-
Commences performing this task, awaits its completion if
necessary, and returns its result, or throws an (unchecked)
RuntimeException or Error if the underlying
computation did so.
- invoke() - Method in class org.apidesign.bck2brwsr.launcher.InvocationContext
-
Invokes the associated method.
- invoke(int[]) - Method in class org.apidesign.bck2brwsr.launcher.InvocationContext
-
Invokes the associated method.
- invokeAll(Collection<? extends Callable<T>>) - Method in class java.util.concurrent.AbstractExecutorService
-
- invokeAll(Collection<? extends Callable<T>>, long, TimeUnit) - Method in class java.util.concurrent.AbstractExecutorService
-
- invokeAll(Collection<? extends Callable<T>>) - Method in interface java.util.concurrent.ExecutorService
-
Executes the given tasks, returning a list of Futures holding
their status and results when all complete.
- invokeAll(Collection<? extends Callable<T>>, long, TimeUnit) - Method in interface java.util.concurrent.ExecutorService
-
Executes the given tasks, returning a list of Futures holding
their status and results
when all complete or the timeout expires, whichever happens first.
- invokeAll(Collection<? extends Callable<T>>) - Method in class java.util.concurrent.ForkJoinPool
-
- invokeAll(ForkJoinTask<?>, ForkJoinTask<?>) - Static method in class java.util.concurrent.ForkJoinTask
-
Forks the given tasks, returning when isDone holds for
each task or an (unchecked) exception is encountered, in which
case the exception is rethrown.
- invokeAll(ForkJoinTask<?>...) - Static method in class java.util.concurrent.ForkJoinTask
-
Forks the given tasks, returning when isDone holds for
each task or an (unchecked) exception is encountered, in which
case the exception is rethrown.
- invokeAll(Collection<T>) - Static method in class java.util.concurrent.ForkJoinTask
-
Forks all tasks in the specified collection, returning when
isDone holds for each task or an (unchecked) exception
is encountered, in which case the exception is rethrown.
- invokeAny(Collection<? extends Callable<T>>) - Method in class java.util.concurrent.AbstractExecutorService
-
- invokeAny(Collection<? extends Callable<T>>, long, TimeUnit) - Method in class java.util.concurrent.AbstractExecutorService
-
- invokeAny(Collection<? extends Callable<T>>) - Method in interface java.util.concurrent.ExecutorService
-
Executes the given tasks, returning the result
of one that has completed successfully (i.e., without throwing
an exception), if any do.
- invokeAny(Collection<? extends Callable<T>>, long, TimeUnit) - Method in interface java.util.concurrent.ExecutorService
-
Executes the given tasks, returning the result
of one that has completed successfully (i.e., without throwing
an exception), if any do before the given timeout elapses.
- invokeExact(Object...) - Method in class java.lang.invoke.MethodHandle
-
Invokes the method handle, allowing any caller type descriptor, but requiring an exact type match.
- invokeWithArguments(Object...) - Method in class java.lang.invoke.MethodHandle
-
Performs a variable arity invocation, passing the arguments in the given list
to the method handle, as if via an inexact
invoke from a call site
which mentions only the type
Object, and whose arity is the length
of the argument list.
- invokeWithArguments(List<?>) - Method in class java.lang.invoke.MethodHandle
-
Performs a variable arity invocation, passing the arguments in the given array
to the method handle, as if via an inexact
invoke from a call site
which mentions only the type
Object, and whose arity is the length
of the argument array.
- 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 (cause==null ? null : cause.toString())
(which typically contains the class and detail message of cause).
- 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.
- isAlphabetic(int) - Static method in class java.lang.Character
-
- 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.
- isAnonymousClass() - Method in class java.lang.Class
-
Returns true if and only if the underlying class is an anonymous
class.
- 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.
- isAutoDetecting() - Method in class java.nio.charset.CharsetDecoder
-
Tells whether or not this decoder implements an auto-detecting charset.
- 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.
- isBroken() - Method in class java.util.concurrent.CyclicBarrier
-
Queries if this barrier is in a broken state.
- isCancelled() - Method in class java.util.concurrent.ForkJoinTask
-
- isCancelled() - Method in interface java.util.concurrent.Future
-
Returns true if this task was cancelled before it completed
normally.
- isCancelled() - Method in class java.util.concurrent.FutureTask
-
- isCharsetDetected() - Method in class java.nio.charset.CharsetDecoder
-
Tells whether or not this decoder has yet detected a
charset (optional operation).
- isCompletedAbnormally() - Method in class java.util.concurrent.ForkJoinTask
-
Returns true if this task threw an exception or was cancelled.
- isCompletedNormally() - Method in class java.util.concurrent.ForkJoinTask
-
Returns true if this task completed without throwing an
exception and was not cancelled.
- isDaemon() - Method in class java.lang.Thread
-
Tests if this thread is a daemon thread.
- isDecimalSeparatorAlwaysShown() - Method in class java.text.DecimalFormat
-
Allows you to get the behavior of the decimal separator with integers.
- 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.
- isDone() - Method in class java.util.concurrent.ForkJoinTask
-
- isDone() - Method in interface java.util.concurrent.Future
-
Returns true if this task completed.
- isDone() - Method in class java.util.concurrent.FutureTask
-
- 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 class java.util.BitSet
-
Returns true if this BitSet contains no bits that are set
to true.
- isEmpty() - Method in interface java.util.Collection
-
Returns true if this collection contains no elements.
- isEmpty() - Method in class java.util.concurrent.ConcurrentHashMap
-
- isEmpty() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Returns true if this collection contains no elements.
- isEmpty() - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
Returns true if this queue contains no elements.
- isEmpty() - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Returns true if this set contains no elements.
- isEmpty() - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns true if this list contains no elements.
- isEmpty() - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Returns true if this set contains no elements.
- isEmpty() - Method in class java.util.concurrent.LinkedTransferQueue
-
Returns true if this queue contains no elements.
- isEmpty() - Method in class java.util.concurrent.SynchronousQueue
-
Always returns true.
- 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.
- isFair() - Method in class java.util.concurrent.locks.ReentrantLock
-
Returns true if this lock has fairness set true.
- isFair() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Returns true if this lock has fairness set true.
- isFair() - Method in class java.util.concurrent.Semaphore
-
Returns true if this semaphore has fairness set true.
- 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.
- isGroupingUsed() - Method in class java.text.NumberFormat
-
Returns true if grouping is used in this format.
- isHeldByCurrentThread() - Method in class java.util.concurrent.locks.ReentrantLock
-
Queries if this lock is held by the current thread.
- isHeldByCurrentThread() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
-
Queries if this write lock is held by the current thread.
- isHeldExclusively() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns true if synchronization is held exclusively with
respect to the current (calling) thread.
- isHeldExclusively() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns true if synchronization is held exclusively with
respect to the current (calling) thread.
- 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
-
- isIdentifierIgnorable(int) - Static method in class java.lang.Character
-
- isIdeographic(int) - 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.
- isLenient() - Method in class java.text.DateFormat
-
Tell whether date/time parsing is to be lenient.
- isLenient() - Method in class java.util.Calendar
-
Tells whether date/time interpretation is to be lenient.
- 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.
- isLocalClass() - Method in class java.lang.Class
-
Returns true if and only if the underlying class is a local
class.
- isLocked() - Method in class java.util.concurrent.locks.ReentrantLock
-
Queries if this lock is held by any thread.
- 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(int) - Static method in class java.lang.Character
-
- 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
-
- isMemberClass() - Method in class java.lang.Class
-
Returns true if and only if the underlying class is a member
class.
- isMirrored(int) - 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.
- isParseBigDecimal() - Method in class java.text.DecimalFormat
-
- isParseIntegerOnly() - Method in class java.text.NumberFormat
-
Returns true if this format will parse numbers as integers only.
- isPeriodic() - Method in interface java.util.concurrent.RunnableScheduledFuture
-
Returns true if this is a periodic task.
- 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.
- isQueued(Thread) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns true if the given thread is currently queued.
- isQueued(Thread) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns true if the given thread is currently queued.
- isQuiescent() - Method in class java.util.concurrent.ForkJoinPool
-
Returns true if all worker threads are currently idle.
- isRegistered() - Method in class java.nio.charset.Charset
-
- isReleasable() - Method in interface java.util.concurrent.ForkJoinPool.ManagedBlocker
-
Returns true if blocking is unnecessary.
- isSet - Variable in class java.util.Calendar
-
The flags which tell if a specified calendar field for the calendar is set.
- isSet(int) - Method in class java.util.Calendar
-
Determines if the given calendar field has a value set,
including cases that the value has been set by internal fields
calculations triggered by a get method call.
- isShutdown() - Method in interface java.util.concurrent.ExecutorService
-
Returns true if this executor has been shut down.
- isShutdown() - Method in class java.util.concurrent.ForkJoinPool
-
Returns true if this pool has been shut down.
- isShutdown() - Method in class java.util.concurrent.ThreadPoolExecutor
-
- 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
-
- isSupported(String) - Static method in class java.nio.charset.Charset
-
Tells whether the named charset is supported.
- 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.
- isTerminated() - Method in interface java.util.concurrent.ExecutorService
-
Returns true if all tasks have completed following shut down.
- isTerminated() - Method in class java.util.concurrent.ForkJoinPool
-
Returns true if all tasks have completed following shut down.
- isTerminated() - Method in class java.util.concurrent.Phaser
-
Returns true if this phaser has been terminated.
- isTerminated() - Method in class java.util.concurrent.ThreadPoolExecutor
-
- isTerminating() - Method in class java.util.concurrent.ForkJoinPool
-
Returns true if the process of termination has
commenced but not yet completed.
- isTerminating() - Method in class java.util.concurrent.ThreadPoolExecutor
-
- isTimeSet - Variable in class java.util.Calendar
-
True if then the value of time is valid.
- 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.
- isUnicodeIdentifierPart(int) - Static method in class java.lang.Character
-
- isUnicodeIdentifierStart(int) - Static method in class java.lang.Character
-
- 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(int) - Static method in class java.lang.Character
-
- 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.
- isVarargsCollector() - Method in class java.lang.invoke.MethodHandle
-
- isVolatile(int) - Static method in class java.lang.reflect.Modifier
-
Return true if the integer argument includes the
volatile modifier, false otherwise.
- isWeekDateSupported() - Method in class java.util.Calendar
-
Returns whether this Calendar supports week dates.
- 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.
- isWriteLocked() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Queries if the write lock is held by any thread.
- isWriteLockedByCurrentThread() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Queries if the write lock is held by the current thread.
- ITALIAN - Static variable in class java.util.Locale
-
Useful constant for language.
- ITALY - Static variable in class java.util.Locale
-
Useful constant for country.
- 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 class java.util.concurrent.ArrayBlockingQueue
-
Returns an iterator over the elements in this queue in proper sequence.
- iterator() - Method in interface java.util.concurrent.BlockingDeque
-
Returns an iterator over the elements in this deque in proper sequence.
- iterator() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Returns an iterator over the elements in this deque in proper sequence.
- iterator() - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
Returns an iterator over the elements in this queue in proper sequence.
- iterator() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Returns an iterator over the elements in this set in ascending order.
- iterator() - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns an iterator over the elements in this list in proper sequence.
- iterator() - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Returns an iterator over the elements contained in this set
in the order in which these elements were added.
- iterator() - Method in class java.util.concurrent.DelayQueue
-
Returns an iterator over all the elements (both expired and
unexpired) in this queue.
- iterator() - Method in class java.util.concurrent.LinkedBlockingDeque
-
Returns an iterator over the elements in this deque in proper sequence.
- iterator() - Method in class java.util.concurrent.LinkedBlockingQueue
-
Returns an iterator over the elements in this queue in proper sequence.
- iterator() - Method in class java.util.concurrent.LinkedTransferQueue
-
Returns an iterator over the elements in this queue in proper sequence.
- iterator() - Method in class java.util.concurrent.PriorityBlockingQueue
-
Returns an iterator over the elements in this queue.
- iterator() - Method in class java.util.concurrent.SynchronousQueue
-
Returns an empty iterator in which hasNext always returns
false.
- 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.
- LambdaMetafactory - Class in java.lang.invoke
-
Methods to facilitate the creation of simple "function objects" that
implement one or more interfaces by delegation to a provided
MethodHandle,
possibly after type adaptation and partial evaluation of arguments.
- LambdaMetafactory() - Constructor for class java.lang.invoke.LambdaMetafactory
-
- LANGUAGE - Static variable in class java.text.AttributedCharacterIterator.Attribute
-
Attribute key for the language of some text.
- last() - Method in interface java.text.CharacterIterator
-
Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty)
and returns the character at that position.
- last() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- 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 class java.util.concurrent.ConcurrentSkipListMap
-
Returns a key-value mapping associated with the greatest
key in this map, or null if the map is empty.
- 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.concurrent.CopyOnWriteArrayList
-
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(E, int) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns the index of the last occurrence of the specified element in
this list, searching backwards from index, or returns -1 if
the element is not found.
- 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 class java.util.concurrent.ConcurrentSkipListMap
-
- 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.
- Launcher - Class in org.apidesign.bck2brwsr.launcher
-
An abstraction for executing tests in a Bck2Brwsr virtual machine.
- LauncherBck2Brwsr - Class in org.apidesign.bck2brwsr.launcher.b2b
-
This is a launcher for the
Bck2Brwsr
project that is using
Desktop (or
Process) to display the
external browser in separate process.
- lazySet(boolean) - Method in class java.util.concurrent.atomic.AtomicBoolean
-
Eventually sets to the given value.
- lazySet(int) - Method in class java.util.concurrent.atomic.AtomicInteger
-
Eventually sets to the given value.
- lazySet(int, int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Eventually sets the element at position i to the given value.
- lazySet(T, int) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Eventually sets the field of the given object managed by this
updater to the given updated value.
- lazySet(long) - Method in class java.util.concurrent.atomic.AtomicLong
-
Eventually sets to the given value.
- lazySet(int, long) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Eventually sets the element at position i to the given value.
- lazySet(T, long) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Eventually sets the field of the given object managed by this
updater to the given updated value.
- lazySet(V) - Method in class java.util.concurrent.atomic.AtomicReference
-
Eventually sets to the given value.
- lazySet(int, E) - Method in class java.util.concurrent.atomic.AtomicReferenceArray
-
Eventually sets the element at position i to the given value.
- lazySet(T, V) - Method in class java.util.concurrent.atomic.AtomicReferenceFieldUpdater
-
Eventually sets the field of the given object managed by this
updater to the given updated value.
- 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
-
- length() - Method in class java.util.BitSet
-
Returns the "logical size" of this BitSet: the index of
the highest set bit in the BitSet plus one.
- length() - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Returns the length of the array.
- length() - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Returns the length of the array.
- length() - Method in class java.util.concurrent.atomic.AtomicReferenceArray
-
Returns the length of the array.
- 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.
- library(String...) - Method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
- LINE_SEPARATOR - Static variable in class java.lang.Character
-
General category "Zl" in the Unicode specification.
- LineNumberInputStream - Class in java.io
-
Deprecated.
This class incorrectly assumes that bytes adequately represent
characters. As of JDK 1.1, the preferred way to operate on
character streams is via the new character-stream classes, which
include a class for counting line numbers.
- LineNumberInputStream(InputStream) - Constructor for class java.io.LineNumberInputStream
-
Deprecated.
Constructs a newline number input stream that reads its input
from the specified input stream.
- LineNumberReader - Class in java.io
-
A buffered character-input stream that keeps track of line numbers.
- LineNumberReader(Reader) - Constructor for class java.io.LineNumberReader
-
Create a new line-numbering reader, using the default input-buffer
size.
- LineNumberReader(Reader, int) - Constructor for class java.io.LineNumberReader
-
Create a new line-numbering reader, reading characters into a buffer of
the given size.
- 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.
- LinkedBlockingDeque<E> - Class in java.util.concurrent
-
- LinkedBlockingDeque() - Constructor for class java.util.concurrent.LinkedBlockingDeque
-
- LinkedBlockingDeque(int) - Constructor for class java.util.concurrent.LinkedBlockingDeque
-
Creates a LinkedBlockingDeque with the given (fixed) capacity.
- LinkedBlockingDeque(Collection<? extends E>) - Constructor for class java.util.concurrent.LinkedBlockingDeque
-
Creates a
LinkedBlockingDeque with a capacity of
Integer.MAX_VALUE, initially containing the elements of
the given collection, added in traversal order of the
collection's iterator.
- LinkedBlockingQueue<E> - Class in java.util.concurrent
-
- LinkedBlockingQueue() - Constructor for class java.util.concurrent.LinkedBlockingQueue
-
- LinkedBlockingQueue(int) - Constructor for class java.util.concurrent.LinkedBlockingQueue
-
Creates a LinkedBlockingQueue with the given (fixed) capacity.
- LinkedBlockingQueue(Collection<? extends E>) - Constructor for class java.util.concurrent.LinkedBlockingQueue
-
Creates a
LinkedBlockingQueue with a capacity of
Integer.MAX_VALUE, initially containing the elements of the
given collection,
added in traversal order of the collection's iterator.
- 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.
- LinkedTransferQueue<E> - Class in java.util.concurrent
-
- LinkedTransferQueue() - Constructor for class java.util.concurrent.LinkedTransferQueue
-
Creates an initially empty LinkedTransferQueue.
- LinkedTransferQueue(Collection<? extends E>) - Constructor for class java.util.concurrent.LinkedTransferQueue
-
Creates a LinkedTransferQueue
initially containing the elements of the given collection,
added in traversal order of 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).
- list(PrintStream) - Method in class java.util.Properties
-
Prints this property list out to the specified output stream.
- list(PrintWriter) - Method in class java.util.Properties
-
Prints this property list out to the specified output stream.
- 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() - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns a list iterator over the elements in this list (in proper
sequence).
- listIterator(int) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
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.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.
- LITERAL - Static variable in class java.util.regex.Pattern
-
Enables literal parsing of the pattern.
- load(Reader) - Method in class java.util.Properties
-
Reads a property list (key and element pairs) from the input
character stream in a simple line-oriented format.
- load(InputStream) - Method in class java.util.Properties
-
Reads a property list (key and element pairs) from the input
byte stream.
- 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
-
- loadFromXML(InputStream) - Method in class java.util.Properties
-
Loads all of the properties represented by the XML document on the
specified input stream into this properties table.
- 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.
- Locale - Class in java.util
-
A Locale object represents a specific geographical, political,
or cultural region.
- Locale(String, String, String) - Constructor for class java.util.Locale
-
Construct a locale from language, country and variant.
- Locale(String, String) - Constructor for class java.util.Locale
-
Construct a locale from language and country.
- Locale(String) - Constructor for class java.util.Locale
-
Construct a locale from a language code.
- Locale.Category - Enum in java.util
-
Enum for locale categories.
- 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.
- Lock - Interface in java.util.concurrent.locks
-
Lock implementations provide more extensive locking
operations than can be obtained using synchronized methods
and statements.
- lock() - Method in interface java.util.concurrent.locks.Lock
-
Acquires the lock.
- lock() - Method in class java.util.concurrent.locks.ReentrantLock
-
Acquires the lock.
- lock() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock
-
Acquires the read lock.
- lock() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
-
Acquires the write lock.
- lockInterruptibly() - Method in interface java.util.concurrent.locks.Lock
-
Acquires the lock unless the current thread is
interrupted.
- lockInterruptibly() - Method in class java.util.concurrent.locks.ReentrantLock
-
Acquires the lock unless the current thread is
interrupted.
- lockInterruptibly() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock
-
Acquires the read lock unless the current thread is
interrupted.
- lockInterruptibly() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
-
Acquires the write lock unless the current thread is
interrupted.
- LockSupport - Class in java.util.concurrent.locks
-
Basic thread blocking primitives for creating locks and other
synchronization classes.
- 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.
- LONG - Static variable in class java.text.DateFormat
-
Constant for long style pattern.
- LONG - Static variable in class java.util.Calendar
-
- LONG - Static variable in class java.util.TimeZone
-
A style specifier for getDisplayName() indicating
a long name, such as "Pacific Standard Time."
- 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.
- longValue() - Method in class java.util.concurrent.atomic.AtomicInteger
-
- longValue() - Method in class java.util.concurrent.atomic.AtomicLong
-
- longValueExact() - Method in class java.math.BigDecimal
-
Converts this BigDecimal to a long, checking
for lost information.
- lookingAt() - Method in class java.util.regex.Matcher
-
Attempts to match the input sequence, starting at the beginning of the
region, against the pattern.
- lookup(Class<?>) - Static method in class java.io.ObjectStreamClass
-
Find the descriptor for a class that can be serialized.
- lookup() - Static method in class java.lang.invoke.MethodHandles
-
Returns a
lookup object with
full capabilities to emulate all supported bytecode behaviors of the caller.
- lookupAny(Class<?>) - Static method in class java.io.ObjectStreamClass
-
Returns the descriptor for any class, regardless of whether it
implements
Serializable.
- lookupClass() - Method in class java.lang.invoke.MethodHandles.Lookup
-
Tells which class is performing the lookup.
- lookupModes() - Method in class java.lang.invoke.MethodHandles.Lookup
-
Tells which access-protection classes of members this lookup object can produce.
- lower(E) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- 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 class java.util.concurrent.ConcurrentSkipListMap
-
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 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 class java.util.concurrent.ConcurrentSkipListMap
-
- 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
-
- PACKAGE - Static variable in class java.lang.invoke.MethodHandles.Lookup
-
A single-bit mask representing
package access (default access),
which may contribute to the result of
lookupModes.
- PARAGRAPH_SEPARATOR - Static variable in class java.lang.Character
-
General category "Zp" in the Unicode specification.
- parameterArray() - Method in class java.lang.invoke.MethodType
-
Presents the parameter types as an array (a convenience method).
- parameterCount() - Method in class java.lang.invoke.MethodType
-
Returns the number of parameter types in this method type.
- parameterList() - Method in class java.lang.invoke.MethodType
-
Presents the parameter types as a list (a convenience method).
- parameterType(int) - Method in class java.lang.invoke.MethodType
-
Returns the parameter type at the specified index, within this method type.
- parent - Variable in class java.util.ResourceBundle
-
The parent bundle of this bundle.
- park(Object) - Static method in class java.util.concurrent.locks.LockSupport
-
Disables the current thread for thread scheduling purposes unless the
permit is available.
- park() - Static method in class java.util.concurrent.locks.LockSupport
-
Disables the current thread for thread scheduling purposes unless the
permit is available.
- parkNanos(Object, long) - Static method in class java.util.concurrent.locks.LockSupport
-
Disables the current thread for thread scheduling purposes, for up to
the specified waiting time, unless the permit is available.
- parkNanos(long) - Static method in class java.util.concurrent.locks.LockSupport
-
Disables the current thread for thread scheduling purposes, for up to
the specified waiting time, unless the permit is available.
- parkUntil(Object, long) - Static method in class java.util.concurrent.locks.LockSupport
-
Disables the current thread for thread scheduling purposes, until
the specified deadline, unless the permit is available.
- parkUntil(long) - Static method in class java.util.concurrent.locks.LockSupport
-
Disables the current thread for thread scheduling purposes, until
the specified deadline, unless the permit is available.
- parse(String, ParsePosition) - Method in class java.text.ChoiceFormat
-
Parses a Number from the input text.
- parse(String) - Method in class java.text.DateFormat
-
Parses text from the beginning of the given string to produce a date.
- parse(String, ParsePosition) - Method in class java.text.DateFormat
-
Parse a date/time string according to the given parse position.
- parse(String, ParsePosition) - Method in class java.text.DecimalFormat
-
Parses text from a string to produce a Number.
- parse(String, ParsePosition) - Method in class java.text.MessageFormat
-
Parses the string.
- parse(String) - Method in class java.text.MessageFormat
-
Parses text from the beginning of the given string to produce an object
array.
- parse(String, ParsePosition) - Method in class java.text.NumberFormat
-
Returns a Long if possible (e.g., within the range [Long.MIN_VALUE,
Long.MAX_VALUE] and with no decimals), otherwise a Double.
- parse(String) - Method in class java.text.NumberFormat
-
Parses text from the beginning of the given string to produce a number.
- parse(String, ParsePosition) - Method in class java.text.SimpleDateFormat
-
Parses text from a string to produce a Date.
- parse(String) - Static method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by DateFormat.parse(String s).
- parse(String) - Static method in class java.util.logging.Level
-
Parse a level name string into a Level.
- parseBase64Binary(String) - Static method in class org.apidesign.bck2brwsr.launcher.impl.Console
-
- parseBoolean(String) - Static method in class java.lang.Boolean
-
Parses the string argument as a boolean.
- parseByte(String, int) - Static method in class java.lang.Byte
-
Parses the string argument as a signed byte in the
radix specified by the second argument.
- parseByte(String) - Static method in class java.lang.Byte
-
Parses the string argument as a signed decimal byte.
- parseDouble(String) - Static method in class java.lang.Double
-
Returns a new double initialized to the value
represented by the specified String, as performed
by the valueOf method of class
Double.
- ParseException - Exception in java.text
-
Signals that an error has been reached unexpectedly
while parsing.
- ParseException(String, int) - Constructor for exception java.text.ParseException
-
Constructs a ParseException with the specified detail message and
offset.
- parseFloat(String) - Static method in class java.lang.Float
-
Returns a new float initialized to the value
represented by the specified String, as performed
by the valueOf method of class Float.
- parseInt(String, int) - Static method in class java.lang.Integer
-
Parses the string argument as a signed integer in the radix
specified by the second argument.
- parseInt(String) - Static method in class java.lang.Integer
-
Parses the string argument as a signed decimal integer.
- parseLong(String, int) - Static method in class java.lang.Long
-
Parses the string argument as a signed long in the
radix specified by the second argument.
- parseLong(String) - Static method in class java.lang.Long
-
Parses the string argument as a signed decimal long.
- parseObject(String, ParsePosition) - Method in class java.text.DateFormat
-
Parses text from a string to produce a Date.
- parseObject(String, ParsePosition) - Method in class java.text.Format
-
Parses text from a string to produce an object.
- parseObject(String) - Method in class java.text.Format
-
Parses text from the beginning of the given string to produce an object.
- parseObject(String, ParsePosition) - Method in class java.text.MessageFormat
-
Parses text from a string to produce an object array.
- parseObject(String, ParsePosition) - Method in class java.text.NumberFormat
-
Parses text from a string to produce a Number.
- ParsePosition - Class in java.text
-
ParsePosition is a simple class used by Format
and its subclasses to keep track of the current position during parsing.
- ParsePosition(int) - Constructor for class java.text.ParsePosition
-
Create a new ParsePosition with the given initial index.
- parseServerAuthority() - Method in class java.net.URI
-
Attempts to parse this URI's authority component, if defined, into
user-information, host, and port components.
- parseShort(String, int) - Static method in class java.lang.Short
-
Parses the string argument as a signed short in the
radix specified by the second argument.
- parseShort(String) - Static method in class java.lang.Short
-
Parses the string argument as a signed decimal short.
- parseURL(URL, String, int, int) - Method in class java.net.URLStreamHandler
-
Parses the string representation of a URL into a
URL object.
- pathSeparator - Static variable in class java.io.File
-
The system-dependent path-separator character, represented as a string
for convenience.
- pathSeparatorChar - Static variable in class java.io.File
-
The system-dependent path-separator character.
- pattern() - Method in class java.util.regex.Matcher
-
Returns the pattern that is interpreted by this matcher.
- Pattern - Class in java.util.regex
-
A compiled representation of a regular expression.
- pattern() - Method in class java.util.regex.Pattern
-
Returns the regular expression from which this pattern was compiled.
- PatternSyntaxException - Exception in java.util.regex
-
Unchecked exception thrown to indicate a syntax error in a
regular-expression pattern.
- PatternSyntaxException(String, String, int) - Constructor for exception java.util.regex.PatternSyntaxException
-
Constructs a new instance of this class.
- peek() - Method in class java.util.ArrayDeque
-
Retrieves, but does not remove, the head of the queue represented by
this deque, or returns null if this deque is empty.
- peek() - Method in class java.util.concurrent.ArrayBlockingQueue
-
- peek() - Method in interface java.util.concurrent.BlockingDeque
-
Retrieves, but does not remove, the head of the queue represented by
this deque (in other words, the first element of this deque), or
returns null if this deque is empty.
- peek() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- peek() - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
- peek() - Method in class java.util.concurrent.DelayQueue
-
Retrieves, but does not remove, the head of this queue, or
returns null if this queue is empty.
- peek() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- peek() - Method in class java.util.concurrent.LinkedBlockingQueue
-
- peek() - Method in class java.util.concurrent.LinkedTransferQueue
-
- peek() - Method in class java.util.concurrent.PriorityBlockingQueue
-
- peek() - Method in class java.util.concurrent.SynchronousQueue
-
Always returns null.
- peek() - 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), or
returns null if this deque is empty.
- peek() - Method in class java.util.LinkedList
-
Retrieves, but does not remove, the head (first element) of this list.
- peek() - Method in class java.util.PriorityQueue
-
- peek() - Method in interface java.util.Queue
-
Retrieves, but does not remove, the head of this queue,
or returns null if this queue is empty.
- peek() - Method in class java.util.Stack
-
Looks at the object at the top of this stack without removing it
from the stack.
- peekFirst() - Method in class java.util.ArrayDeque
-
- peekFirst() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- peekFirst() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- peekFirst() - Method in interface java.util.Deque
-
Retrieves, but does not remove, the first element of this deque,
or returns null if this deque is empty.
- peekFirst() - Method in class java.util.LinkedList
-
Retrieves, but does not remove, the first element of this list,
or returns null if this list is empty.
- peekLast() - Method in class java.util.ArrayDeque
-
- peekLast() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- peekLast() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- peekLast() - Method in interface java.util.Deque
-
Retrieves, but does not remove, the last element of this deque,
or returns null if this deque is empty.
- peekLast() - Method in class java.util.LinkedList
-
Retrieves, but does not remove, the last element of this list,
or returns null if this list is empty.
- peekNextLocalTask() - Static method in class java.util.concurrent.ForkJoinTask
-
Returns, but does not unschedule or execute, a task queued by
the current thread but not yet executed, if one is immediately
available.
- PERCENT - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the percent field.
- PERMILLE - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the permille field.
- PhantomReference<T> - Class in java.lang.ref
-
Phantom reference objects, which are enqueued after the collector
determines that their referents may otherwise be reclaimed.
- PhantomReference(T, ReferenceQueue<? super T>) - Constructor for class java.lang.ref.PhantomReference
-
Creates a new phantom reference that refers to the given object and
is registered with the given queue.
- Phaser - Class in java.util.concurrent
-
- Phaser() - Constructor for class java.util.concurrent.Phaser
-
Creates a new phaser with no initially registered parties, no
parent, and initial phase number 0.
- Phaser(int) - Constructor for class java.util.concurrent.Phaser
-
Creates a new phaser with the given number of registered
unarrived parties, no parent, and initial phase number 0.
- Phaser(Phaser) - Constructor for class java.util.concurrent.Phaser
-
- Phaser(Phaser, int) - Constructor for class java.util.concurrent.Phaser
-
Creates a new phaser with the given parent and number of
registered unarrived parties.
- PI - Static variable in class java.lang.Math
-
The double value that is closer than any other to
pi, the ratio of the circumference of a circle to its
diameter.
- plus() - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (+this), and whose
scale is this.scale().
- plus(MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (+this),
with rounding according to the context settings.
- PM - Static variable in class java.util.Calendar
-
Value of the
Calendar.AM_PM field indicating the
period of the day from noon to just before midnight.
- poll() - Method in class java.lang.ref.ReferenceQueue
-
Polls this queue to see if a reference object is available.
- poll() - Method in class java.util.ArrayDeque
-
Retrieves and removes the head of the queue represented by this deque
(in other words, the first element of this deque), or returns
null if this deque is empty.
- poll() - Method in class java.util.concurrent.ArrayBlockingQueue
-
- poll(long, TimeUnit) - Method in class java.util.concurrent.ArrayBlockingQueue
-
- poll() - Method in interface java.util.concurrent.BlockingDeque
-
Retrieves and removes the head of the queue represented by this deque
(in other words, the first element of this deque), or returns
null if this deque is empty.
- poll(long, TimeUnit) - Method in interface java.util.concurrent.BlockingDeque
-
Retrieves and removes the head of the queue represented by this deque
(in other words, the first element of this deque), waiting up to the
specified wait time if necessary for an element to become available.
- poll(long, TimeUnit) - Method in interface java.util.concurrent.BlockingQueue
-
Retrieves and removes the head of this queue, waiting up to the
specified wait time if necessary for an element to become available.
- poll() - Method in interface java.util.concurrent.CompletionService
-
Retrieves and removes the Future representing the next
completed task or null if none are present.
- poll(long, TimeUnit) - Method in interface java.util.concurrent.CompletionService
-
Retrieves and removes the Future representing the next
completed task, waiting if necessary up to the specified wait
time if none are yet present.
- poll() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- poll() - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
- poll() - Method in class java.util.concurrent.DelayQueue
-
Retrieves and removes the head of this queue, or returns null
if this queue has no elements with an expired delay.
- poll(long, TimeUnit) - Method in class java.util.concurrent.DelayQueue
-
Retrieves and removes the head of this queue, waiting if necessary
until an element with an expired delay is available on this queue,
or the specified wait time expires.
- poll() - Method in class java.util.concurrent.ExecutorCompletionService
-
- poll(long, TimeUnit) - Method in class java.util.concurrent.ExecutorCompletionService
-
- poll() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- poll(long, TimeUnit) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- poll(long, TimeUnit) - Method in class java.util.concurrent.LinkedBlockingQueue
-
- poll() - Method in class java.util.concurrent.LinkedBlockingQueue
-
- poll(long, TimeUnit) - Method in class java.util.concurrent.LinkedTransferQueue
-
- poll() - Method in class java.util.concurrent.LinkedTransferQueue
-
- poll() - Method in class java.util.concurrent.PriorityBlockingQueue
-
- poll(long, TimeUnit) - Method in class java.util.concurrent.PriorityBlockingQueue
-
- poll(long, TimeUnit) - Method in class java.util.concurrent.SynchronousQueue
-
Retrieves and removes the head of this queue, waiting
if necessary up to the specified wait time, for another thread
to insert it.
- poll() - Method in class java.util.concurrent.SynchronousQueue
-
Retrieves and removes the head of this queue, if another thread
is currently making an element available.
- poll() - Method in interface java.util.Deque
-
Retrieves and removes the head of the queue represented by this deque
(in other words, the first element of this deque), or returns
null if this deque is empty.
- poll() - Method in class java.util.LinkedList
-
Retrieves and removes the head (first element) of this list.
- poll() - Method in class java.util.PriorityQueue
-
- poll() - Method in interface java.util.Queue
-
Retrieves and removes the head of this queue,
or returns null if this queue is empty.
- pollFirst() - Method in class java.util.ArrayDeque
-
- pollFirst(long, TimeUnit) - Method in interface java.util.concurrent.BlockingDeque
-
Retrieves and removes the first element of this deque, waiting
up to the specified wait time if necessary for an element to
become available.
- pollFirst() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- pollFirst() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- pollFirst() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- pollFirst(long, TimeUnit) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- pollFirst() - Method in interface java.util.Deque
-
Retrieves and removes the first element of this deque,
or returns null if this deque is empty.
- pollFirst() - Method in class java.util.LinkedList
-
Retrieves and removes the first element of this list,
or returns null if this list is empty.
- pollFirst() - Method in interface java.util.NavigableSet
-
Retrieves and removes the first (lowest) element,
or returns null if this set is empty.
- pollFirst() - Method in class java.util.TreeSet
-
- pollFirstEntry() - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Removes and returns a key-value mapping associated with
the least key in this map, or null if the map is empty.
- pollFirstEntry() - Method in interface java.util.NavigableMap
-
Removes and returns a key-value mapping associated with
the least key in this map, or null if the map is empty.
- pollFirstEntry() - Method in class java.util.TreeMap
-
- pollLast() - Method in class java.util.ArrayDeque
-
- pollLast(long, TimeUnit) - Method in interface java.util.concurrent.BlockingDeque
-
Retrieves and removes the last element of this deque, waiting
up to the specified wait time if necessary for an element to
become available.
- pollLast() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- pollLast() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- pollLast() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- pollLast(long, TimeUnit) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- pollLast() - Method in interface java.util.Deque
-
Retrieves and removes the last element of this deque,
or returns null if this deque is empty.
- pollLast() - Method in class java.util.LinkedList
-
Retrieves and removes the last element of this list,
or returns null if this list is empty.
- pollLast() - Method in interface java.util.NavigableSet
-
Retrieves and removes the last (highest) element,
or returns null if this set is empty.
- pollLast() - Method in class java.util.TreeSet
-
- pollLastEntry() - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Removes and returns a key-value mapping associated with
the greatest key in this map, or null if the map is empty.
- pollLastEntry() - Method in interface java.util.NavigableMap
-
Removes and returns a key-value mapping associated with
the greatest key in this map, or null if the map is empty.
- pollLastEntry() - Method in class java.util.TreeMap
-
- pollNextLocalTask() - Static method in class java.util.concurrent.ForkJoinTask
-
Unschedules and returns, without executing, the next task
queued by the current thread but not yet executed.
- pollSubmission() - Method in class java.util.concurrent.ForkJoinPool
-
Removes and returns the next unexecuted submission if one is
available.
- pollTask() - Static method in class java.util.concurrent.ForkJoinTask
-
Unschedules and returns, without executing, the next task
queued by the current thread but not yet executed, if one is
available, or if not available, a task that was forked by some
other thread, if available.
- pop() - Method in class java.util.ArrayDeque
-
Pops an element from the stack represented by this deque.
- pop() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- pop() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- pop() - Method in interface java.util.Deque
-
Pops an element from the stack represented by this deque.
- pop() - Method in class java.util.LinkedList
-
Pops an element from the stack represented by this list.
- pop() - Method in class java.util.Stack
-
Removes the object at the top of this stack and returns that
object as the value of this function.
- pos - Variable in class java.io.BufferedInputStream
-
The current position in the buffer.
- pos - Variable in class java.io.ByteArrayInputStream
-
The index of the next character to read from the input stream buffer.
- pos - Variable in class java.io.PushbackInputStream
-
The position within the pushback buffer from which the next byte will
be read.
- POSITIVE_INFINITY - Static variable in class java.lang.Double
-
A constant holding the positive infinity of type
double.
- POSITIVE_INFINITY - Static variable in class java.lang.Float
-
A constant holding the positive infinity of type
float.
- pow(double, double) - Static method in class java.lang.Math
-
Returns the value of the first argument raised to the power of the
second argument.
- pow(int) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is
(thisn), The power is computed exactly, to
unlimited precision.
- pow(int, MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is
(thisn).
- pow(int) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (thisexponent).
- PRC - Static variable in class java.util.Locale
-
Useful constant for country.
- precision() - Method in class java.math.BigDecimal
-
Returns the precision of this BigDecimal.
- prestartAllCoreThreads() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Starts all core threads, causing them to idly wait for work.
- prestartCoreThread() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Starts a core thread, causing it to idly wait for work.
- previous() - Method in interface java.text.CharacterIterator
-
Decrements the iterator's index by one and returns the character
at the new index.
- previous() - Method in interface java.util.ListIterator
-
Returns the previous element in the list and moves the cursor
position backwards.
- previousClearBit(int) - Method in class java.util.BitSet
-
Returns the index of the nearest bit that is set to false
that occurs on or before the specified starting index.
- previousDouble(double) - Static method in class java.text.ChoiceFormat
-
Finds the greatest double less than d.
- previousIndex() - Method in interface java.util.ListIterator
-
- previousSetBit(int) - Method in class java.util.BitSet
-
Returns the index of the nearest bit that is set to true
that occurs on or before the specified starting index.
- print(boolean) - Method in class java.io.PrintStream
-
Prints a boolean value.
- print(char) - Method in class java.io.PrintStream
-
Prints a character.
- print(int) - Method in class java.io.PrintStream
-
Prints an integer.
- print(long) - Method in class java.io.PrintStream
-
Prints a long integer.
- print(float) - Method in class java.io.PrintStream
-
Prints a floating-point number.
- print(double) - Method in class java.io.PrintStream
-
Prints a double-precision floating-point number.
- print(char[]) - Method in class java.io.PrintStream
-
Prints an array of characters.
- print(String) - Method in class java.io.PrintStream
-
Prints a string.
- print(Object) - Method in class java.io.PrintStream
-
Prints an object.
- print(boolean) - Method in class java.io.PrintWriter
-
Prints a boolean value.
- print(char) - Method in class java.io.PrintWriter
-
Prints a character.
- print(int) - Method in class java.io.PrintWriter
-
Prints an integer.
- print(long) - Method in class java.io.PrintWriter
-
Prints a long integer.
- print(float) - Method in class java.io.PrintWriter
-
Prints a floating-point number.
- print(double) - Method in class java.io.PrintWriter
-
Prints a double-precision floating-point number.
- print(char[]) - Method in class java.io.PrintWriter
-
Prints an array of characters.
- print(String) - Method in class java.io.PrintWriter
-
Prints a string.
- print(Object) - Method in class java.io.PrintWriter
-
Prints an object.
- printf(String, Object...) - Method in class java.io.PrintStream
-
A convenience method to write a formatted string to this output stream
using the specified format string and arguments.
- printf(String, Object...) - Method in class java.io.PrintWriter
-
A convenience method to write a formatted string to this writer using
the specified format string and arguments.
- println() - Method in class java.io.PrintStream
-
Terminates the current line by writing the line separator string.
- println(boolean) - Method in class java.io.PrintStream
-
Prints a boolean and then terminate the line.
- println(char) - Method in class java.io.PrintStream
-
Prints a character and then terminate the line.
- println(int) - Method in class java.io.PrintStream
-
Prints an integer and then terminate the line.
- println(long) - Method in class java.io.PrintStream
-
Prints a long and then terminate the line.
- println(float) - Method in class java.io.PrintStream
-
Prints a float and then terminate the line.
- println(double) - Method in class java.io.PrintStream
-
Prints a double and then terminate the line.
- println(char[]) - Method in class java.io.PrintStream
-
Prints an array of characters and then terminate the line.
- println(String) - Method in class java.io.PrintStream
-
Prints a String and then terminate the line.
- println(Object) - Method in class java.io.PrintStream
-
Prints an Object and then terminate the line.
- println() - Method in class java.io.PrintWriter
-
Terminates the current line by writing the line separator string.
- println(boolean) - Method in class java.io.PrintWriter
-
Prints a boolean value and then terminates the line.
- println(char) - Method in class java.io.PrintWriter
-
Prints a character and then terminates the line.
- println(int) - Method in class java.io.PrintWriter
-
Prints an integer and then terminates the line.
- println(long) - Method in class java.io.PrintWriter
-
Prints a long integer and then terminates the line.
- println(float) - Method in class java.io.PrintWriter
-
Prints a floating-point number and then terminates the line.
- println(double) - Method in class java.io.PrintWriter
-
Prints a double-precision floating-point number and then terminates the
line.
- println(char[]) - Method in class java.io.PrintWriter
-
Prints an array of characters and then terminates the line.
- println(String) - Method in class java.io.PrintWriter
-
Prints a String and then terminates the line.
- println(Object) - Method in class java.io.PrintWriter
-
Prints an Object and then terminates the line.
- printStackTrace() - Method in class java.lang.Throwable
-
Prints this throwable and its backtrace to the
standard error stream.
- printStackTrace(PrintStream) - Method in class java.lang.Throwable
-
Prints this throwable and its backtrace to the specified print stream.
- printStackTrace(PrintWriter) - Method in class java.lang.Throwable
-
Prints this throwable and its backtrace to the specified
print writer.
- PrintStream - Class in java.io
-
A PrintStream adds functionality to another output stream,
namely the ability to print representations of various data values
conveniently.
- PrintStream(OutputStream) - Constructor for class java.io.PrintStream
-
Creates a new print stream.
- PrintStream(OutputStream, boolean) - Constructor for class java.io.PrintStream
-
Creates a new print stream.
- PrintStream(OutputStream, boolean, String) - Constructor for class java.io.PrintStream
-
Creates a new print stream.
- PrintStream(String) - Constructor for class java.io.PrintStream
-
Creates a new print stream, without automatic line flushing, with the
specified file name.
- PrintStream(String, String) - Constructor for class java.io.PrintStream
-
Creates a new print stream, without automatic line flushing, with the
specified file name and charset.
- PrintStream(File) - Constructor for class java.io.PrintStream
-
Creates a new print stream, without automatic line flushing, with the
specified file.
- PrintStream(File, String) - Constructor for class java.io.PrintStream
-
Creates a new print stream, without automatic line flushing, with the
specified file and charset.
- PrintWriter - Class in java.io
-
Prints formatted representations of objects to a text-output stream.
- PrintWriter(Writer) - Constructor for class java.io.PrintWriter
-
Creates a new PrintWriter, without automatic line flushing.
- PrintWriter(Writer, boolean) - Constructor for class java.io.PrintWriter
-
Creates a new PrintWriter.
- PrintWriter(OutputStream) - Constructor for class java.io.PrintWriter
-
Creates a new PrintWriter, without automatic line flushing, from an
existing OutputStream.
- PrintWriter(OutputStream, boolean) - Constructor for class java.io.PrintWriter
-
Creates a new PrintWriter from an existing OutputStream.
- PrintWriter(String) - Constructor for class java.io.PrintWriter
-
Creates a new PrintWriter, without automatic line flushing, with the
specified file name.
- PrintWriter(String, String) - Constructor for class java.io.PrintWriter
-
Creates a new PrintWriter, without automatic line flushing, with the
specified file name and charset.
- PrintWriter(File) - Constructor for class java.io.PrintWriter
-
Creates a new PrintWriter, without automatic line flushing, with the
specified file.
- PrintWriter(File, String) - Constructor for class java.io.PrintWriter
-
Creates a new PrintWriter, without automatic line flushing, with the
specified file and charset.
- PriorityBlockingQueue<E> - Class in java.util.concurrent
-
- PriorityBlockingQueue() - Constructor for class java.util.concurrent.PriorityBlockingQueue
-
Creates a
PriorityBlockingQueue with the default
initial capacity (11) that orders its elements according to
their
natural ordering.
- PriorityBlockingQueue(int) - Constructor for class java.util.concurrent.PriorityBlockingQueue
-
Creates a
PriorityBlockingQueue with the specified
initial capacity that orders its elements according to their
natural ordering.
- PriorityBlockingQueue(int, Comparator<? super E>) - Constructor for class java.util.concurrent.PriorityBlockingQueue
-
Creates a PriorityBlockingQueue with the specified initial
capacity that orders its elements according to the specified
comparator.
- PriorityBlockingQueue(Collection<? extends E>) - Constructor for class java.util.concurrent.PriorityBlockingQueue
-
Creates a PriorityBlockingQueue containing the elements
in the specified collection.
- PriorityQueue<E> - Class in java.util
-
An unbounded priority
queue based on a priority heap.
- PriorityQueue() - Constructor for class java.util.PriorityQueue
-
Creates a
PriorityQueue with the default initial
capacity (11) that orders its elements according to their
natural ordering.
- PriorityQueue(int) - Constructor for class java.util.PriorityQueue
-
Creates a
PriorityQueue with the specified initial
capacity that orders its elements according to their
natural ordering.
- PriorityQueue(int, Comparator<? super E>) - Constructor for class java.util.PriorityQueue
-
Creates a PriorityQueue with the specified initial capacity
that orders its elements according to the specified comparator.
- PriorityQueue(Collection<? extends E>) - Constructor for class java.util.PriorityQueue
-
Creates a PriorityQueue containing the elements in the
specified collection.
- PriorityQueue(PriorityQueue<? extends E>) - Constructor for class java.util.PriorityQueue
-
Creates a PriorityQueue containing the elements in the
specified priority queue.
- PriorityQueue(SortedSet<? extends E>) - Constructor for class java.util.PriorityQueue
-
Creates a PriorityQueue containing the elements in the
specified sorted set.
- PRIVATE - Static variable in class java.lang.invoke.MethodHandles.Lookup
-
A single-bit mask representing
private access,
which may contribute to the result of
lookupModes.
- PRIVATE - Static variable in class java.lang.reflect.Modifier
-
The int value representing the private
modifier.
- PRIVATE_USE - Static variable in class java.lang.Character
-
General category "Co" in the Unicode specification.
- PRIVATE_USE_EXTENSION - Static variable in class java.util.Locale
-
The key for the private use extension ('x').
- PrivilegedAction<T> - Interface in java.security
-
A computation to be performed with privileges enabled.
- PrivilegedActionException - Exception in java.security
-
This exception is thrown by
doPrivileged(PrivilegedExceptionAction) and
doPrivileged(PrivilegedExceptionAction,
AccessControlContext context) to indicate
that the action being performed threw a checked exception.
- PrivilegedActionException(Exception) - Constructor for exception java.security.PrivilegedActionException
-
Constructs a new PrivilegedActionException "wrapping"
the specific Exception.
- privilegedCallable(Callable<T>) - Static method in class java.util.concurrent.Executors
-
Returns a
Callable object that will, when
called, execute the given
callable under the current
access control context.
- privilegedCallableUsingCurrentClassLoader(Callable<T>) - Static method in class java.util.concurrent.Executors
-
Returns a
Callable object that will, when
called, execute the given
callable under the current
access control context, with the current context class loader
as the context class loader.
- PrivilegedExceptionAction<T> - Interface in java.security
-
A computation to be performed with privileges enabled, that throws one or
more checked exceptions.
- privilegedThreadFactory() - Static method in class java.util.concurrent.Executors
-
Returns a thread factory used to create new threads that
have the same permissions as the current thread.
- probablePrime(int, Random) - Static method in class java.math.BigInteger
-
Returns a positive BigInteger that is probably prime, with the
specified bitLength.
- Properties - Class in java.util
-
The Properties class represents a persistent set of
properties.
- Properties() - Constructor for class java.util.Properties
-
Creates an empty property list with no default values.
- Properties(Properties) - Constructor for class java.util.Properties
-
Creates an empty property list with the specified defaults.
- propertyChange(PropertyChangeEvent) - Method in interface java.beans.PropertyChangeListener
-
This method gets called when a bound property is changed.
- propertyChange(PropertyChangeEvent) - Method in class java.beans.PropertyChangeListenerProxy
-
Forwards the property change event to the listener delegate.
- PropertyChangeEvent - Class in java.beans
-
A "PropertyChange" event gets delivered whenever a bean changes a "bound"
or "constrained" property.
- PropertyChangeEvent(Object, String, Object, Object) - Constructor for class java.beans.PropertyChangeEvent
-
Constructs a new PropertyChangeEvent.
- PropertyChangeListener - Interface in java.beans
-
A "PropertyChange" event gets fired whenever a bean changes a "bound"
property.
- PropertyChangeListenerProxy - Class in java.beans
-
A class which extends the EventListenerProxy
specifically for adding a PropertyChangeListener
with a "bound" property.
- PropertyChangeListenerProxy(String, PropertyChangeListener) - Constructor for class java.beans.PropertyChangeListenerProxy
-
Constructor which binds the PropertyChangeListener
to a specific property.
- PropertyChangeSupport - Class in java.beans
-
This is a utility class that can be used by beans that support bound
properties.
- PropertyChangeSupport(Object) - Constructor for class java.beans.PropertyChangeSupport
-
Constructs a PropertyChangeSupport object.
- propertyNames() - Method in class java.util.Properties
-
Returns an enumeration of all the keys in this property list,
including distinct keys in the default property list if a key
of the same name has not already been found from the main
properties list.
- PropertyResourceBundle - Class in java.util
-
PropertyResourceBundle is a concrete subclass of
ResourceBundle that manages resources for a locale
using a set of static strings from a property file.
- PropertyResourceBundle(InputStream) - Constructor for class java.util.PropertyResourceBundle
-
Creates a property resource bundle from an
InputStream.
- PropertyResourceBundle(Reader) - Constructor for class java.util.PropertyResourceBundle
-
Creates a property resource bundle from a
Reader.
- PropertyVetoException - Exception in java.beans
-
A PropertyVetoException is thrown when a proposed change to a
property represents an unacceptable value.
- PropertyVetoException(String, PropertyChangeEvent) - Constructor for exception java.beans.PropertyVetoException
-
Constructs a PropertyVetoException with a
detailed message.
- PROTECTED - Static variable in class java.lang.invoke.MethodHandles.Lookup
-
A single-bit mask representing
protected access,
which may contribute to the result of
lookupModes.
- PROTECTED - Static variable in class java.lang.reflect.Modifier
-
The int value representing the protected
modifier.
- PROTOCOL_VERSION_1 - Static variable in interface java.io.ObjectStreamConstants
-
A Stream Protocol Version.
- PROTOCOL_VERSION_2 - Static variable in interface java.io.ObjectStreamConstants
-
A Stream Protocol Version.
- Proxy - Class in java.lang.reflect
-
Proxy provides static methods for creating dynamic proxy
classes and instances, and it is also the superclass of all
dynamic proxy classes created by those methods.
- Proxy(InvocationHandler) - Constructor for class java.lang.reflect.Proxy
-
Constructs a new Proxy instance from a subclass
(typically, a dynamic proxy class) with the specified value
for its invocation handler.
- PUBLIC - Static variable in class java.lang.invoke.MethodHandles.Lookup
-
A single-bit mask representing
public access,
which may contribute to the result of
lookupModes.
- PUBLIC - Static variable in interface java.lang.reflect.Member
-
Identifies the set of all public members of a class or interface,
including inherited members.
- PUBLIC - Static variable in class java.lang.reflect.Modifier
-
The int value representing the public
modifier.
- publicLookup() - Static method in class java.lang.invoke.MethodHandles
-
- purge() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Tries to remove from the work queue all
Future
tasks that have been cancelled.
- purge() - Method in class java.util.Timer
-
Removes all cancelled tasks from this timer's task queue.
- push(E) - Method in class java.util.ArrayDeque
-
Pushes an element onto the stack represented by this deque.
- push(E) - Method in interface java.util.concurrent.BlockingDeque
-
Pushes an element onto the stack represented by this deque.
- push(E) - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- push(E) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- push(E) - Method in interface java.util.Deque
-
Pushes an element onto the stack represented by this deque (in other
words, at the head 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.
- push(E) - Method in class java.util.LinkedList
-
Pushes an element onto the stack represented by this list.
- push(E) - Method in class java.util.Stack
-
Pushes an item onto the top of this stack.
- PushbackInputStream - Class in java.io
-
A PushbackInputStream adds
functionality to another input stream, namely
the ability to "push back" or "unread"
one byte.
- PushbackInputStream(InputStream, int) - Constructor for class java.io.PushbackInputStream
-
Creates a PushbackInputStream
with a pushback buffer of the specified size,
and saves its argument, the input stream
in, for later use.
- PushbackInputStream(InputStream) - Constructor for class java.io.PushbackInputStream
-
Creates a PushbackInputStream
and saves its argument, the input stream
in, for later use.
- put(String, boolean) - Method in class java.io.ObjectOutputStream.PutField
-
Put the value of the named boolean field into the persistent field.
- put(String, byte) - Method in class java.io.ObjectOutputStream.PutField
-
Put the value of the named byte field into the persistent field.
- put(String, char) - Method in class java.io.ObjectOutputStream.PutField
-
Put the value of the named char field into the persistent field.
- put(String, short) - Method in class java.io.ObjectOutputStream.PutField
-
Put the value of the named short field into the persistent field.
- put(String, int) - Method in class java.io.ObjectOutputStream.PutField
-
Put the value of the named int field into the persistent field.
- put(String, long) - Method in class java.io.ObjectOutputStream.PutField
-
Put the value of the named long field into the persistent field.
- put(String, float) - Method in class java.io.ObjectOutputStream.PutField
-
Put the value of the named float field into the persistent field.
- put(String, double) - Method in class java.io.ObjectOutputStream.PutField
-
Put the value of the named double field into the persistent field.
- put(String, Object) - Method in class java.io.ObjectOutputStream.PutField
-
Put the value of the named Object field into the persistent field.
- put(char[], int, int) - Method in class java.nio.CharBuffer
-
- put(K, V) - Method in class java.util.AbstractMap
-
Associates the specified value with the specified key in this map
(optional operation).
- put(E) - Method in class java.util.concurrent.ArrayBlockingQueue
-
Inserts the specified element at the tail of this queue, waiting
for space to become available if the queue is full.
- put(E) - Method in interface java.util.concurrent.BlockingDeque
-
Inserts the specified element into the queue represented by this deque
(in other words, at the tail of this deque), waiting if necessary for
space to become available.
- put(E) - Method in interface java.util.concurrent.BlockingQueue
-
Inserts the specified element into this queue, waiting if necessary
for space to become available.
- put(K, V) - Method in class java.util.concurrent.ConcurrentHashMap
-
- put(K, V) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Associates the specified value with the specified key in this map.
- put(E) - Method in class java.util.concurrent.DelayQueue
-
Inserts the specified element into this delay queue.
- put(E) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- put(E) - Method in class java.util.concurrent.LinkedBlockingQueue
-
Inserts the specified element at the tail of this queue, waiting if
necessary for space to become available.
- put(E) - Method in class java.util.concurrent.LinkedTransferQueue
-
Inserts the specified element at the tail of this queue.
- put(E) - Method in class java.util.concurrent.PriorityBlockingQueue
-
Inserts the specified element into this priority queue.
- put(E) - Method in class java.util.concurrent.SynchronousQueue
-
Adds the specified element to this queue, waiting if necessary for
another thread to receive it.
- put(K, V) - Method in class java.util.Dictionary
-
Maps the specified key to the specified
value in this dictionary.
- put(K, V) - Method in class java.util.EnumMap
-
Associates the specified value with the specified key in this map.
- put(K, V) - Method in class java.util.HashMap
-
Associates the specified value with the specified key in this map.
- put(K, V) - Method in class java.util.Hashtable
-
Maps the specified key to the specified
value in this hashtable.
- put(K, V) - Method in class java.util.IdentityHashMap
-
Associates the specified value with the specified key in this identity
hash map.
- put(K, V) - Method in interface java.util.Map
-
Associates the specified value with the specified key in this map
(optional operation).
- put(K, V) - Method in class java.util.TreeMap
-
Associates the specified value with the specified key in this map.
- put(K, V) - Method in class java.util.WeakHashMap
-
Associates the specified value with the specified key in this map.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.AbstractMap
-
Copies all of the mappings from the specified map to this map
(optional operation).
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.concurrent.ConcurrentHashMap
-
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.EnumMap
-
Copies all of the mappings from the specified map to this map.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.HashMap
-
Copies all of the mappings from the specified map to this map.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.Hashtable
-
Copies all of the mappings from the specified map to this hashtable.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.IdentityHashMap
-
Copies all of the mappings from the specified map to this map.
- putAll(Map<? extends K, ? extends V>) - Method in interface java.util.Map
-
Copies all of the mappings from the specified map to this map
(optional operation).
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.TreeMap
-
Copies all of the mappings from the specified map to this map.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.WeakHashMap
-
Copies all of the mappings from the specified map to this map.
- putFields() - Method in class java.io.ObjectOutputStream
-
Retrieve the object used to buffer persistent fields to be written to
the stream.
- putFirst(E) - Method in interface java.util.concurrent.BlockingDeque
-
Inserts the specified element at the front of this deque,
waiting if necessary for space to become available.
- putFirst(E) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- putIfAbsent(K, V) - Method in class java.util.concurrent.ConcurrentHashMap
-
- putIfAbsent(K, V) - Method in interface java.util.concurrent.ConcurrentMap
-
If the specified key is not already associated
with a value, associate it with the given value.
- putIfAbsent(K, V) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
If the specified key is not already associated
with a value, associate it with the given value.
- putLast(E) - Method in interface java.util.concurrent.BlockingDeque
-
Inserts the specified element at the end of this deque,
waiting if necessary for space to become available.
- putLast(E) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- random() - Static method in class java.lang.Math
-
Returns a double value with a positive sign, greater
than or equal to 0.0 and less than 1.0.
- Random - Class in java.util
-
An instance of this class is used to generate a stream of
pseudorandom numbers.
- Random() - Constructor for class java.util.Random
-
Creates a new random number generator.
- Random(long) - Constructor for class java.util.Random
-
Creates a new random number generator using a single long seed.
- RandomAccess - Interface in java.util
-
Marker interface used by List implementations to indicate that
they support fast (generally constant time) random access.
- range(E, E) - Static method in class java.util.EnumSet
-
Creates an enum set initially containing all of the elements in the
range defined by the two specified endpoints.
- read() - Method in class java.io.BufferedInputStream
-
See
the general contract of the read
method of InputStream.
- read(byte[], int, int) - Method in class java.io.BufferedInputStream
-
Reads bytes from this byte-input stream into the specified byte array,
starting at the given offset.
- read() - Method in class java.io.BufferedReader
-
Reads a single character.
- read(char[], int, int) - Method in class java.io.BufferedReader
-
Reads characters into a portion of an array.
- read() - Method in class java.io.ByteArrayInputStream
-
Reads the next byte of data from this input stream.
- read(byte[], int, int) - Method in class java.io.ByteArrayInputStream
-
Reads up to len bytes of data into an array of bytes
from this input stream.
- read(byte[]) - Method in class java.io.DataInputStream
-
Reads some number of bytes from the contained input stream and
stores them into the buffer array b.
- read(byte[], int, int) - Method in class java.io.DataInputStream
-
Reads up to len bytes of data from the contained
input stream into an array of bytes.
- read() - Method in class java.io.FileInputStream
-
Reads a byte of data from this input stream.
- read(byte[]) - Method in class java.io.FileInputStream
-
Reads up to b.length bytes of data from this input
stream into an array of bytes.
- read(byte[], int, int) - Method in class java.io.FileInputStream
-
Reads up to len bytes of data from this input stream
into an array of bytes.
- read() - Method in class java.io.FilterInputStream
-
Reads the next byte of data from this input stream.
- read(byte[]) - Method in class java.io.FilterInputStream
-
Reads up to byte.length bytes of data from this
input stream into an array of bytes.
- read(byte[], int, int) - Method in class java.io.FilterInputStream
-
Reads up to len bytes of data from this input stream
into an array of bytes.
- read() - Method in class java.io.FilterReader
-
Reads a single character.
- read(char[], int, int) - Method in class java.io.FilterReader
-
Reads characters into a portion of an array.
- read() - Method in class java.io.InputStream
-
Reads the next byte of data from the input stream.
- read(byte[]) - Method in class java.io.InputStream
-
Reads some number of bytes from the input stream and stores them into
the buffer array b.
- read(byte[], int, int) - Method in class java.io.InputStream
-
Reads up to len bytes of data from the input stream into
an array of bytes.
- read() - Method in class java.io.InputStreamReader
-
Reads a single character.
- read(char[], int, int) - Method in class java.io.InputStreamReader
-
Reads characters into a portion of an array.
- read() - Method in class java.io.LineNumberInputStream
-
Deprecated.
Reads the next byte of data from this input stream.
- read(byte[], int, int) - Method in class java.io.LineNumberInputStream
-
Deprecated.
Reads up to len bytes of data from this input stream
into an array of bytes.
- read() - Method in class java.io.LineNumberReader
-
Read a single character.
- read(char[], int, int) - Method in class java.io.LineNumberReader
-
Read characters into a portion of an array.
- read() - Method in interface java.io.ObjectInput
-
Reads a byte of data.
- read(byte[]) - Method in interface java.io.ObjectInput
-
Reads into an array of bytes.
- read(byte[], int, int) - Method in interface java.io.ObjectInput
-
Reads into an array of bytes.
- read() - Method in class java.io.ObjectInputStream
-
Reads a byte of data.
- read(byte[], int, int) - Method in class java.io.ObjectInputStream
-
Reads into an array of bytes.
- read() - Method in class java.io.PushbackInputStream
-
Reads the next byte of data from this input stream.
- read(byte[], int, int) - Method in class java.io.PushbackInputStream
-
Reads up to len bytes of data from this input stream into
an array of bytes.
- read(CharBuffer) - Method in class java.io.Reader
-
Attempts to read characters into the specified character buffer.
- read() - Method in class java.io.Reader
-
Reads a single character.
- read(char[]) - Method in class java.io.Reader
-
Reads characters into an array.
- read(char[], int, int) - Method in class java.io.Reader
-
Reads characters into a portion of an array.
- read() - Method in class java.io.StringReader
-
Reads a single character.
- read(char[], int, int) - Method in class java.io.StringReader
-
Reads characters into a portion of an array.
- read(CharBuffer) - Method in interface java.lang.Readable
-
Attempts to read characters into the specified character buffer.
- Readable - Interface in java.lang
-
A Readable is a source of characters.
- readBoolean() - Method in interface java.io.DataInput
-
Reads one input byte and returns
true if that byte is nonzero,
false if that byte is zero.
- readBoolean() - Method in class java.io.DataInputStream
-
See the general contract of the readBoolean
method of DataInput.
- readBoolean() - Method in class java.io.ObjectInputStream
-
Reads in a boolean.
- readByte() - Method in interface java.io.DataInput
-
Reads and returns one input byte.
- readByte() - Method in class java.io.DataInputStream
-
See the general contract of the readByte
method of DataInput.
- readByte() - Method in class java.io.ObjectInputStream
-
Reads an 8 bit byte.
- readChar() - Method in interface java.io.DataInput
-
Reads two input bytes and returns a char value.
- readChar() - Method in class java.io.DataInputStream
-
See the general contract of the readChar
method of DataInput.
- readChar() - Method in class java.io.ObjectInputStream
-
Reads a 16 bit char.
- readClassDescriptor() - Method in class java.io.ObjectInputStream
-
Read a class descriptor from the serialization stream.
- readDouble() - Method in interface java.io.DataInput
-
Reads eight input bytes and returns
a double value.
- readDouble() - Method in class java.io.DataInputStream
-
See the general contract of the readDouble
method of DataInput.
- readDouble() - Method in class java.io.ObjectInputStream
-
Reads a 64 bit double.
- Reader - Class in java.io
-
Abstract class for reading character streams.
- Reader() - Constructor for class java.io.Reader
-
Creates a new character-stream reader whose critical sections will
synchronize on the reader itself.
- Reader(Object) - Constructor for class java.io.Reader
-
Creates a new character-stream reader whose critical sections will
synchronize on the given object.
- readExternal(ObjectInput) - Method in interface java.io.Externalizable
-
The object implements the readExternal method to restore its
contents by calling the methods of DataInput for primitive
types and readObject for objects, strings and arrays.
- readFields() - Method in class java.io.ObjectInputStream
-
Reads the persistent fields from the stream and makes them available by
name.
- readFloat() - Method in interface java.io.DataInput
-
Reads four input bytes and returns
a float value.
- readFloat() - Method in class java.io.DataInputStream
-
See the general contract of the readFloat
method of DataInput.
- readFloat() - Method in class java.io.ObjectInputStream
-
Reads a 32 bit float.
- readFully(byte[]) - Method in interface java.io.DataInput
-
Reads some bytes from an input
stream and stores them into the buffer
array b.
- readFully(byte[], int, int) - Method in interface java.io.DataInput
-
Reads len
bytes from
an input stream.
- readFully(byte[]) - Method in class java.io.DataInputStream
-
See the general contract of the readFully
method of DataInput.
- readFully(byte[], int, int) - Method in class java.io.DataInputStream
-
See the general contract of the readFully
method of DataInput.
- readFully(byte[]) - Method in class java.io.ObjectInputStream
-
Reads bytes, blocking until all bytes are read.
- readFully(byte[], int, int) - Method in class java.io.ObjectInputStream
-
Reads bytes, blocking until all bytes are read.
- READING - Static variable in class java.text.AttributedCharacterIterator.Attribute
-
Attribute key for the reading of some text.
- readInt() - Method in interface java.io.DataInput
-
Reads four input bytes and returns an
int value.
- readInt() - Method in class java.io.DataInputStream
-
See the general contract of the readInt
method of DataInput.
- readInt() - Method in class java.io.ObjectInputStream
-
Reads a 32 bit int.
- readLine() - Method in class java.io.BufferedReader
-
Reads a line of text.
- readLine() - Method in interface java.io.DataInput
-
Reads the next line of text from the input stream.
- readLine() - Method in class java.io.DataInputStream
-
Deprecated.
This method does not properly convert bytes to characters.
As of JDK 1.1, the preferred way to read lines of text is via the
BufferedReader.readLine() method. Programs that use the
DataInputStream class to read lines can be converted to use
the BufferedReader class by replacing code of the form:
DataInputStream d = new DataInputStream(in);
with:
BufferedReader d
= new BufferedReader(new InputStreamReader(in));
- readLine() - Method in class java.io.LineNumberReader
-
Read a line of text.
- readLine() - Method in class java.io.ObjectInputStream
-
Deprecated.
This method does not properly convert bytes to characters.
see DataInputStream for the details and alternatives.
- readLock() - Method in interface java.util.concurrent.locks.ReadWriteLock
-
Returns the lock used for reading.
- readLock() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
- readLong() - Method in interface java.io.DataInput
-
Reads eight input bytes and returns
a long value.
- readLong() - Method in class java.io.DataInputStream
-
See the general contract of the readLong
method of DataInput.
- readLong() - Method in class java.io.ObjectInputStream
-
Reads a 64 bit long.
- readObject() - Method in interface java.io.ObjectInput
-
Read and return an object.
- readObject() - Method in class java.io.ObjectInputStream
-
Read an object from the ObjectInputStream.
- readObjectOverride() - Method in class java.io.ObjectInputStream
-
This method is called by trusted subclasses of ObjectOutputStream that
constructed ObjectOutputStream using the protected no-arg constructor.
- readResolve() - Method in class java.text.AttributedCharacterIterator.Attribute
-
Resolves instances being deserialized to the predefined constants.
- readResolve() - Method in class java.text.DateFormat.Field
-
Resolves instances being deserialized to the predefined constants.
- readResolve() - Method in class java.text.MessageFormat.Field
-
Resolves instances being deserialized to the predefined constants.
- readResolve() - Method in class java.text.NumberFormat.Field
-
Resolves instances being deserialized to the predefined constants.
- readShort() - Method in interface java.io.DataInput
-
Reads two input bytes and returns
a short value.
- readShort() - Method in class java.io.DataInputStream
-
See the general contract of the readShort
method of DataInput.
- readShort() - Method in class java.io.ObjectInputStream
-
Reads a 16 bit short.
- readStreamHeader() - Method in class java.io.ObjectInputStream
-
The readStreamHeader method is provided to allow subclasses to read and
verify their own stream headers.
- readUnshared() - Method in class java.io.ObjectInputStream
-
Reads an "unshared" object from the ObjectInputStream.
- readUnsignedByte() - Method in interface java.io.DataInput
-
Reads one input byte, zero-extends
it to type int, and returns
the result, which is therefore in the range
0
through 255.
- readUnsignedByte() - Method in class java.io.DataInputStream
-
See the general contract of the readUnsignedByte
method of DataInput.
- readUnsignedByte() - Method in class java.io.ObjectInputStream
-
Reads an unsigned 8 bit byte.
- readUnsignedShort() - Method in interface java.io.DataInput
-
Reads two input bytes and returns
an int value in the range 0
through 65535.
- readUnsignedShort() - Method in class java.io.DataInputStream
-
See the general contract of the readUnsignedShort
method of DataInput.
- readUnsignedShort() - Method in class java.io.ObjectInputStream
-
Reads an unsigned 16 bit short.
- readUTF() - Method in interface java.io.DataInput
-
Reads in a string that has been encoded using a
modified UTF-8
format.
- readUTF() - Method in class java.io.DataInputStream
-
See the general contract of the readUTF
method of DataInput.
- readUTF(DataInput) - Static method in class java.io.DataInputStream
-
Reads from the
stream
in a representation
of a Unicode character string encoded in
modified UTF-8 format;
this string of characters is then returned as a
String.
- readUTF() - Method in class java.io.ObjectInputStream
-
- ReadWriteLock - Interface in java.util.concurrent.locks
-
A
ReadWriteLock maintains a pair of associated
locks, one for read-only operations and one for writing.
- ready() - Method in class java.io.BufferedReader
-
Tells whether this stream is ready to be read.
- ready() - Method in class java.io.FilterReader
-
Tells whether this stream is ready to be read.
- ready() - Method in class java.io.InputStreamReader
-
Tells whether this stream is ready to be read.
- ready() - Method in class java.io.Reader
-
Tells whether this stream is ready to be read.
- ready() - Method in class java.io.StringReader
-
Tells whether this stream is ready to be read.
- RecursiveAction - Class in java.util.concurrent
-
- RecursiveAction() - Constructor for class java.util.concurrent.RecursiveAction
-
- RecursiveTask<V> - Class in java.util.concurrent
-
- RecursiveTask() - Constructor for class java.util.concurrent.RecursiveTask
-
- reducePermits(int) - Method in class java.util.concurrent.Semaphore
-
Shrinks the number of available permits by the indicated
reduction.
- ReentrantLock - Class in java.util.concurrent.locks
-
A reentrant mutual exclusion
Lock with the same basic
behavior and semantics as the implicit monitor lock accessed using
synchronized methods and statements, but with extended
capabilities.
- ReentrantLock() - Constructor for class java.util.concurrent.locks.ReentrantLock
-
Creates an instance of ReentrantLock.
- ReentrantLock(boolean) - Constructor for class java.util.concurrent.locks.ReentrantLock
-
Creates an instance of ReentrantLock with the
given fairness policy.
- ReentrantReadWriteLock - Class in java.util.concurrent.locks
-
- ReentrantReadWriteLock() - Constructor for class java.util.concurrent.locks.ReentrantReadWriteLock
-
Creates a new ReentrantReadWriteLock with
default (nonfair) ordering properties.
- ReentrantReadWriteLock(boolean) - Constructor for class java.util.concurrent.locks.ReentrantReadWriteLock
-
Creates a new ReentrantReadWriteLock with
the given fairness policy.
- ReentrantReadWriteLock.ReadLock - Class in java.util.concurrent.locks
-
- ReentrantReadWriteLock.ReadLock(ReentrantReadWriteLock) - Constructor for class java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock
-
Constructor for use by subclasses
- ReentrantReadWriteLock.WriteLock - Class in java.util.concurrent.locks
-
- ReentrantReadWriteLock.WriteLock(ReentrantReadWriteLock) - Constructor for class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
-
Constructor for use by subclasses
- Reference<T> - Class in java.lang.ref
-
Abstract base class for reference objects.
- ReferenceQueue<T> - Class in java.lang.ref
-
Reference queues, to which registered reference objects are appended by the
garbage collector after the appropriate reachability changes are detected.
- ReferenceQueue() - Constructor for class java.lang.ref.ReferenceQueue
-
Constructs a new reference-object queue.
- reflectAs(Class<T>, MethodHandle) - Static method in class java.lang.invoke.MethodHandles
-
- ReflectiveOperationException - Exception in java.lang
-
Common superclass of exceptions thrown by reflective operations in
core reflection.
- ReflectiveOperationException() - Constructor for exception java.lang.ReflectiveOperationException
-
Constructs a new exception with null as its detail
message.
- ReflectiveOperationException(String) - Constructor for exception java.lang.ReflectiveOperationException
-
Constructs a new exception with the specified detail message.
- ReflectiveOperationException(String, Throwable) - Constructor for exception java.lang.ReflectiveOperationException
-
Constructs a new exception with the specified detail message
and cause.
- ReflectiveOperationException(Throwable) - Constructor for exception java.lang.ReflectiveOperationException
-
Constructs a new exception with the specified cause and a detail
message of (cause==null ? null : cause.toString()) (which
typically contains the class and detail message of cause).
- region(int, int) - Method in class java.util.regex.Matcher
-
Sets the limits of this matcher's region.
- regionEnd() - Method in class java.util.regex.Matcher
-
Reports the end index (exclusive) of this matcher's region.
- regionMatches(int, String, int, int) - Method in class java.lang.String
-
Tests if two string regions are equal.
- regionMatches(boolean, int, String, int, int) - Method in class java.lang.String
-
Tests if two string regions are equal.
- regionStart() - Method in class java.util.regex.Matcher
-
Reports the start index of this matcher's region.
- register() - Method in class java.util.concurrent.Phaser
-
Adds a new unarrived party to this phaser.
- registerValidation(ObjectInputValidation, int) - Method in class java.io.ObjectInputStream
-
Register an object to be validated before the graph is returned.
- rehash() - Method in class java.util.Hashtable
-
Increases the capacity of and internally reorganizes this
hashtable, in order to accommodate and access its entries more
efficiently.
- reinitialize() - Method in class java.util.concurrent.ForkJoinTask
-
Resets the internal bookkeeping state of this task, allowing a
subsequent fork.
- rejectedExecution(Runnable, ThreadPoolExecutor) - Method in interface java.util.concurrent.RejectedExecutionHandler
-
- rejectedExecution(Runnable, ThreadPoolExecutor) - Method in class java.util.concurrent.ThreadPoolExecutor.AbortPolicy
-
Always throws RejectedExecutionException.
- rejectedExecution(Runnable, ThreadPoolExecutor) - Method in class java.util.concurrent.ThreadPoolExecutor.CallerRunsPolicy
-
Executes task r in the caller's thread, unless the executor
has been shut down, in which case the task is discarded.
- rejectedExecution(Runnable, ThreadPoolExecutor) - Method in class java.util.concurrent.ThreadPoolExecutor.DiscardOldestPolicy
-
Obtains and ignores the next task that the executor
would otherwise execute, if one is immediately available,
and then retries execution of task r, unless the executor
is shut down, in which case task r is instead discarded.
- rejectedExecution(Runnable, ThreadPoolExecutor) - Method in class java.util.concurrent.ThreadPoolExecutor.DiscardPolicy
-
Does nothing, which has the effect of discarding task r.
- RejectedExecutionException - Exception in java.util.concurrent
-
Exception thrown by an
Executor when a task cannot be
accepted for execution.
- RejectedExecutionException() - Constructor for exception java.util.concurrent.RejectedExecutionException
-
Constructs a RejectedExecutionException with no detail message.
- RejectedExecutionException(String) - Constructor for exception java.util.concurrent.RejectedExecutionException
-
Constructs a RejectedExecutionException with the
specified detail message.
- RejectedExecutionException(String, Throwable) - Constructor for exception java.util.concurrent.RejectedExecutionException
-
Constructs a RejectedExecutionException with the
specified detail message and cause.
- RejectedExecutionException(Throwable) - Constructor for exception java.util.concurrent.RejectedExecutionException
-
Constructs a RejectedExecutionException with the
specified cause.
- RejectedExecutionHandler - Interface in java.util.concurrent
-
- relativize(URI) - Method in class java.net.URI
-
Relativizes the given URI against this URI.
- release(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Releases in exclusive mode.
- release(int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Releases in exclusive mode.
- release() - Method in class java.util.concurrent.Semaphore
-
Releases a permit, returning it to the semaphore.
- release(int) - Method in class java.util.concurrent.Semaphore
-
Releases the given number of permits, returning them to the semaphore.
- releaseShared(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Releases in shared mode.
- releaseShared(int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Releases in shared mode.
- reload() - Method in class java.util.ServiceLoader
-
Clear this loader's provider cache so that all providers will be
reloaded.
- reload(Class<?>, byte[]) - Static method in class org.apidesign.vm4brwsr.api.VM
-
Takes an existing class and replaces its existing byte code
with new one.
- remainder(BigDecimal) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this % divisor).
- remainder(BigDecimal, MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this %
divisor), with rounding according to the context settings.
- remainder(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this % val).
- remaining() - Method in class java.nio.CharBuffer
-
- remainingCapacity() - Method in class java.util.concurrent.ArrayBlockingQueue
-
Returns the number of additional elements that this queue can ideally
(in the absence of memory or resource constraints) accept without
blocking.
- remainingCapacity() - Method in interface java.util.concurrent.BlockingQueue
-
Returns the number of additional elements that this queue can ideally
(in the absence of memory or resource constraints) accept without
blocking, or Integer.MAX_VALUE if there is no intrinsic
limit.
- remainingCapacity() - Method in class java.util.concurrent.DelayQueue
-
Always returns Integer.MAX_VALUE because
a DelayQueue is not capacity constrained.
- remainingCapacity() - Method in class java.util.concurrent.LinkedBlockingDeque
-
Returns the number of additional elements that this deque can ideally
(in the absence of memory or resource constraints) accept without
blocking.
- remainingCapacity() - Method in class java.util.concurrent.LinkedBlockingQueue
-
Returns the number of additional elements that this queue can ideally
(in the absence of memory or resource constraints) accept without
blocking.
- remainingCapacity() - Method in class java.util.concurrent.LinkedTransferQueue
-
Always returns Integer.MAX_VALUE because a
LinkedTransferQueue is not capacity constrained.
- remainingCapacity() - Method in class java.util.concurrent.PriorityBlockingQueue
-
Always returns Integer.MAX_VALUE because
a PriorityBlockingQueue is not capacity constrained.
- remainingCapacity() - Method in class java.util.concurrent.SynchronousQueue
-
Always returns zero.
- remove(Class<?>) - Method in class java.lang.ClassValue
-
Removes the associated value for the given class.
- remove(long) - Method in class java.lang.ref.ReferenceQueue
-
Removes the next reference object in this queue, blocking until either
one becomes available or the given timeout period expires.
- remove() - Method in class java.lang.ref.ReferenceQueue
-
Removes the next reference object in this queue, blocking until one
becomes available.
- remove() - Method in class java.lang.ThreadLocal
-
Removes the current thread's value for this thread-local
variable.
- remove(Object) - Method in class java.util.AbstractCollection
-
Removes a single instance of the specified element from this
collection, if it is present (optional operation).
- remove(int) - Method in class java.util.AbstractList
-
Removes the element at the specified position in this list (optional
operation).
- remove(Object) - Method in class java.util.AbstractMap
-
Removes the mapping for a key from this map if it is present
(optional operation).
- remove() - Method in class java.util.AbstractQueue
-
Retrieves and removes the head of this queue.
- remove(int) - Method in class java.util.AbstractSequentialList
-
Removes the element at the specified position in this list (optional
operation).
- remove() - Method in class java.util.ArrayDeque
-
Retrieves and removes the head of the queue represented by this deque.
- remove(Object) - Method in class java.util.ArrayDeque
-
Removes a single instance of the specified element from this deque.
- remove(int) - Method in class java.util.ArrayList
-
Removes the element at the specified position in this list.
- remove(Object) - Method in class java.util.ArrayList
-
Removes the first occurrence of the specified element from this list,
if it is present.
- remove(Object) - Method in interface java.util.Collection
-
Removes a single instance of the specified element from this
collection, if it is present (optional operation).
- remove(Object) - Method in class java.util.concurrent.ArrayBlockingQueue
-
Removes a single instance of the specified element from this queue,
if it is present.
- remove() - Method in interface java.util.concurrent.BlockingDeque
-
Retrieves and removes the head of the queue represented by this deque
(in other words, the first element of this deque).
- remove(Object) - Method in interface java.util.concurrent.BlockingDeque
-
Removes the first occurrence of the specified element from this deque.
- remove(Object) - Method in interface java.util.concurrent.BlockingQueue
-
Removes a single instance of the specified element from this queue,
if it is present.
- remove(Object) - Method in class java.util.concurrent.ConcurrentHashMap
-
- remove(Object, Object) - Method in class java.util.concurrent.ConcurrentHashMap
-
- remove() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- remove(Object) - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Removes the first element e such that
o.equals(e), if such an element exists in this deque.
- remove(Object) - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
Removes a single instance of the specified element from this queue,
if it is present.
- remove(Object, Object) - Method in interface java.util.concurrent.ConcurrentMap
-
Removes the entry for a key only if currently mapped to a given value.
- remove(Object) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Removes the mapping for the specified key from this map if present.
- remove(Object, Object) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Removes the entry for a key only if currently mapped to a given value.
- remove(Object) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Removes the specified element from this set if it is present.
- remove(int) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Removes the element at the specified position in this list.
- remove(Object) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Removes the first occurrence of the specified element from this list,
if it is present.
- remove(Object) - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Removes the specified element from this set if it is present.
- remove(Object) - Method in class java.util.concurrent.DelayQueue
-
Removes a single instance of the specified element from this
queue, if it is present, whether or not it has expired.
- remove() - Method in class java.util.concurrent.LinkedBlockingDeque
-
Retrieves and removes the head of the queue represented by this deque.
- remove(Object) - Method in class java.util.concurrent.LinkedBlockingDeque
-
Removes the first occurrence of the specified element from this deque.
- remove(Object) - Method in class java.util.concurrent.LinkedBlockingQueue
-
Removes a single instance of the specified element from this queue,
if it is present.
- remove(Object) - Method in class java.util.concurrent.LinkedTransferQueue
-
Removes a single instance of the specified element from this queue,
if it is present.
- remove(Object) - Method in class java.util.concurrent.PriorityBlockingQueue
-
Removes a single instance of the specified element from this queue,
if it is present.
- remove(Object) - Method in class java.util.concurrent.SynchronousQueue
-
Always returns false.
- remove(Runnable) - Method in class java.util.concurrent.ThreadPoolExecutor
-
Removes this task from the executor's internal queue if it is
present, thus causing it not to be run if it has not already
started.
- remove() - Method in interface java.util.Deque
-
Retrieves and removes the head of the queue represented by this deque
(in other words, the first element of this deque).
- remove(Object) - Method in interface java.util.Deque
-
Removes the first occurrence of the specified element from this deque.
- remove(Object) - Method in class java.util.Dictionary
-
Removes the key (and its corresponding
value) from this dictionary.
- remove(Object) - Method in class java.util.EnumMap
-
Removes the mapping for this key from this map if present.
- remove(Object) - Method in class java.util.HashMap
-
Removes the mapping for the specified key from this map if present.
- remove(Object) - Method in class java.util.HashSet
-
Removes the specified element from this set if it is present.
- remove(Object) - Method in class java.util.Hashtable
-
Removes the key (and its corresponding value) from this
hashtable.
- remove(Object) - Method in class java.util.IdentityHashMap
-
Removes the mapping for this key from this map if present.
- remove() - Method in interface java.util.Iterator
-
Removes from the underlying collection the last element returned
by this iterator (optional operation).
- remove(Object) - Method in class java.util.LinkedList
-
Removes the first occurrence of the specified element from this list,
if it is present.
- remove(int) - Method in class java.util.LinkedList
-
Removes the element at the specified position in this list.
- remove() - Method in class java.util.LinkedList
-
Retrieves and removes the head (first element) of this list.
- remove(Object) - Method in interface java.util.List
-
Removes the first occurrence of the specified element from this list,
if it is present (optional operation).
- remove(int) - Method in interface java.util.List
-
Removes the element at the specified position in this list (optional
operation).
- remove() - Method in interface java.util.ListIterator
-
- remove(Object) - Method in interface java.util.Map
-
Removes the mapping for a key from this map if it is present
(optional operation).
- remove(Object) - Method in class java.util.PriorityQueue
-
Removes a single instance of the specified element from this queue,
if it is present.
- remove() - Method in interface java.util.Queue
-
Retrieves and removes the head of this queue.
- remove(Object) - Method in interface java.util.Set
-
Removes the specified element from this set if it is present
(optional operation).
- remove(Object) - Method in class java.util.TreeMap
-
Removes the mapping for this key from this TreeMap if present.
- remove(Object) - Method in class java.util.TreeSet
-
Removes the specified element from this set if it is present.
- remove(Object) - Method in class java.util.Vector
-
Removes the first occurrence of the specified element in this Vector
If the Vector does not contain the element, it is unchanged.
- remove(int) - Method in class java.util.Vector
-
Removes the element at the specified position in this Vector.
- remove(Object) - Method in class java.util.WeakHashMap
-
Removes the mapping for a key from this weak hash map if it is present.
- removeAll(Collection<?>) - Method in class java.util.AbstractCollection
-
Removes all of this collection's elements that are also contained in the
specified collection (optional operation).
- removeAll(Collection<?>) - Method in class java.util.AbstractSet
-
Removes from this set all of its elements that are contained in the
specified collection (optional operation).
- removeAll(Collection<?>) - Method in class java.util.ArrayList
-
Removes from this list all of its elements that are contained in the
specified collection.
- removeAll(Collection<?>) - Method in interface java.util.Collection
-
Removes all of this collection's elements that are also contained in the
specified collection (optional operation).
- removeAll(Collection<?>) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Removes from this set all of its elements that are contained in
the specified collection.
- removeAll(Collection<?>) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Removes from this list all of its elements that are contained in
the specified collection.
- removeAll(Collection<?>) - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Removes from this set all of its elements that are contained in the
specified collection.
- removeAll(Collection<?>) - Method in class java.util.concurrent.SynchronousQueue
-
Always returns false.
- removeAll(Collection<?>) - Method in interface java.util.List
-
Removes from this list all of its elements that are contained in the
specified collection (optional operation).
- removeAll(Collection<?>) - Method in interface java.util.Set
-
Removes from this set all of its elements that are contained in the
specified collection (optional operation).
- removeAll(Collection<?>) - Method in class java.util.Vector
-
Removes from this Vector all of its elements that are contained in the
specified Collection.
- removeAllElements() - Method in class java.util.Vector
-
Removes all components from this vector and sets its size to zero.
- removeEldestEntry(Map.Entry<K, V>) - Method in class java.util.LinkedHashMap
-
Returns true if this map should remove its eldest entry.
- removeElement(Object) - Method in class java.util.Vector
-
Removes the first (lowest-indexed) occurrence of the argument
from this vector.
- removeElementAt(int) - Method in class java.util.Vector
-
Deletes the component at the specified index.
- removeFirst() - Method in class java.util.ArrayDeque
-
- removeFirst() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- removeFirst() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- removeFirst() - Method in interface java.util.Deque
-
Retrieves and removes the first element of this deque.
- removeFirst() - Method in class java.util.LinkedList
-
Removes and returns the first element from this list.
- removeFirstOccurrence(Object) - Method in class java.util.ArrayDeque
-
Removes the first occurrence of the specified element in this
deque (when traversing the deque from head to tail).
- removeFirstOccurrence(Object) - Method in interface java.util.concurrent.BlockingDeque
-
Removes the first occurrence of the specified element from this deque.
- removeFirstOccurrence(Object) - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Removes the first element e such that
o.equals(e), if such an element exists in this deque.
- removeFirstOccurrence(Object) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- removeFirstOccurrence(Object) - Method in interface java.util.Deque
-
Removes the first occurrence of the specified element from this deque.
- removeFirstOccurrence(Object) - Method in class java.util.LinkedList
-
Removes the first occurrence of the specified element in this
list (when traversing the list from head to tail).
- removeLast() - Method in class java.util.ArrayDeque
-
- removeLast() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
- removeLast() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- removeLast() - Method in interface java.util.Deque
-
Retrieves and removes the last element of this deque.
- removeLast() - Method in class java.util.LinkedList
-
Removes and returns the last element from this list.
- removeLastOccurrence(Object) - Method in class java.util.ArrayDeque
-
Removes the last occurrence of the specified element in this
deque (when traversing the deque from head to tail).
- removeLastOccurrence(Object) - Method in interface java.util.concurrent.BlockingDeque
-
Removes the last occurrence of the specified element from this deque.
- removeLastOccurrence(Object) - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Removes the last element e such that
o.equals(e), if such an element exists in this deque.
- removeLastOccurrence(Object) - Method in class java.util.concurrent.LinkedBlockingDeque
-
- removeLastOccurrence(Object) - Method in interface java.util.Deque
-
Removes the last occurrence of the specified element from this deque.
- removeLastOccurrence(Object) - Method in class java.util.LinkedList
-
Removes the last occurrence of the specified element in this
list (when traversing the list from head to tail).
- removePropertyChangeListener(PropertyChangeListener) - Method in class java.beans.PropertyChangeSupport
-
Remove a PropertyChangeListener from the listener list.
- removePropertyChangeListener(String, PropertyChangeListener) - Method in class java.beans.PropertyChangeSupport
-
Remove a PropertyChangeListener for a specific property.
- removeRange(int, int) - Method in class java.util.AbstractList
-
Removes from this list all of the elements whose index is between
fromIndex, inclusive, and toIndex, exclusive.
- removeRange(int, int) - Method in class java.util.ArrayList
-
Removes from this list all of the elements whose index is between
fromIndex, inclusive, and toIndex, exclusive.
- removeRange(int, int) - Method in class java.util.Vector
-
Removes from this list all of the elements whose index is between
fromIndex, inclusive, and toIndex, exclusive.
- removeVetoableChangeListener(VetoableChangeListener) - Method in class java.beans.VetoableChangeSupport
-
Remove a VetoableChangeListener from the listener list.
- removeVetoableChangeListener(String, VetoableChangeListener) - Method in class java.beans.VetoableChangeSupport
-
Remove a VetoableChangeListener for a specific property.
- renameTo(File) - Method in class java.io.File
-
Renames the file denoted by this abstract pathname.
- replace(char, char) - Method in class java.lang.String
-
Returns a new string resulting from replacing all occurrences of
oldChar in this string with newChar.
- replace(CharSequence, CharSequence) - Method in class java.lang.String
-
Replaces each substring of this string that matches the literal target
sequence with the specified literal replacement sequence.
- replace(int, int, String) - Method in class java.lang.StringBuffer
-
- replace(int, int, String) - Method in class java.lang.StringBuilder
-
- replace(K, V, V) - Method in class java.util.concurrent.ConcurrentHashMap
-
- replace(K, V) - Method in class java.util.concurrent.ConcurrentHashMap
-
- replace(K, V, V) - Method in interface java.util.concurrent.ConcurrentMap
-
Replaces the entry for a key only if currently mapped to a given value.
- replace(K, V) - Method in interface java.util.concurrent.ConcurrentMap
-
Replaces the entry for a key only if currently mapped to some value.
- replace(K, V, V) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Replaces the entry for a key only if currently mapped to a given value.
- replace(K, V) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Replaces the entry for a key only if currently mapped to some value.
- replaceAll(String, String) - Method in class java.lang.String
-
Replaces each substring of this string that matches the given
regular expression with the
given replacement.
- replaceAll(List<T>, T, T) - Static method in class java.util.Collections
-
Replaces all occurrences of one specified value in a list with another.
- replaceAll(String) - Method in class java.util.regex.Matcher
-
Replaces every subsequence of the input sequence that matches the
pattern with the given replacement string.
- replaceFirst(String, String) - Method in class java.lang.String
-
Replaces the first substring of this string that matches the given
regular expression with the
given replacement.
- replaceFirst(String) - Method in class java.util.regex.Matcher
-
Replaces the first subsequence of the input sequence that matches the
pattern with the given replacement string.
- replacement() - Method in class java.nio.charset.CharsetDecoder
-
Returns this decoder's replacement value.
- replacement() - Method in class java.nio.charset.CharsetEncoder
-
Returns this encoder's replacement value.
- replaceObject(Object) - Method in class java.io.ObjectOutputStream
-
This method will allow trusted subclasses of ObjectOutputStream to
substitute one object for another during serialization.
- replaceWith(String) - Method in class java.nio.charset.CharsetDecoder
-
Changes this decoder's replacement value.
- replaceWith(byte[]) - Method in class java.nio.charset.CharsetEncoder
-
Changes this encoder's replacement value.
- requireEnd() - Method in class java.util.regex.Matcher
-
Returns true if more input could change a positive match into a
negative one.
- requireNonNull(T) - Static method in class java.util.Objects
-
Checks that the specified object reference is not null.
- requireNonNull(T, String) - Static method in class java.util.Objects
-
Checks that the specified object reference is not
null and
throws a customized
NullPointerException if it is.
- reset() - Method in class java.io.BufferedInputStream
-
See the general contract of the reset
method of InputStream.
- reset() - Method in class java.io.BufferedReader
-
Resets the stream to the most recent mark.
- reset() - Method in class java.io.ByteArrayInputStream
-
Resets the buffer to the marked position.
- reset() - Method in class java.io.ByteArrayOutputStream
-
Resets the count field of this byte array output
stream to zero, so that all currently accumulated output in the
output stream is discarded.
- reset() - Method in class java.io.FilterInputStream
-
Repositions this stream to the position at the time the
mark method was last called on this input stream.
- reset() - Method in class java.io.FilterReader
-
Resets the stream.
- reset() - Method in class java.io.InputStream
-
Repositions this stream to the position at the time the
mark method was last called on this input stream.
- reset() - Method in class java.io.LineNumberInputStream
-
Deprecated.
Repositions this stream to the position at the time the
mark method was last called on this input stream.
- reset() - Method in class java.io.LineNumberReader
-
Reset the stream to the most recent mark.
- reset() - Method in class java.io.ObjectOutputStream
-
Reset will disregard the state of any objects already written to the
stream.
- reset() - Method in class java.io.PushbackInputStream
-
Repositions this stream to the position at the time the
mark method was last called on this input stream.
- reset() - Method in class java.io.Reader
-
Resets the stream.
- reset() - Method in class java.io.StringReader
-
Resets the stream to the most recent mark, or to the beginning of the
string if it has never been marked.
- reset() - Method in class java.nio.charset.CharsetDecoder
-
Resets this decoder, clearing any internal state.
- reset() - Method in class java.nio.charset.CharsetEncoder
-
Resets this encoder, clearing any internal state.
- reset() - Method in class java.util.concurrent.CyclicBarrier
-
Resets the barrier to its initial state.
- reset() - Method in class java.util.regex.Matcher
-
Resets this matcher.
- reset(CharSequence) - Method in class java.util.regex.Matcher
-
Resets this matcher with a new input sequence.
- resolve(URI) - Method in class java.net.URI
-
Resolves the given URI against this URI.
- resolve(String) - Method in class java.net.URI
-
Constructs a new URI by parsing the given string and then resolving it
against this URI.
- resolveClass(ObjectStreamClass) - Method in class java.io.ObjectInputStream
-
Load the local class equivalent of the specified stream class
description.
- resolveClass(Class<?>) - Method in class java.lang.ClassLoader
-
Links the specified class.
- resolveObject(Object) - Method in class java.io.ObjectInputStream
-
This method will allow trusted subclasses of ObjectInputStream to
substitute one object for another during deserialization.
- resolveProxyClass(String[]) - Method in class java.io.ObjectInputStream
-
Returns a proxy class that implements the interfaces named in a proxy
class descriptor; subclasses may implement this method to read custom
data from the stream along with the descriptors for dynamic proxy
classes, allowing them to use an alternate loading mechanism for the
interfaces and the proxy class.
- ResourceBundle - Class in java.util
-
Resource bundles contain locale-specific objects.
- ResourceBundle() - Constructor for class java.util.ResourceBundle
-
Sole constructor.
- ResourceBundle.Control - Class in java.util
-
ResourceBundle.Control defines a set of callback methods
that are invoked by the
ResourceBundle.getBundle factory
methods during the bundle loading process.
- ResourceBundle.Control() - Constructor for class java.util.ResourceBundle.Control
-
Sole constructor.
- resources(Bck2Brwsr.Resources) - Method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
A way to change the provider of additional resources (classes) for the
compiler.
- resources(ClassLoader) - Method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
A way to change the provider of additional resources (classes) for the
compiler by specifying classloader to use for loading them.
- resources(ClassLoader, boolean) - Method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
A way to change the provider of additional resources (classes) for the
compiler by specifying classloader to use for loading them.
- resume() - Method in class java.lang.Thread
-
- retainAll(Collection<?>) - Method in class java.util.AbstractCollection
-
Retains only the elements in this collection that are contained in the
specified collection (optional operation).
- retainAll(Collection<?>) - Method in class java.util.ArrayList
-
Retains only the elements in this list that are contained in the
specified collection.
- retainAll(Collection<?>) - Method in interface java.util.Collection
-
Retains only the elements in this collection that are contained in the
specified collection (optional operation).
- retainAll(Collection<?>) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Retains only the elements in this list that are contained in the
specified collection.
- retainAll(Collection<?>) - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Retains only the elements in this set that are contained in the
specified collection.
- retainAll(Collection<?>) - Method in class java.util.concurrent.SynchronousQueue
-
Always returns false.
- retainAll(Collection<?>) - Method in interface java.util.List
-
Retains only the elements in this list that are contained in the
specified collection (optional operation).
- retainAll(Collection<?>) - Method in interface java.util.Set
-
Retains only the elements in this set that are contained in the
specified collection (optional operation).
- retainAll(Collection<?>) - Method in class java.util.Vector
-
Retains only the elements in this Vector that are contained in the
specified Collection.
- Retention - Annotation Type in java.lang.annotation
-
Indicates how long annotations with the annotated type are to
be retained.
- RetentionPolicy - Enum in java.lang.annotation
-
Annotation retention policy.
- returnType() - Method in class java.lang.invoke.MethodType
-
Returns the return type of this method type.
- reverse(int) - Static method in class java.lang.Integer
-
Returns the value obtained by reversing the order of the bits in the
two's complement binary representation of the specified int
value.
- reverse(long) - Static method in class java.lang.Long
-
Returns the value obtained by reversing the order of the bits in the
two's complement binary representation of the specified long
value.
- reverse() - Method in class java.lang.StringBuffer
-
- reverse() - Method in class java.lang.StringBuilder
-
- reverse(List<?>) - Static method in class java.util.Collections
-
Reverses the order of the elements in the specified list.
- reverseBytes(char) - Static method in class java.lang.Character
-
Returns the value obtained by reversing the order of the bytes in the
specified char value.
- reverseBytes(int) - Static method in class java.lang.Integer
-
Returns the value obtained by reversing the order of the bytes in the
two's complement representation of the specified int value.
- reverseBytes(long) - Static method in class java.lang.Long
-
Returns the value obtained by reversing the order of the bytes in the
two's complement representation of the specified long value.
- reverseBytes(short) - Static method in class java.lang.Short
-
Returns the value obtained by reversing the order of the bytes in the
two's complement representation of the specified short value.
- reverseOrder() - Static method in class java.util.Collections
-
Returns a comparator that imposes the reverse of the natural
ordering on a collection of objects that implement the
Comparable interface.
- reverseOrder(Comparator<T>) - Static method in class java.util.Collections
-
Returns a comparator that imposes the reverse ordering of the specified
comparator.
- rint(double) - Static method in class java.lang.Math
-
Returns the double value that is closest in value
to the argument and is equal to a mathematical integer.
- roll(int, boolean) - Method in class java.util.Calendar
-
Adds or subtracts (up/down) a single unit of time on the given time
field without changing larger fields.
- roll(int, int) - Method in class java.util.Calendar
-
Adds the specified (signed) amount to the specified calendar field
without changing larger fields.
- ROOT - Static variable in class java.util.Locale
-
Useful constant for the root locale.
- rotate(List<?>, int) - Static method in class java.util.Collections
-
Rotates the elements in the specified list by the specified distance.
- rotateLeft(int, int) - Static method in class java.lang.Integer
-
Returns the value obtained by rotating the two's complement binary
representation of the specified int value left by the
specified number of bits.
- rotateLeft(long, int) - Static method in class java.lang.Long
-
Returns the value obtained by rotating the two's complement binary
representation of the specified long value left by the
specified number of bits.
- rotateRight(int, int) - Static method in class java.lang.Integer
-
Returns the value obtained by rotating the two's complement binary
representation of the specified int value right by the
specified number of bits.
- rotateRight(long, int) - Static method in class java.lang.Long
-
Returns the value obtained by rotating the two's complement binary
representation of the specified long value right by the
specified number of bits.
- round(float) - Static method in class java.lang.Math
-
Returns the closest int to the argument, with ties
rounding up.
- round(double) - Static method in class java.lang.Math
-
Returns the closest long to the argument, with ties
rounding up.
- round(MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal rounded according to the
MathContext settings.
- ROUND_CEILING - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards positive infinity.
- ROUND_DOWN - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards zero.
- ROUND_FLOOR - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards negative infinity.
- ROUND_HALF_DOWN - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards "nearest neighbor"
unless both neighbors are equidistant, in which case round
down.
- ROUND_HALF_EVEN - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards the "nearest neighbor"
unless both neighbors are equidistant, in which case, round
towards the even neighbor.
- ROUND_HALF_UP - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards "nearest neighbor"
unless both neighbors are equidistant, in which case round up.
- ROUND_UNNECESSARY - Static variable in class java.math.BigDecimal
-
Rounding mode to assert that the requested operation has an exact
result, hence no rounding is necessary.
- ROUND_UP - Static variable in class java.math.BigDecimal
-
Rounding mode to round away from zero.
- RoundingMode - Enum in java.math
-
Specifies a rounding behavior for numerical operations
capable of discarding precision.
- run() - Method in interface java.lang.Runnable
-
When an object implementing interface Runnable is used
to create a thread, starting the thread causes the object's
run method to be called in that separately executing
thread.
- run() - Method in class java.lang.Thread
-
If this thread was constructed using a separate
Runnable run object, then that
Runnable object's run method is called;
otherwise, this method does nothing and returns.
- run() - Method in interface java.security.PrivilegedAction
-
Performs the computation.
- run() - Method in interface java.security.PrivilegedExceptionAction
-
Performs the computation.
- run() - Method in class java.util.concurrent.ForkJoinWorkerThread
-
This method is required to be public, but should never be
called explicitly.
- run() - Method in class java.util.concurrent.FutureTask
-
Sets this Future to the result of its computation
unless it has been cancelled.
- run() - Method in interface java.util.concurrent.RunnableFuture
-
Sets this Future to the result of its computation
unless it has been cancelled.
- run() - Method in class java.util.TimerTask
-
The action to be performed by this timer task.
- runAndReset() - Method in class java.util.concurrent.FutureTask
-
Executes the computation without setting its result, and then
resets this Future to initial state, failing to do so if the
computation encounters an exception or is cancelled.
- Runnable - Interface in java.lang
-
The Runnable interface should be implemented by any
class whose instances are intended to be executed by a thread.
- RunnableFuture<V> - Interface in java.util.concurrent
-
- RunnableScheduledFuture<V> - Interface in java.util.concurrent
-
- RuntimeException - Exception in java.lang
-
RuntimeException is the superclass of those
exceptions that can be thrown during the normal operation of the
Java Virtual Machine.
- RuntimeException() - Constructor for exception java.lang.RuntimeException
-
Constructs a new runtime exception with null as its
detail message.
- RuntimeException(String) - Constructor for exception java.lang.RuntimeException
-
Constructs a new runtime exception with the specified detail message.
- RuntimeException(String, Throwable) - Constructor for exception java.lang.RuntimeException
-
Constructs a new runtime exception with the specified detail message and
cause.
- RuntimeException(Throwable) - Constructor for exception java.lang.RuntimeException
-
Constructs a new runtime exception with the specified cause and a
detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause).
- RuntimeException(String, Throwable, boolean, boolean) - Constructor for exception java.lang.RuntimeException
-
Constructs a new runtime exception with the specified detail
message, cause, suppression enabled or disabled, and writable
stack trace enabled or disabled.
- SafeVarargs - Annotation Type in java.lang
-
A programmer assertion that the body of the annotated method or
constructor does not perform potentially unsafe operations on its
varargs parameter.
- sameFile(URL) - Method in class java.net.URL
-
Compares two URLs, excluding the fragment component.
- sameFile(URL, URL) - Method in class java.net.URLStreamHandler
-
Compare two urls to see whether they refer to the same file,
i.e., having the same protocol, host, port, and path.
- SATURDAY - Static variable in class java.util.Calendar
-
- save(OutputStream, String) - Method in class java.util.Properties
-
Deprecated.
This method does not throw an IOException if an I/O error
occurs while saving the property list. The preferred way to save a
properties list is via the store(OutputStream out,
String comments) method or the
storeToXML(OutputStream os, String comment) method.
- SC_BLOCK_DATA - Static variable in interface java.io.ObjectStreamConstants
-
Bit mask for ObjectStreamClass flag.
- SC_ENUM - Static variable in interface java.io.ObjectStreamConstants
-
Bit mask for ObjectStreamClass flag.
- SC_EXTERNALIZABLE - Static variable in interface java.io.ObjectStreamConstants
-
Bit mask for ObjectStreamClass flag.
- SC_SERIALIZABLE - Static variable in interface java.io.ObjectStreamConstants
-
Bit mask for ObjectStreamClass flag.
- SC_WRITE_METHOD - Static variable in interface java.io.ObjectStreamConstants
-
Bit mask for ObjectStreamClass flag.
- scale() - Method in class java.math.BigDecimal
-
Returns the scale of this BigDecimal.
- scaleByPowerOfTen(int) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose numerical value is equal to
(this * 10n).
- schedule(Runnable, long, TimeUnit) - Method in interface java.util.concurrent.ScheduledExecutorService
-
Creates and executes a one-shot action that becomes enabled
after the given delay.
- schedule(Callable<V>, long, TimeUnit) - Method in interface java.util.concurrent.ScheduledExecutorService
-
Creates and executes a ScheduledFuture that becomes enabled after the
given delay.
- schedule(Runnable, long, TimeUnit) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
- schedule(Callable<V>, long, TimeUnit) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
- schedule(TimerTask, long) - Method in class java.util.Timer
-
Schedules the specified task for execution after the specified delay.
- schedule(TimerTask, Date) - Method in class java.util.Timer
-
Schedules the specified task for execution at the specified time.
- schedule(TimerTask, long, long) - Method in class java.util.Timer
-
Schedules the specified task for repeated fixed-delay execution,
beginning after the specified delay.
- schedule(TimerTask, Date, long) - Method in class java.util.Timer
-
Schedules the specified task for repeated fixed-delay execution,
beginning at the specified time.
- scheduleAtFixedRate(Runnable, long, long, TimeUnit) - Method in interface java.util.concurrent.ScheduledExecutorService
-
Creates and executes a periodic action that becomes enabled first
after the given initial delay, and subsequently with the given
period; that is executions will commence after
initialDelay then initialDelay+period, then
initialDelay + 2 * period, and so on.
- scheduleAtFixedRate(Runnable, long, long, TimeUnit) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
- scheduleAtFixedRate(TimerTask, long, long) - Method in class java.util.Timer
-
Schedules the specified task for repeated fixed-rate execution,
beginning after the specified delay.
- scheduleAtFixedRate(TimerTask, Date, long) - Method in class java.util.Timer
-
Schedules the specified task for repeated fixed-rate execution,
beginning at the specified time.
- scheduledExecutionTime() - Method in class java.util.TimerTask
-
Returns the scheduled execution time of the most recent
actual execution of this task.
- ScheduledExecutorService - Interface in java.util.concurrent
-
An
ExecutorService that can schedule commands to run after a given
delay, or to execute periodically.
- ScheduledFuture<V> - Interface in java.util.concurrent
-
A delayed result-bearing action that can be cancelled.
- ScheduledThreadPoolExecutor - Class in java.util.concurrent
-
A
ThreadPoolExecutor that can additionally schedule
commands to run after a given delay, or to execute
periodically.
- ScheduledThreadPoolExecutor(int) - Constructor for class java.util.concurrent.ScheduledThreadPoolExecutor
-
Creates a new ScheduledThreadPoolExecutor with the
given core pool size.
- ScheduledThreadPoolExecutor(int, ThreadFactory) - Constructor for class java.util.concurrent.ScheduledThreadPoolExecutor
-
Creates a new ScheduledThreadPoolExecutor with the
given initial parameters.
- ScheduledThreadPoolExecutor(int, RejectedExecutionHandler) - Constructor for class java.util.concurrent.ScheduledThreadPoolExecutor
-
Creates a new ScheduledThreadPoolExecutor with the given
initial parameters.
- ScheduledThreadPoolExecutor(int, ThreadFactory, RejectedExecutionHandler) - Constructor for class java.util.concurrent.ScheduledThreadPoolExecutor
-
Creates a new ScheduledThreadPoolExecutor with the given
initial parameters.
- scheduleWithFixedDelay(Runnable, long, long, TimeUnit) - Method in interface java.util.concurrent.ScheduledExecutorService
-
Creates and executes a periodic action that becomes enabled first
after the given initial delay, and subsequently with the
given delay between the termination of one execution and the
commencement of the next.
- scheduleWithFixedDelay(Runnable, long, long, TimeUnit) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
- search(Object) - Method in class java.util.Stack
-
Returns the 1-based position where an object is on this stack.
- SECOND - Static variable in class java.text.DateFormat.Field
-
Constant identifying the second field.
- SECOND - Static variable in class java.util.Calendar
-
Field number for get and set indicating the
second within the minute.
- SECOND_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for SECOND field alignment.
- SecurityException - Exception in java.lang
-
Thrown by the security manager to indicate a security violation.
- SecurityException() - Constructor for exception java.lang.SecurityException
-
Constructs a SecurityException with no detail message.
- SecurityException(String) - Constructor for exception java.lang.SecurityException
-
Constructs a SecurityException with the specified
detail message.
- SecurityException(String, Throwable) - Constructor for exception java.lang.SecurityException
-
Creates a SecurityException with the specified
detail message and cause.
- SecurityException(Throwable) - Constructor for exception java.lang.SecurityException
-
Creates a SecurityException with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause).
- Semaphore - Class in java.util.concurrent
-
A counting semaphore.
- Semaphore(int) - Constructor for class java.util.concurrent.Semaphore
-
Creates a Semaphore with the given number of
permits and nonfair fairness setting.
- Semaphore(int, boolean) - Constructor for class java.util.concurrent.Semaphore
-
Creates a Semaphore with the given number of
permits and the given fairness setting.
- separator - Static variable in class java.io.File
-
The system-dependent default name-separator character, represented as a
string for convenience.
- separatorChar - Static variable in class java.io.File
-
The system-dependent default name-separator character.
- SEPTEMBER - Static variable in class java.util.Calendar
-
Value of the
Calendar.MONTH field indicating the
ninth month of the year in the Gregorian and Julian calendars.
- Serializable - Interface in java.io
-
Serializability of a class is enabled by the class implementing the
java.io.Serializable interface.
- SerializedLambda - Class in java.lang.invoke
-
Serialized form of a lambda expression.
- SerializedLambda(Class<?>, String, String, String, int, String, String, String, String, Object[]) - Constructor for class java.lang.invoke.SerializedLambda
-
Create a SerializedLambda from the low-level information present
at the lambda factory site.
- ServiceConfigurationError - Error in java.util
-
Error thrown when something goes wrong while loading a service provider.
- ServiceConfigurationError(String) - Constructor for error java.util.ServiceConfigurationError
-
Constructs a new instance with the specified message.
- ServiceConfigurationError(String, Throwable) - Constructor for error java.util.ServiceConfigurationError
-
Constructs a new instance with the specified message and cause.
- ServiceLoader<S> - Class in java.util
-
A simple service-provider loading facility.
- set(Object, int, Object) - Static method in class java.lang.reflect.Array
-
Sets the value of the indexed component of the specified array
object to the specified new value.
- set(Object, Object) - Method in class java.lang.reflect.Field
-
Sets the field represented by this Field object on the
specified object argument to the specified new value.
- set(T) - Method in class java.lang.ThreadLocal
-
Sets the current thread's copy of this thread-local variable
to the specified value.
- set(String, String, int, String, String) - Method in class java.net.URL
-
Sets the fields of the URL.
- set(String, String, int, String, String, String, String, String) - Method in class java.net.URL
-
Sets the specified 8 fields of the URL.
- set(int, E) - Method in class java.util.AbstractList
-
Replaces the element at the specified position in this list with the
specified element (optional operation).
- set(int, E) - Method in class java.util.AbstractSequentialList
-
Replaces the element at the specified position in this list with the
specified element (optional operation).
- set(int, E) - Method in class java.util.ArrayList
-
Replaces the element at the specified position in this list with
the specified element.
- set(int) - Method in class java.util.BitSet
-
Sets the bit at the specified index to true.
- set(int, boolean) - Method in class java.util.BitSet
-
Sets the bit at the specified index to the specified value.
- set(int, int) - Method in class java.util.BitSet
-
Sets the bits from the specified fromIndex (inclusive) to the
specified toIndex (exclusive) to true.
- set(int, int, boolean) - Method in class java.util.BitSet
-
Sets the bits from the specified fromIndex (inclusive) to the
specified toIndex (exclusive) to the specified value.
- set(int, int) - Method in class java.util.Calendar
-
Sets the given calendar field to the given value.
- set(int, int, int) - Method in class java.util.Calendar
-
Sets the values for the calendar fields YEAR,
MONTH, and DAY_OF_MONTH.
- set(int, int, int, int, int) - Method in class java.util.Calendar
-
Sets the values for the calendar fields YEAR,
MONTH, DAY_OF_MONTH,
HOUR_OF_DAY, and MINUTE.
- set(int, int, int, int, int, int) - Method in class java.util.Calendar
-
Sets the values for the fields YEAR, MONTH,
DAY_OF_MONTH, HOUR, MINUTE, and
SECOND.
- set(boolean) - Method in class java.util.concurrent.atomic.AtomicBoolean
-
Unconditionally sets to the given value.
- set(int) - Method in class java.util.concurrent.atomic.AtomicInteger
-
Sets to the given value.
- set(int, int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Sets the element at position i to the given value.
- set(T, int) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Sets the field of the given object managed by this updater to the
given updated value.
- set(long) - Method in class java.util.concurrent.atomic.AtomicLong
-
Sets to the given value.
- set(int, long) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Sets the element at position i to the given value.
- set(T, long) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Sets the field of the given object managed by this updater to the
given updated value.
- set(V) - Method in class java.util.concurrent.atomic.AtomicReference
-
Sets to the given value.
- set(int, E) - Method in class java.util.concurrent.atomic.AtomicReferenceArray
-
Sets the element at position i to the given value.
- set(T, V) - Method in class java.util.concurrent.atomic.AtomicReferenceFieldUpdater
-
Sets the field of the given object managed by this updater to the
given updated value.
- set(int, E) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Replaces the element at the specified position in this list with the
specified element.
- set(V) - Method in class java.util.concurrent.FutureTask
-
Sets the result of this Future to the given value unless
this future has already been set or has been cancelled.
- set(int, E) - Method in class java.util.LinkedList
-
Replaces the element at the specified position in this list with the
specified element.
- set(int, E) - Method in interface java.util.List
-
Replaces the element at the specified position in this list with the
specified element (optional operation).
- set(E) - Method in interface java.util.ListIterator
-
- Set<E> - Interface in java.util
-
A collection that contains no duplicate elements.
- set(int, E) - Method in class java.util.Vector
-
Replaces the element at the specified position in this Vector with the
specified element.
- set2DigitYearStart(Date) - Method in class java.text.SimpleDateFormat
-
Sets the 100-year period 2-digit years will be interpreted as being in
to begin on the date the user specifies.
- setAccessible(AccessibleObject[], boolean) - Static method in class java.lang.reflect.AccessibleObject
-
Convenience method to set the accessible flag for an
array of objects with a single security check (for efficiency).
- setAccessible(boolean) - Method in class java.lang.reflect.AccessibleObject
-
Set the accessible flag for this object to
the indicated boolean value.
- setAllowUserInteraction(boolean) - Method in class java.net.URLConnection
-
Set the value of the allowUserInteraction field of
this URLConnection.
- setAmPmStrings(String[]) - Method in class java.text.DateFormatSymbols
-
Sets ampm strings.
- setArguments(String...) - Method in class org.apidesign.bck2brwsr.launcher.InvocationContext
-
Arguments to pass to the invoked method.
- setBeginIndex(int) - Method in class java.text.FieldPosition
-
Sets the begin index.
- setBit(int) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is equivalent to this BigInteger
with the designated bit set.
- setBoolean(Object, int, boolean) - Static method in class java.lang.reflect.Array
-
Sets the value of the indexed component of the specified array
object to the specified boolean value.
- setBoolean(Object, boolean) - Method in class java.lang.reflect.Field
-
Sets the value of a field as a boolean on the specified object.
- setByte(Object, int, byte) - Static method in class java.lang.reflect.Array
-
Sets the value of the indexed component of the specified array
object to the specified byte value.
- setByte(Object, byte) - Method in class java.lang.reflect.Field
-
Sets the value of a field as a byte on the specified object.
- setCalendar(Calendar) - Method in class java.text.DateFormat
-
Set the calendar to be used by this date format.
- setChar(Object, int, char) - Static method in class java.lang.reflect.Array
-
Sets the value of the indexed component of the specified array
object to the specified char value.
- setChar(Object, char) - Method in class java.lang.reflect.Field
-
Sets the value of a field as a char on the specified object.
- setCharAt(int, char) - Method in class java.lang.StringBuffer
-
- setChoices(double[], String[]) - Method in class java.text.ChoiceFormat
-
Set the choices to be used in formatting.
- setConnectTimeout(int) - Method in class java.net.URLConnection
-
Sets a specified timeout value, in milliseconds, to be used
when opening a communications link to the resource referenced
by this URLConnection.
- setContentHandlerFactory(ContentHandlerFactory) - Static method in class java.net.URLConnection
-
Sets the ContentHandlerFactory of an
application.
- setContextClassLoader(ClassLoader) - Method in class java.lang.Thread
-
Sets the context ClassLoader for this Thread.
- setContinueExistingPeriodicTasksAfterShutdownPolicy(boolean) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Sets the policy on whether to continue executing existing
periodic tasks even when this executor has been shutdown.
- setCorePoolSize(int) - Method in class java.util.concurrent.ThreadPoolExecutor
-
Sets the core number of threads.
- setCurrency(Currency) - Method in class java.text.DecimalFormat
-
Sets the currency used by this number format when formatting
currency values.
- setCurrency(Currency) - Method in class java.text.DecimalFormatSymbols
-
Sets the currency of these DecimalFormatSymbols.
- setCurrency(Currency) - Method in class java.text.NumberFormat
-
Sets the currency used by this number format when formatting
currency values.
- setCurrencySymbol(String) - Method in class java.text.DecimalFormatSymbols
-
Sets the currency symbol for the currency of these
DecimalFormatSymbols in their locale.
- setDaemon(boolean) - Method in class java.lang.Thread
-
Marks this thread as either a
daemon thread
or a user thread.
- setDate(int) - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.set(Calendar.DAY_OF_MONTH, int date).
- setDateFormatSymbols(DateFormatSymbols) - Method in class java.text.SimpleDateFormat
-
Sets the date and time format symbols of this date format.
- setDecimalFormatSymbols(DecimalFormatSymbols) - Method in class java.text.DecimalFormat
-
Sets the decimal format symbols, which is generally not changed
by the programmer or user.
- setDecimalSeparator(char) - Method in class java.text.DecimalFormatSymbols
-
Sets the character used for decimal sign.
- setDecimalSeparatorAlwaysShown(boolean) - Method in class java.text.DecimalFormat
-
Allows you to set the behavior of the decimal separator with integers.
- setDefault(Locale) - Static method in class java.util.Locale
-
Sets the default locale for this instance of the Java Virtual Machine.
- setDefault(TimeZone) - Static method in class java.util.TimeZone
-
Sets the TimeZone that is
returned by the getDefault method.
- setDefaultAllowUserInteraction(boolean) - Static method in class java.net.URLConnection
-
Sets the default value of the
allowUserInteraction field for all future
URLConnection objects to the specified value.
- setDefaultRequestProperty(String, String) - Static method in class java.net.URLConnection
-
Deprecated.
The instance specific setRequestProperty method
should be used after an appropriate instance of URLConnection
is obtained. Invoking this method will have no effect.
- setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler) - Static method in class java.lang.Thread
-
Set the default handler invoked when a thread abruptly terminates
due to an uncaught exception, and no other handler has been defined
for that thread.
- setDefaultUseCaches(boolean) - Method in class java.net.URLConnection
-
Sets the default value of the useCaches field to the
specified value.
- setDigit(char) - Method in class java.text.DecimalFormatSymbols
-
Sets the character used for a digit in a pattern.
- setDoInput(boolean) - Method in class java.net.URLConnection
-
Sets the value of the doInput field for this
URLConnection to the specified value.
- setDoOutput(boolean) - Method in class java.net.URLConnection
-
Sets the value of the doOutput field for this
URLConnection to the specified value.
- setDouble(Object, int, double) - Static method in class java.lang.reflect.Array
-
Sets the value of the indexed component of the specified array
object to the specified double value.
- setDouble(Object, double) - Method in class java.lang.reflect.Field
-
Sets the value of a field as a double on the specified object.
- setDSTSavings(int) - Method in class java.util.SimpleTimeZone
-
Sets the amount of time in milliseconds that the clock is advanced
during daylight saving time.
- setElementAt(E, int) - Method in class java.util.Vector
-
Sets the component at the specified index of this
vector to be the specified object.
- setEndIndex(int) - Method in class java.text.FieldPosition
-
Sets the end index.
- setEndRule(int, int, int, int) - Method in class java.util.SimpleTimeZone
-
Sets the daylight saving time end rule.
- setEndRule(int, int, int) - Method in class java.util.SimpleTimeZone
-
Sets the daylight saving time end rule to a fixed date within a month.
- setEndRule(int, int, int, int, boolean) - Method in class java.util.SimpleTimeZone
-
Sets the daylight saving time end rule to a weekday before or after the given date within
a month, e.g., the first Monday on or after the 8th.
- setEras(String[]) - Method in class java.text.DateFormatSymbols
-
Sets era strings.
- setErr(PrintStream) - Static method in class java.lang.System
-
- setError() - Method in class java.io.PrintStream
-
Sets the error state of the stream to true.
- setError() - Method in class java.io.PrintWriter
-
Indicates that an error has occurred.
- setErrorIndex(int) - Method in class java.text.ParsePosition
-
Set the index at which a parse error occurred.
- setException(Throwable) - Method in class java.util.concurrent.FutureTask
-
Causes this future to report an ExecutionException
with the given throwable as its cause, unless this Future has
already been set or has been cancelled.
- setExclusiveOwnerThread(Thread) - Method in class java.util.concurrent.locks.AbstractOwnableSynchronizer
-
Sets the thread that currently owns exclusive access.
- setExecutable(boolean, boolean) - Method in class java.io.File
-
Sets the owner's or everybody's execute permission for this abstract
pathname.
- setExecutable(boolean) - Method in class java.io.File
-
A convenience method to set the owner's execute permission for this abstract
pathname.
- setExecuteExistingDelayedTasksAfterShutdownPolicy(boolean) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Sets the policy on whether to execute existing delayed
tasks even when this executor has been shutdown.
- setExponentSeparator(String) - Method in class java.text.DecimalFormatSymbols
-
Sets the string used to separate the mantissa from the exponent.
- setFileNameMap(FileNameMap) - Static method in class java.net.URLConnection
-
Sets the FileNameMap.
- setFirstDayOfWeek(int) - Method in class java.util.Calendar
-
Sets what the first day of the week is; e.g., SUNDAY in the U.S.,
MONDAY in France.
- setFloat(Object, int, float) - Static method in class java.lang.reflect.Array
-
Sets the value of the indexed component of the specified array
object to the specified float value.
- setFloat(Object, float) - Method in class java.lang.reflect.Field
-
Sets the value of a field as a float on the specified object.
- setFormat(int, Format) - Method in class java.text.MessageFormat
-
Sets the format to use for the format element with the given
format element index within the previously set pattern string.
- setFormatByArgumentIndex(int, Format) - Method in class java.text.MessageFormat
-
Sets the format to use for the format elements within the
previously set pattern string that use the given argument
index.
- setFormats(Format[]) - Method in class java.text.MessageFormat
-
Sets the formats to use for the format elements in the
previously set pattern string.
- setFormatsByArgumentIndex(Format[]) - Method in class java.text.MessageFormat
-
Sets the formats to use for the values passed into
format methods or returned from parse
methods.
- setGroupingSeparator(char) - Method in class java.text.DecimalFormatSymbols
-
Sets the character used for thousands separator.
- setGroupingSize(int) - Method in class java.text.DecimalFormat
-
Set the grouping size.
- setGroupingUsed(boolean) - Method in class java.text.NumberFormat
-
Set whether or not grouping will be used in this format.
- setHours(int) - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.set(Calendar.HOUR_OF_DAY, int hours).
- setHtmlFragment(String) - Method in class org.apidesign.bck2brwsr.launcher.InvocationContext
-
An HTML fragment to be available for the execution.
- setID(String) - Method in class java.util.TimeZone
-
Sets the time zone ID.
- setIfModifiedSince(long) - Method in class java.net.URLConnection
-
Sets the value of the ifModifiedSince field of
this URLConnection to the specified value.
- setIn(InputStream) - Static method in class java.lang.System
-
- setIndex(int) - Method in interface java.text.CharacterIterator
-
Sets the position to the specified position in the text and returns that
character.
- setIndex(int) - Method in class java.text.ParsePosition
-
Set the current parse position.
- setInfinity(String) - Method in class java.text.DecimalFormatSymbols
-
Sets the string used to represent infinity.
- setInt(Object, int, int) - Static method in class java.lang.reflect.Array
-
Sets the value of the indexed component of the specified array
object to the specified int value.
- setInt(Object, int) - Method in class java.lang.reflect.Field
-
Sets the value of a field as an int on the specified object.
- setInternationalCurrencySymbol(String) - Method in class java.text.DecimalFormatSymbols
-
Sets the ISO 4217 currency code of the currency of these
DecimalFormatSymbols.
- setKeepAliveTime(long, TimeUnit) - Method in class java.util.concurrent.ThreadPoolExecutor
-
Sets the time limit for which threads may remain idle before
being terminated.
- setLastModified(long) - Method in class java.io.File
-
Sets the last-modified time of the file or directory named by this
abstract pathname.
- setLength(int) - Method in class java.lang.StringBuffer
-
- setLenient(boolean) - Method in class java.text.DateFormat
-
Specify whether or not date/time parsing is to be lenient.
- setLenient(boolean) - Method in class java.util.Calendar
-
Specifies whether or not date/time interpretation is to be lenient.
- setLevel(Level) - Method in class java.util.logging.Logger
-
Set the log level specifying which message levels will be
logged by this logger.
- setLevel(Level) - Method in class java.util.logging.LogRecord
-
Set the logging message level, for example Level.SEVERE.
- setLineNumber(int) - Method in class java.io.LineNumberInputStream
-
Deprecated.
Sets the line number to the specified argument.
- setLineNumber(int) - Method in class java.io.LineNumberReader
-
Set the current line number.
- setLocale(Locale) - Method in class java.text.MessageFormat
-
Sets the locale to be used when creating or comparing subformats.
- setLocalPatternChars(String) - Method in class java.text.DateFormatSymbols
-
Sets localized date-time pattern characters.
- setLoggerName(String) - Method in class java.util.logging.LogRecord
-
Set the source Logger's name.
- setLong(Object, int, long) - Static method in class java.lang.reflect.Array
-
Sets the value of the indexed component of the specified array
object to the specified long value.
- setLong(Object, long) - Method in class java.lang.reflect.Field
-
Sets the value of a field as a long on the specified object.
- setMaximumFractionDigits(int) - Method in class java.text.DecimalFormat
-
Sets the maximum number of digits allowed in the fraction portion of a
number.
- setMaximumFractionDigits(int) - Method in class java.text.NumberFormat
-
Sets the maximum number of digits allowed in the fraction portion of a
number.
- setMaximumIntegerDigits(int) - Method in class java.text.DecimalFormat
-
Sets the maximum number of digits allowed in the integer portion of a
number.
- setMaximumIntegerDigits(int) - Method in class java.text.NumberFormat
-
Sets the maximum number of digits allowed in the integer portion of a
number.
- setMaximumPoolSize(int) - Method in class java.util.concurrent.ThreadPoolExecutor
-
Sets the maximum allowed number of threads.
- setMessage(String) - Method in class java.util.logging.LogRecord
-
Set the "raw" log message, before localization or formatting.
- setMillis(long) - Method in class java.util.logging.LogRecord
-
Set event time.
- setMinimalDaysInFirstWeek(int) - Method in class java.util.Calendar
-
Sets what the minimal days required in the first week of the year are;
For example, if the first week is defined as one that contains the first
day of the first month of a year, call this method with value 1.
- setMinimumFractionDigits(int) - Method in class java.text.DecimalFormat
-
Sets the minimum number of digits allowed in the fraction portion of a
number.
- setMinimumFractionDigits(int) - Method in class java.text.NumberFormat
-
Sets the minimum number of digits allowed in the fraction portion of a
number.
- setMinimumIntegerDigits(int) - Method in class java.text.DecimalFormat
-
Sets the minimum number of digits allowed in the integer portion of a
number.
- setMinimumIntegerDigits(int) - Method in class java.text.NumberFormat
-
Sets the minimum number of digits allowed in the integer portion of a
number.
- setMinusSign(char) - Method in class java.text.DecimalFormatSymbols
-
Sets the character used to represent minus sign.
- setMinutes(int) - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.set(Calendar.MINUTE, int minutes).
- setMonetaryDecimalSeparator(char) - Method in class java.text.DecimalFormatSymbols
-
Sets the monetary decimal separator.
- setMonth(int) - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.set(Calendar.MONTH, int month).
- setMonths(String[]) - Method in class java.text.DateFormatSymbols
-
Sets month strings.
- setMultiplier(int) - Method in class java.text.DecimalFormat
-
Sets the multiplier for use in percent, per mille, and similar
formats.
- setName(String) - Method in class java.lang.Thread
-
Changes the name of this thread to be equal to the argument
name.
- setNaN(String) - Method in class java.text.DecimalFormatSymbols
-
Sets the string used to represent "not a number".
- setNegativePrefix(String) - Method in class java.text.DecimalFormat
-
Set the negative prefix.
- setNegativeSuffix(String) - Method in class java.text.DecimalFormat
-
Set the negative suffix.
- setNumberFormat(NumberFormat) - Method in class java.text.DateFormat
-
Allows you to set the number formatter.
- setOffset(int) - Method in class java.io.ObjectStreamField
-
Offset within instance data.
- setOut(PrintStream) - Static method in class java.lang.System
-
- setParameters(Object[]) - Method in class java.util.logging.LogRecord
-
Set the parameters to the log message.
- setParent(Logger) - Method in class java.util.logging.Logger
-
Set the parent for this Logger.
- setParent(ResourceBundle) - Method in class java.util.ResourceBundle
-
Sets the parent bundle of this bundle.
- setParseBigDecimal(boolean) - Method in class java.text.DecimalFormat
-
- setParseIntegerOnly(boolean) - Method in class java.text.NumberFormat
-
Sets whether or not numbers should be parsed as integers only.
- setPatternSeparator(char) - Method in class java.text.DecimalFormatSymbols
-
Sets the character used to separate positive and negative subpatterns
in a pattern.
- setPercent(char) - Method in class java.text.DecimalFormatSymbols
-
Sets the character used for percent sign.
- setPerMill(char) - Method in class java.text.DecimalFormatSymbols
-
Sets the character used for per mille sign.
- setPositivePrefix(String) - Method in class java.text.DecimalFormat
-
Set the positive prefix.
- setPositiveSuffix(String) - Method in class java.text.DecimalFormat
-
Set the positive suffix.
- setPriority(int) - Method in class java.lang.Thread
-
Changes the priority of this thread.
- setPropagationId(Object) - Method in class java.beans.PropertyChangeEvent
-
Sets the propagationId object for the event.
- setProperties(Properties) - Static method in class java.lang.System
-
- setProperty(String, String) - Method in class java.util.Properties
-
Calls the Hashtable method put.
- setRawOffset(int) - Method in class java.util.SimpleTimeZone
-
Sets the base time zone offset to GMT.
- setRawOffset(int) - Method in class java.util.TimeZone
-
Sets the base time zone offset to GMT.
- setRawResult(V) - Method in class java.util.concurrent.ForkJoinTask
-
Forces the given value to be returned as a result.
- setRawResult(Void) - Method in class java.util.concurrent.RecursiveAction
-
Requires null completion value.
- setRawResult(V) - Method in class java.util.concurrent.RecursiveTask
-
- setReadable(boolean, boolean) - Method in class java.io.File
-
Sets the owner's or everybody's read permission for this abstract
pathname.
- setReadable(boolean) - Method in class java.io.File
-
A convenience method to set the owner's read permission for this abstract
pathname.
- setReadOnly() - Method in class java.io.File
-
Marks the file or directory named by this abstract pathname so that
only read operations are allowed.
- setReadTimeout(int) - Method in class java.net.URLConnection
-
Sets the read timeout to a specified timeout, in
milliseconds.
- setRejectedExecutionHandler(RejectedExecutionHandler) - Method in class java.util.concurrent.ThreadPoolExecutor
-
Sets a new handler for unexecutable tasks.
- setRemoveOnCancelPolicy(boolean) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Sets the policy on whether cancelled tasks should be immediately
removed from the work queue at time of cancellation.
- setRequestProperty(String, String) - Method in class java.net.URLConnection
-
Sets the general request property.
- setResourceBundleName(String) - Method in class java.util.logging.LogRecord
-
Set the localization resource bundle name.
- setRoundingMode(RoundingMode) - Method in class java.text.DecimalFormat
-
- setRoundingMode(RoundingMode) - Method in class java.text.NumberFormat
-
- setScale(int, RoundingMode) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose scale is the specified
value, and whose unscaled value is determined by multiplying or
dividing this BigDecimal's unscaled value by the
appropriate power of ten to maintain its overall value.
- setScale(int, int) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose scale is the specified
value, and whose unscaled value is determined by multiplying or
dividing this BigDecimal's unscaled value by the
appropriate power of ten to maintain its overall value.
- setScale(int) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose scale is the specified
value, and whose value is numerically equal to this
BigDecimal's.
- setSeconds(int) - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.set(Calendar.SECOND, int seconds).
- setSeed(long) - Method in class java.util.concurrent.ThreadLocalRandom
-
Throws UnsupportedOperationException.
- setSeed(long) - Method in class java.util.Random
-
Sets the seed of this random number generator using a single
long seed.
- setSequenceNumber(long) - Method in class java.util.logging.LogRecord
-
Set the sequence number.
- setShort(Object, int, short) - Static method in class java.lang.reflect.Array
-
Sets the value of the indexed component of the specified array
object to the specified short value.
- setShort(Object, short) - Method in class java.lang.reflect.Field
-
Sets the value of a field as a short on the specified object.
- setShortMonths(String[]) - Method in class java.text.DateFormatSymbols
-
Sets short month strings.
- setShortWeekdays(String[]) - Method in class java.text.DateFormatSymbols
-
Sets short weekday strings.
- setSigners(Class<?>, Object[]) - Method in class java.lang.ClassLoader
-
Sets the signers of a class.
- setSize(int) - Method in class java.util.Vector
-
Sets the size of this vector.
- setSourceClassName(String) - Method in class java.util.logging.LogRecord
-
Set the name of the class that (allegedly) issued the logging request.
- setSourceMethodName(String) - Method in class java.util.logging.LogRecord
-
Set the name of the method that (allegedly) issued the logging request.
- setStackTrace(StackTraceElement[]) - Method in class java.lang.Throwable
-
- setStartRule(int, int, int, int) - Method in class java.util.SimpleTimeZone
-
Sets the daylight saving time start rule.
- setStartRule(int, int, int) - Method in class java.util.SimpleTimeZone
-
Sets the daylight saving time start rule to a fixed date within a month.
- setStartRule(int, int, int, int, boolean) - Method in class java.util.SimpleTimeZone
-
Sets the daylight saving time start rule to a weekday before or after the given date within
a month, e.g., the first Monday on or after the 8th.
- setStartYear(int) - Method in class java.util.SimpleTimeZone
-
Sets the daylight saving time starting year.
- setState(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Sets the value of synchronization state.
- setState(int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Sets the value of synchronization state.
- setTarget(MethodHandle) - Method in class java.lang.invoke.CallSite
-
Updates the target method of this call site, according to the
behavior defined by this call site's specific class.
- setThreadFactory(ThreadFactory) - Method in class java.util.concurrent.ThreadPoolExecutor
-
Sets the thread factory used to create new threads.
- setThreadID(int) - Method in class java.util.logging.LogRecord
-
Set an identifier for the thread where the message originated.
- setThrown(Throwable) - Method in class java.util.logging.LogRecord
-
Set a throwable associated with the log event.
- setTime(Date) - Method in class java.util.Calendar
-
Sets this Calendar's time with the given Date.
- setTime(long) - Method in class java.util.Date
-
Sets this Date object to represent a point in time that is
time milliseconds after January 1, 1970 00:00:00 GMT.
- setTimeInMillis(long) - Method in class java.util.Calendar
-
Sets this Calendar's current time from the given long value.
- setTimeZone(TimeZone) - Method in class java.text.DateFormat
-
Sets the time zone for the calendar of this DateFormat object.
- setTimeZone(TimeZone) - Method in class java.util.Calendar
-
Sets the time zone with the given time zone value.
- setUncaughtExceptionHandler(Thread.UncaughtExceptionHandler) - Method in class java.lang.Thread
-
Set the handler invoked when this thread abruptly terminates
due to an uncaught exception.
- setURL(URL, String, String, int, String, String, String, String, String) - Method in class java.net.URLStreamHandler
-
Sets the fields of the URL argument to the indicated values.
- setURL(URL, String, String, int, String, String) - Method in class java.net.URLStreamHandler
-
Deprecated.
Use setURL(URL, String, String, int, String, String, String,
String);
- setUseCaches(boolean) - Method in class java.net.URLConnection
-
Sets the value of the useCaches field of this
URLConnection to the specified value.
- setUseParentHandlers(boolean) - Method in class java.util.logging.Logger
-
Specify whether or not this logger should send its output
to its parent Logger.
- setValue(V) - Method in class java.util.AbstractMap.SimpleEntry
-
Replaces the value corresponding to this entry with the specified
value.
- setValue(V) - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Replaces the value corresponding to this entry with the specified
value (optional operation).
- setValue(V) - Method in interface java.util.Map.Entry
-
Replaces the value corresponding to this entry with the specified
value (optional operation).
- setWeekDate(int, int, int) - Method in class java.util.Calendar
-
Sets the date of this Calendar with the the given date
specifiers - week year, week of year, and day of week.
- setWeekdays(String[]) - Method in class java.text.DateFormatSymbols
-
Sets weekday strings.
- setWritable(boolean, boolean) - Method in class java.io.File
-
Sets the owner's or everybody's write permission for this abstract
pathname.
- setWritable(boolean) - Method in class java.io.File
-
A convenience method to set the owner's write permission for this abstract
pathname.
- setYear(int) - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by Calendar.set(Calendar.YEAR, year + 1900).
- setZeroDigit(char) - Method in class java.text.DecimalFormatSymbols
-
Sets the character used for zero.
- setZoneStrings(String[][]) - Method in class java.text.DateFormatSymbols
-
Sets time zone strings.
- SEVERE - Static variable in class java.util.logging.Level
-
SEVERE is a message level indicating a serious failure.
- severe(String) - Method in class java.util.logging.Logger
-
Log a SEVERE message.
- shiftLeft(int) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this << n).
- shiftRight(int) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this >> n).
- Short - Class in java.lang
-
The Short class wraps a value of primitive type short in an object.
- Short(short) - Constructor for class java.lang.Short
-
Constructs a newly allocated Short object that
represents the specified short value.
- Short(String) - Constructor for class java.lang.Short
-
Constructs a newly allocated Short object that
represents the short value indicated by the
String parameter.
- SHORT - Static variable in class java.text.DateFormat
-
Constant for short style pattern.
- SHORT - Static variable in class java.util.Calendar
-
- SHORT - Static variable in class java.util.TimeZone
-
A style specifier for getDisplayName() indicating
a short name, such as "PST."
- shortValue() - Method in class java.lang.Byte
-
Returns the value of this Byte as a
short.
- shortValue() - Method in class java.lang.Double
-
Returns the value of this Double as a
short (by casting to a short).
- shortValue() - Method in class java.lang.Float
-
Returns the value of this Float as a short (by
casting to a short).
- shortValue() - Method in class java.lang.Integer
-
Returns the value of this Integer as a
short.
- shortValue() - Method in class java.lang.Long
-
Returns the value of this Long as a
short.
- shortValue() - Method in class java.lang.Number
-
Returns the value of the specified number as a short.
- shortValue() - Method in class java.lang.Short
-
Returns the value of this Short as a
short.
- shortValueExact() - Method in class java.math.BigDecimal
-
Converts this BigDecimal to a short, checking
for lost information.
- showDir(String, File, ClassLoader, String) - Static method in class org.apidesign.bck2brwsr.launcher.Launcher
-
Starts an HTTP server which provides access to certain directory.
- showDir(File, String) - Static method in class org.apidesign.bck2brwsr.launcher.Launcher
-
Starts an HTTP server which provides access to certain directory.
- showURL(ClassLoader, String) - Static method in class org.apidesign.bck2brwsr.launcher.Launcher
-
Starts an HTTP server which provides access to classes and resources
available in the
classes URL and shows a start page
available as
ClassLoader.getResource(java.lang.String) from the
provide classloader.
- showURL(String, ClassLoader, String) - Static method in class org.apidesign.bck2brwsr.launcher.Launcher
-
Starts an HTTP server which provides access to classes and resources
available in the
classes URL and shows a start page
available as
ClassLoader.getResource(java.lang.String) from the
provide classloader.
- shuffle(List<?>) - Static method in class java.util.Collections
-
Randomly permutes the specified list using a default source of
randomness.
- shuffle(List<?>, Random) - Static method in class java.util.Collections
-
Randomly permute the specified list using the specified source of
randomness.
- shutdown() - Method in interface java.util.concurrent.ExecutorService
-
Initiates an orderly shutdown in which previously submitted
tasks are executed, but no new tasks will be accepted.
- shutdown() - Method in class java.util.concurrent.ForkJoinPool
-
Initiates an orderly shutdown in which previously submitted
tasks are executed, but no new tasks will be accepted.
- shutdown() - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Initiates an orderly shutdown in which previously submitted
tasks are executed, but no new tasks will be accepted.
- shutdown() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Initiates an orderly shutdown in which previously submitted
tasks are executed, but no new tasks will be accepted.
- shutdown() - Method in class org.apidesign.bck2brwsr.launcher.Launcher
-
Shuts down the launcher.
- shutdownNow() - Method in interface java.util.concurrent.ExecutorService
-
Attempts to stop all actively executing tasks, halts the
processing of waiting tasks, and returns a list of the tasks
that were awaiting execution.
- shutdownNow() - Method in class java.util.concurrent.ForkJoinPool
-
Attempts to cancel and/or stop all tasks, and reject all
subsequently submitted tasks.
- shutdownNow() - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
Attempts to stop all actively executing tasks, halts the
processing of waiting tasks, and returns a list of the tasks
that were awaiting execution.
- shutdownNow() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Attempts to stop all actively executing tasks, halts the
processing of waiting tasks, and returns a list of the tasks
that were awaiting execution.
- SIGN - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the sign field.
- signal() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
-
Moves the longest-waiting thread, if one exists, from the
wait queue for this condition to the wait queue for the
owning lock.
- signal() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
Moves the longest-waiting thread, if one exists, from the
wait queue for this condition to the wait queue for the
owning lock.
- signal() - Method in interface java.util.concurrent.locks.Condition
-
Wakes up one waiting thread.
- signalAll() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
-
Moves all threads from the wait queue for this condition to
the wait queue for the owning lock.
- signalAll() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
Moves all threads from the wait queue for this condition to
the wait queue for the owning lock.
- signalAll() - Method in interface java.util.concurrent.locks.Condition
-
Wakes up all waiting threads.
- signum(int) - Static method in class java.lang.Integer
-
Returns the signum function of the specified int value.
- signum(long) - Static method in class java.lang.Long
-
Returns the signum function of the specified long value.
- signum(double) - Static method in class java.lang.Math
-
Returns the signum function of the argument; zero if the argument
is zero, 1.0 if the argument is greater than zero, -1.0 if the
argument is less than zero.
- signum(float) - Static method in class java.lang.Math
-
Returns the signum function of the argument; zero if the argument
is zero, 1.0f if the argument is greater than zero, -1.0f if the
argument is less than zero.
- signum() - Method in class java.math.BigDecimal
-
Returns the signum function of this BigDecimal.
- signum() - Method in class java.math.BigInteger
-
Returns the signum function of this BigInteger.
- SimpleDateFormat - Class in java.text
-
SimpleDateFormat is a concrete class for formatting and
parsing dates in a locale-sensitive manner.
- SimpleDateFormat() - Constructor for class java.text.SimpleDateFormat
-
Constructs a SimpleDateFormat using the default pattern and
date format symbols for the default locale.
- SimpleDateFormat(String) - Constructor for class java.text.SimpleDateFormat
-
Constructs a SimpleDateFormat using the given pattern and
the default date format symbols for the default locale.
- SimpleDateFormat(String, Locale) - Constructor for class java.text.SimpleDateFormat
-
Constructs a SimpleDateFormat using the given pattern and
the default date format symbols for the given locale.
- SimpleDateFormat(String, DateFormatSymbols) - Constructor for class java.text.SimpleDateFormat
-
Constructs a SimpleDateFormat using the given pattern and
date format symbols.
- SimpleTimeZone - Class in java.util
-
SimpleTimeZone is a concrete subclass of TimeZone
that represents a time zone for use with a Gregorian calendar.
- SimpleTimeZone(int, String) - Constructor for class java.util.SimpleTimeZone
-
Constructs a SimpleTimeZone with the given base time zone offset from GMT
and time zone ID with no daylight saving time schedule.
- SimpleTimeZone(int, String, int, int, int, int, int, int, int, int) - Constructor for class java.util.SimpleTimeZone
-
Constructs a SimpleTimeZone with the given base time zone offset from
GMT, time zone ID, and rules for starting and ending the daylight
time.
- SimpleTimeZone(int, String, int, int, int, int, int, int, int, int, int) - Constructor for class java.util.SimpleTimeZone
-
Constructs a SimpleTimeZone with the given base time zone offset from
GMT, time zone ID, and rules for starting and ending the daylight
time.
- SimpleTimeZone(int, String, int, int, int, int, int, int, int, int, int, int, int) - Constructor for class java.util.SimpleTimeZone
-
Constructs a SimpleTimeZone with the given base time zone offset from
GMT, time zone ID, and rules for starting and ending the daylight
time.
- SIMPLIFIED_CHINESE - Static variable in class java.util.Locale
-
Useful constant for language.
- sin(double) - Static method in class java.lang.Math
-
Returns the trigonometric sine of an angle.
- singleton(T) - Static method in class java.util.Collections
-
Returns an immutable set containing only the specified object.
- singletonList(T) - Static method in class java.util.Collections
-
Returns an immutable list containing only the specified object.
- singletonMap(K, V) - Static method in class java.util.Collections
-
Returns an immutable map, mapping only the specified key to the
specified value.
- size() - Method in class java.io.ByteArrayOutputStream
-
Returns the current size of the buffer.
- size() - Method in class java.io.DataOutputStream
-
Returns the current value of the counter written,
the number of bytes written to this data output stream so far.
- SIZE - Static variable in class java.lang.Byte
-
The number of bits used to represent a byte value in two's
complement binary form.
- SIZE - Static variable in class java.lang.Character
-
The number of bits used to represent a char value in unsigned
binary form, constant 16.
- SIZE - Static variable in class java.lang.Double
-
The number of bits used to represent a double value.
- SIZE - Static variable in class java.lang.Float
-
The number of bits used to represent a float value.
- SIZE - Static variable in class java.lang.Integer
-
The number of bits used to represent an int value in two's
complement binary form.
- SIZE - Static variable in class java.lang.Long
-
The number of bits used to represent a long value in two's
complement binary form.
- SIZE - Static variable in class java.lang.Short
-
The number of bits used to represent a short value in two's
complement binary form.
- size() - Method in class java.util.AbstractCollection
-
- size() - Method in class java.util.AbstractMap
-
Returns the number of key-value mappings in this map.
- size() - Method in class java.util.ArrayDeque
-
Returns the number of elements in this deque.
- size() - Method in class java.util.ArrayList
-
Returns the number of elements in this list.
- size() - Method in class java.util.BitSet
-
Returns the number of bits of space actually in use by this
BitSet to represent bit values.
- size() - Method in interface java.util.Collection
-
Returns the number of elements in this collection.
- size() - Method in class java.util.concurrent.ArrayBlockingQueue
-
Returns the number of elements in this queue.
- size() - Method in interface java.util.concurrent.BlockingDeque
-
Returns the number of elements in this deque.
- size() - Method in class java.util.concurrent.ConcurrentHashMap
-
- size() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Returns the number of elements in this deque.
- size() - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
Returns the number of elements in this queue.
- size() - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Returns the number of key-value mappings in this map.
- size() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Returns the number of elements in this set.
- size() - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns the number of elements in this list.
- size() - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Returns the number of elements in this set.
- size() - Method in class java.util.concurrent.DelayQueue
-
- size() - Method in class java.util.concurrent.LinkedBlockingDeque
-
Returns the number of elements in this deque.
- size() - Method in class java.util.concurrent.LinkedBlockingQueue
-
Returns the number of elements in this queue.
- size() - Method in class java.util.concurrent.LinkedTransferQueue
-
Returns the number of elements in this queue.
- size() - Method in class java.util.concurrent.PriorityBlockingQueue
-
- size() - Method in class java.util.concurrent.SynchronousQueue
-
Always returns zero.
- size() - Method in interface java.util.Deque
-
Returns the number of elements in this deque.
- size() - Method in class java.util.Dictionary
-
Returns the number of entries (distinct keys) in this dictionary.
- size() - Method in class java.util.EnumMap
-
Returns the number of key-value mappings in this map.
- size() - Method in class java.util.HashMap
-
Returns the number of key-value mappings in this map.
- size() - Method in class java.util.HashSet
-
Returns the number of elements in this set (its cardinality).
- size() - Method in class java.util.Hashtable
-
Returns the number of keys in this hashtable.
- size() - Method in class java.util.IdentityHashMap
-
Returns the number of key-value mappings in this identity hash map.
- size() - Method in class java.util.LinkedList
-
Returns the number of elements in this list.
- size() - Method in interface java.util.List
-
Returns the number of elements in this list.
- size() - Method in interface java.util.Map
-
Returns the number of key-value mappings in this map.
- size() - Method in class java.util.PriorityQueue
-
- size() - Method in interface java.util.Set
-
Returns the number of elements in this set (its cardinality).
- size() - Method in class java.util.TreeMap
-
Returns the number of key-value mappings in this map.
- size() - Method in class java.util.TreeSet
-
Returns the number of elements in this set (its cardinality).
- size() - Method in class java.util.Vector
-
Returns the number of components in this vector.
- size() - Method in class java.util.WeakHashMap
-
Returns the number of key-value mappings in this map.
- skip(long) - Method in class java.io.BufferedInputStream
-
See the general contract of the skip
method of InputStream.
- skip(long) - Method in class java.io.BufferedReader
-
Skips characters.
- skip(long) - Method in class java.io.ByteArrayInputStream
-
Skips n bytes of input from this input stream.
- skip(long) - Method in class java.io.FileInputStream
-
Skips over and discards n bytes of data from the
input stream.
- skip(long) - Method in class java.io.FilterInputStream
-
Skips over and discards n bytes of data from the
input stream.
- skip(long) - Method in class java.io.FilterReader
-
Skips characters.
- skip(long) - Method in class java.io.InputStream
-
Skips over and discards n bytes of data from this input
stream.
- skip(long) - Method in class java.io.LineNumberInputStream
-
Deprecated.
Skips over and discards n bytes of data from this
input stream.
- skip(long) - Method in class java.io.LineNumberReader
-
Skip characters.
- skip(long) - Method in interface java.io.ObjectInput
-
Skips n bytes of input.
- skip(long) - Method in class java.io.PushbackInputStream
-
Skips over and discards n bytes of data from this
input stream.
- skip(long) - Method in class java.io.Reader
-
Skips characters.
- skip(long) - Method in class java.io.StringReader
-
Skips the specified number of characters in the stream.
- skipBytes(int) - Method in interface java.io.DataInput
-
Makes an attempt to skip over
n bytes
of data from the input
stream, discarding the skipped bytes.
- skipBytes(int) - Method in class java.io.DataInputStream
-
See the general contract of the skipBytes
method of DataInput.
- skipBytes(int) - Method in class java.io.ObjectInputStream
-
Skips bytes.
- sleep(long) - Static method in class java.lang.Thread
-
Causes the currently executing thread to sleep (temporarily cease
execution) for the specified number of milliseconds, subject to
the precision and accuracy of system timers and schedulers.
- sleep(long, int) - Static method in class java.lang.Thread
-
Causes the currently executing thread to sleep (temporarily cease
execution) for the specified number of milliseconds plus the specified
number of nanoseconds, subject to the precision and accuracy of system
timers and schedulers.
- sleep(long) - Method in enum java.util.concurrent.TimeUnit
-
- SoftReference<T> - Class in java.lang.ref
-
Soft reference objects, which are cleared at the discretion of the garbage
collector in response to memory demand.
- SoftReference(T) - Constructor for class java.lang.ref.SoftReference
-
Creates a new soft reference that refers to the given object.
- SoftReference(T, ReferenceQueue<? super T>) - Constructor for class java.lang.ref.SoftReference
-
Creates a new soft reference that refers to the given object and is
registered with the given queue.
- sort(int[]) - Static method in class java.util.Arrays
-
Sorts the specified array into ascending numerical order.
- sort(int[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range of the array into ascending order.
- sort(long[]) - Static method in class java.util.Arrays
-
Sorts the specified array into ascending numerical order.
- sort(long[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range of the array into ascending order.
- sort(short[]) - Static method in class java.util.Arrays
-
Sorts the specified array into ascending numerical order.
- sort(short[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range of the array into ascending order.
- sort(char[]) - Static method in class java.util.Arrays
-
Sorts the specified array into ascending numerical order.
- sort(char[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range of the array into ascending order.
- sort(byte[]) - Static method in class java.util.Arrays
-
Sorts the specified array into ascending numerical order.
- sort(byte[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range of the array into ascending order.
- sort(float[]) - Static method in class java.util.Arrays
-
Sorts the specified array into ascending numerical order.
- sort(float[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range of the array into ascending order.
- sort(double[]) - Static method in class java.util.Arrays
-
Sorts the specified array into ascending numerical order.
- sort(double[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range of the array into ascending order.
- sort(Object[]) - Static method in class java.util.Arrays
-
Sorts the specified array of objects into ascending order, according
to the
natural ordering of its elements.
- sort(Object[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range of the specified array of objects into
ascending order, according to the
natural ordering of its
elements.
- sort(T[], Comparator<? super T>) - Static method in class java.util.Arrays
-
Sorts the specified array of objects according to the order induced by
the specified comparator.
- sort(T[], int, int, Comparator<? super T>) - Static method in class java.util.Arrays
-
Sorts the specified range of the specified array of objects according
to the order induced by the specified comparator.
- sort(List<T>) - Static method in class java.util.Collections
-
Sorts the specified list into ascending order, according to the
natural ordering of its elements.
- sort(List<T>, Comparator<? super T>) - Static method in class java.util.Collections
-
Sorts the specified list according to the order induced by the
specified comparator.
- SortedMap<K,V> - Interface in java.util
-
A
Map that further provides a
total ordering on its keys.
- SortedSet<E> - Interface in java.util
-
A
Set that further provides a
total ordering on its elements.
- source - Variable in class java.util.EventObject
-
The object on which the Event initially occurred.
- SPACE_SEPARATOR - Static variable in class java.lang.Character
-
General category "Zs" in the Unicode specification.
- split(String, int) - Method in class java.lang.String
-
- split(String) - Method in class java.lang.String
-
- split(CharSequence, int) - Method in class java.util.regex.Pattern
-
Splits the given input sequence around matches of this pattern.
- split(CharSequence) - Method in class java.util.regex.Pattern
-
Splits the given input sequence around matches of this pattern.
- sqrt(double) - Static method in class java.lang.Math
-
Returns the correctly rounded positive square root of a
double value.
- Stack<E> - Class in java.util
-
The Stack class represents a last-in-first-out
(LIFO) stack of objects.
- Stack() - Constructor for class java.util.Stack
-
Creates an empty Stack.
- StackOverflowError - Error in java.lang
-
Thrown when a stack overflow occurs because an application
recurses too deeply.
- StackOverflowError() - Constructor for error java.lang.StackOverflowError
-
Constructs a StackOverflowError with no detail message.
- StackOverflowError(String) - Constructor for error java.lang.StackOverflowError
-
Constructs a StackOverflowError with the specified
detail message.
- StackTraceElement - Class in java.lang
-
- StackTraceElement(String, String, String, int) - Constructor for class java.lang.StackTraceElement
-
Creates a stack trace element representing the specified execution
point.
- standalone(boolean) - Method in class org.apidesign.vm4brwsr.Bck2Brwsr
-
Turns on the standalone mode.
- STANDARD_TIME - Static variable in class java.util.SimpleTimeZone
-
Constant for a mode of start or end time specified as standard time.
- start() - Method in class java.lang.Thread
-
Causes this thread to begin execution; the Java Virtual Machine
calls the run method of this thread.
- start() - Method in class java.util.regex.Matcher
-
Returns the start index of the previous match.
- start(int) - Method in class java.util.regex.Matcher
-
Returns the start index of the subsequence captured by the given group
during the previous match operation.
- start() - Method in interface java.util.regex.MatchResult
-
Returns the start index of the match.
- start(int) - Method in interface java.util.regex.MatchResult
-
Returns the start index of the subsequence captured by the given group
during this match.
- START_PUNCTUATION - Static variable in class java.lang.Character
-
General category "Ps" in the Unicode specification.
- startsWith(String, int) - Method in class java.lang.String
-
Tests if the substring of this string beginning at the
specified index starts with the specified prefix.
- startsWith(String) - Method in class java.lang.String
-
Tests if this string starts with the specified prefix.
- STATIC - Static variable in class java.lang.reflect.Modifier
-
The int value representing the static
modifier.
- stop() - Method in class java.lang.Thread
-
Deprecated.
This method is inherently unsafe. Stopping a thread with
Thread.stop causes it to unlock all of the monitors that it
has locked (as a natural consequence of the unchecked
ThreadDeath exception propagating up the stack). If
any of the objects previously protected by these monitors were in
an inconsistent state, the damaged objects become visible to
other threads, potentially resulting in arbitrary behavior. Many
uses of stop should be replaced by code that simply
modifies some variable to indicate that the target thread should
stop running. The target thread should check this variable
regularly, and return from its run method in an orderly fashion
if the variable indicates that it is to stop running. If the
target thread waits for long periods (on a condition variable,
for example), the interrupt method should be used to
interrupt the wait.
For more information, see
Why
are Thread.stop, Thread.suspend and Thread.resume Deprecated?.
- stop(Throwable) - Method in class java.lang.Thread
-
- store(Writer, String) - Method in class java.util.Properties
-
Writes this property list (key and element pairs) in this
Properties table to the output character stream in a
format suitable for using the
load(Reader)
method.
- store(OutputStream, String) - Method in class java.util.Properties
-
Writes this property list (key and element pairs) in this
Properties table to the output stream in a format suitable
for loading into a
Properties table using the
load(InputStream) method.
- storeToXML(OutputStream, String) - Method in class java.util.Properties
-
Emits an XML document representing all of the properties contained
in this table.
- storeToXML(OutputStream, String, String) - Method in class java.util.Properties
-
Emits an XML document representing all of the properties contained
in this table, using the specified encoding.
- STREAM_MAGIC - Static variable in interface java.io.ObjectStreamConstants
-
Magic number that is written to the stream header.
- STREAM_VERSION - Static variable in interface java.io.ObjectStreamConstants
-
Version number that is written to the stream header.
- StreamCorruptedException - Exception in java.io
-
Thrown when control information that was read from an object stream
violates internal consistency checks.
- StreamCorruptedException(String) - Constructor for exception java.io.StreamCorruptedException
-
Create a StreamCorruptedException and list a reason why thrown.
- StreamCorruptedException() - Constructor for exception java.io.StreamCorruptedException
-
Create a StreamCorruptedException and list no reason why thrown.
- STRICT - Static variable in class java.lang.reflect.Modifier
-
The int value representing the strictfp
modifier.
- String - Class in java.lang
-
The String class represents character strings.
- String() - Constructor for class java.lang.String
-
Initializes a newly created String object so that it represents
an empty character sequence.
- String(String) - Constructor for class java.lang.String
-
Initializes a newly created String object so that it represents
the same sequence of characters as the argument; in other words, the
newly created string is a copy of the argument string.
- String(char[]) - Constructor for class java.lang.String
-
Allocates a new String so that it represents the sequence of
characters currently contained in the character array argument.
- String(char[], int, int) - Constructor for class java.lang.String
-
Allocates a new String that contains characters from a subarray
of the character array argument.
- String(int[], int, int) - Constructor for class java.lang.String
-
Allocates a new
String that contains characters from a subarray
of the
Unicode code point array
argument.
- String(byte[], int, int, int) - Constructor for class java.lang.String
-
Deprecated.
This method does not properly convert bytes into characters.
As of JDK 1.1, the preferred way to do this is via the
String constructors that take a Charset, charset name, or that use the platform's
default charset.
- String(byte[], int) - Constructor for class java.lang.String
-
Deprecated.
This method does not properly convert bytes into
characters. As of JDK 1.1, the preferred way to do this is via the
String constructors that take a Charset, charset name, or that use the platform's
default charset.
- String(byte[], int, int, String) - Constructor for class java.lang.String
-
Constructs a new String by decoding the specified subarray of
bytes using the specified charset.
- String(byte[], String) - Constructor for class java.lang.String
-
Constructs a new
String by decoding the specified array of bytes
using the specified
charset.
- String(byte[], int, int) - Constructor for class java.lang.String
-
Constructs a new String by decoding the specified subarray of
bytes using the platform's default charset.
- String(byte[]) - Constructor for class java.lang.String
-
Constructs a new String by decoding the specified array of bytes
using the platform's default charset.
- String(StringBuffer) - Constructor for class java.lang.String
-
Allocates a new string that contains the sequence of characters
currently contained in the string buffer argument.
- String(StringBuilder) - Constructor for class java.lang.String
-
Allocates a new string that contains the sequence of characters
currently contained in the string builder argument.
- StringBuffer - Class in java.lang
-
A thread-safe, mutable sequence of characters.
- StringBuffer() - Constructor for class java.lang.StringBuffer
-
Constructs a string buffer with no characters in it and an
initial capacity of 16 characters.
- StringBuffer(int) - Constructor for class java.lang.StringBuffer
-
Constructs a string buffer with no characters in it and
the specified initial capacity.
- StringBuffer(String) - Constructor for class java.lang.StringBuffer
-
Constructs a string buffer initialized to the contents of the
specified string.
- StringBuffer(CharSequence) - Constructor for class java.lang.StringBuffer
-
Constructs a string buffer that contains the same characters
as the specified CharSequence.
- StringBuilder - Class in java.lang
-
A mutable sequence of characters.
- StringBuilder() - Constructor for class java.lang.StringBuilder
-
Constructs a string builder with no characters in it and an
initial capacity of 16 characters.
- StringBuilder(int) - Constructor for class java.lang.StringBuilder
-
Constructs a string builder with no characters in it and an
initial capacity specified by the capacity argument.
- StringBuilder(String) - Constructor for class java.lang.StringBuilder
-
Constructs a string builder initialized to the contents of the
specified string.
- StringBuilder(CharSequence) - Constructor for class java.lang.StringBuilder
-
Constructs a string builder that contains the same characters
as the specified CharSequence.
- StringIndexOutOfBoundsException - Exception in java.lang
-
Thrown by String methods to indicate that an index
is either negative or greater than the size of the string.
- StringIndexOutOfBoundsException() - Constructor for exception java.lang.StringIndexOutOfBoundsException
-
Constructs a StringIndexOutOfBoundsException with no
detail message.
- StringIndexOutOfBoundsException(String) - Constructor for exception java.lang.StringIndexOutOfBoundsException
-
Constructs a StringIndexOutOfBoundsException with
the specified detail message.
- StringIndexOutOfBoundsException(int) - Constructor for exception java.lang.StringIndexOutOfBoundsException
-
Constructs a new StringIndexOutOfBoundsException
class with an argument indicating the illegal index.
- stringPropertyNames() - Method in class java.util.Properties
-
Returns a set of keys in this property list where
the key and its corresponding value are strings,
including distinct keys in the default property list if a key
of the same name has not already been found from the main
properties list.
- StringReader - Class in java.io
-
A character stream whose source is a string.
- StringReader(String) - Constructor for class java.io.StringReader
-
Creates a new string reader.
- StringTokenizer - Class in java.util
-
The string tokenizer class allows an application to break a
string into tokens.
- StringTokenizer(String, String, boolean) - Constructor for class java.util.StringTokenizer
-
Constructs a string tokenizer for the specified string.
- StringTokenizer(String, String) - Constructor for class java.util.StringTokenizer
-
Constructs a string tokenizer for the specified string.
- StringTokenizer(String) - Constructor for class java.util.StringTokenizer
-
Constructs a string tokenizer for the specified string.
- StringWriter - Class in java.io
-
A character stream that collects its output in a string buffer, which can
then be used to construct a string.
- StringWriter() - Constructor for class java.io.StringWriter
-
Create a new string writer using the default initial string-buffer
size.
- StringWriter(int) - Constructor for class java.io.StringWriter
-
Create a new string writer using the specified initial string-buffer
size.
- stripTrailingZeros() - Method in class java.math.BigDecimal
-
Returns a BigDecimal which is numerically equal to
this one but with any trailing zeros removed from the
representation.
- subList(int, int) - Method in class java.util.AbstractList
-
Returns a view of the portion of this list between the specified
fromIndex, inclusive, and toIndex, exclusive.
- subList(int, int) - Method in class java.util.ArrayList
-
Returns a view of the portion of this list between the specified
fromIndex, inclusive, and toIndex, exclusive.
- subList(int, int) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns a view of the portion of this list between
fromIndex, inclusive, and toIndex, exclusive.
- subList(int, int) - Method in interface java.util.List
-
Returns a view of the portion of this list between the specified
fromIndex, inclusive, and toIndex, exclusive.
- subList(int, int) - Method in class java.util.Vector
-
Returns a view of the portion of this List between fromIndex,
inclusive, and toIndex, exclusive.
- subMap(K, boolean, K, boolean) - Method in interface java.util.concurrent.ConcurrentNavigableMap
-
- subMap(K, K) - Method in interface java.util.concurrent.ConcurrentNavigableMap
-
- subMap(K, boolean, K, boolean) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
- subMap(K, K) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
- subMap(K, boolean, K, boolean) - Method in interface java.util.NavigableMap
-
Returns a view of the portion of this map whose keys range from
fromKey to toKey.
- subMap(K, K) - Method in interface java.util.NavigableMap
-
Returns a view of the portion of this map whose keys range from
fromKey, inclusive, to toKey, exclusive.
- subMap(K, K) - Method in interface java.util.SortedMap
-
Returns a view of the portion of this map whose keys range from
fromKey, inclusive, to toKey, exclusive.
- subMap(K, boolean, K, boolean) - Method in class java.util.TreeMap
-
- subMap(K, K) - Method in class java.util.TreeMap
-
- submit(Runnable) - Method in class java.util.concurrent.AbstractExecutorService
-
- submit(Runnable, T) - Method in class java.util.concurrent.AbstractExecutorService
-
- submit(Callable<T>) - Method in class java.util.concurrent.AbstractExecutorService
-
- submit(Callable<V>) - Method in interface java.util.concurrent.CompletionService
-
Submits a value-returning task for execution and returns a Future
representing the pending results of the task.
- submit(Runnable, V) - Method in interface java.util.concurrent.CompletionService
-
Submits a Runnable task for execution and returns a Future
representing that task.
- submit(Callable<V>) - Method in class java.util.concurrent.ExecutorCompletionService
-
- submit(Runnable, V) - Method in class java.util.concurrent.ExecutorCompletionService
-
- submit(Callable<T>) - Method in interface java.util.concurrent.ExecutorService
-
Submits a value-returning task for execution and returns a
Future representing the pending results of the task.
- submit(Runnable, T) - Method in interface java.util.concurrent.ExecutorService
-
Submits a Runnable task for execution and returns a Future
representing that task.
- submit(Runnable) - Method in interface java.util.concurrent.ExecutorService
-
Submits a Runnable task for execution and returns a Future
representing that task.
- submit(ForkJoinTask<T>) - Method in class java.util.concurrent.ForkJoinPool
-
Submits a ForkJoinTask for execution.
- submit(Callable<T>) - Method in class java.util.concurrent.ForkJoinPool
-
- submit(Runnable, T) - Method in class java.util.concurrent.ForkJoinPool
-
- submit(Runnable) - Method in class java.util.concurrent.ForkJoinPool
-
- submit(Runnable) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
- submit(Runnable, T) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
- submit(Callable<T>) - Method in class java.util.concurrent.ScheduledThreadPoolExecutor
-
- subSequence(int, int) - Method in interface java.lang.CharSequence
-
Returns a new CharSequence that is a subsequence of this sequence.
- subSequence(int, int) - Method in class java.lang.String
-
Returns a new character sequence that is a subsequence of this sequence.
- subSequence(int, int) - Method in class java.lang.StringBuffer
-
- subSet(E, boolean, E, boolean) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- subSet(E, E) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- subSet(E, boolean, E, boolean) - Method in interface java.util.NavigableSet
-
Returns a view of the portion of this set whose elements range from
fromElement to toElement.
- subSet(E, E) - Method in interface java.util.NavigableSet
-
Returns a view of the portion of this set whose elements range
from fromElement, inclusive, to toElement,
exclusive.
- subSet(E, E) - Method in interface java.util.SortedSet
-
Returns a view of the portion of this set whose elements range
from fromElement, inclusive, to toElement,
exclusive.
- subSet(E, boolean, E, boolean) - Method in class java.util.TreeSet
-
- subSet(E, E) - Method in class java.util.TreeSet
-
- substring(int) - Method in class java.lang.String
-
Returns a new string that is a substring of this string.
- substring(int, int) - Method in class java.lang.String
-
Returns a new string that is a substring of this string.
- substring(int) - Method in class java.lang.StringBuffer
-
- substring(int, int) - Method in class java.lang.StringBuffer
-
- subtract(BigDecimal) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this -
subtrahend), and whose scale is max(this.scale(),
subtrahend.scale()).
- subtract(BigDecimal, MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal whose value is (this - subtrahend),
with rounding according to the context settings.
- subtract(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this - val).
- SUNDAY - Static variable in class java.util.Calendar
-
- SuppressWarnings - Annotation Type in java.lang
-
Indicates that the named compiler warnings should be suppressed in the
annotated element (and in all program elements contained in the annotated
element).
- SURROGATE - Static variable in class java.lang.Character
-
General category "Cs" in the Unicode specification.
- suspend() - Method in class java.lang.Thread
-
Deprecated.
This method has been deprecated, as it is
inherently deadlock-prone. If the target thread holds a lock on the
monitor protecting a critical system resource when it is suspended, no
thread can access this resource until the target thread is resumed. If
the thread that would resume the target thread attempts to lock this
monitor prior to calling resume, deadlock results. Such
deadlocks typically manifest themselves as "frozen" processes.
For more information, see
Why
are Thread.stop, Thread.suspend and Thread.resume Deprecated?.
- swap(List<?>, int, int) - Static method in class java.util.Collections
-
Swaps the elements at the specified positions in the specified list.
- sync() - Method in class java.io.FileDescriptor
-
Force all system buffers to synchronize with the underlying
device.
- SyncFailedException - Exception in java.io
-
Signals that a sync operation has failed.
- SyncFailedException(String) - Constructor for exception java.io.SyncFailedException
-
Constructs an SyncFailedException with a detail message.
- SYNCHRONIZED - Static variable in class java.lang.reflect.Modifier
-
The int value representing the synchronized
modifier.
- synchronizedCollection(Collection<T>) - Static method in class java.util.Collections
-
Returns a synchronized (thread-safe) collection backed by the specified
collection.
- synchronizedList(List<T>) - Static method in class java.util.Collections
-
Returns a synchronized (thread-safe) list backed by the specified
list.
- synchronizedMap(Map<K, V>) - Static method in class java.util.Collections
-
Returns a synchronized (thread-safe) map backed by the specified
map.
- synchronizedSet(Set<T>) - Static method in class java.util.Collections
-
Returns a synchronized (thread-safe) set backed by the specified
set.
- synchronizedSortedMap(SortedMap<K, V>) - Static method in class java.util.Collections
-
Returns a synchronized (thread-safe) sorted map backed by the specified
sorted map.
- synchronizedSortedSet(SortedSet<T>) - Static method in class java.util.Collections
-
Returns a synchronized (thread-safe) sorted set backed by the specified
sorted set.
- SynchronousQueue<E> - Class in java.util.concurrent
-
A
blocking queue in which each insert
operation must wait for a corresponding remove operation by another
thread, and vice versa.
- SynchronousQueue() - Constructor for class java.util.concurrent.SynchronousQueue
-
Creates a SynchronousQueue with nonfair access policy.
- SynchronousQueue(boolean) - Constructor for class java.util.concurrent.SynchronousQueue
-
Creates a SynchronousQueue with the specified fairness policy.
- System - Class in java.lang
-
Poor man's re-implementation of most important System methods.
- tailMap(K, boolean) - Method in interface java.util.concurrent.ConcurrentNavigableMap
-
- tailMap(K) - Method in interface java.util.concurrent.ConcurrentNavigableMap
-
- tailMap(K, boolean) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
- tailMap(K) - Method in class java.util.concurrent.ConcurrentSkipListMap
-
- tailMap(K, boolean) - Method in interface java.util.NavigableMap
-
Returns a view of the portion of this map whose keys are greater than (or
equal to, if inclusive is true) fromKey.
- tailMap(K) - Method in interface java.util.NavigableMap
-
Returns a view of the portion of this map whose keys are
greater than or equal to fromKey.
- tailMap(K) - Method in interface java.util.SortedMap
-
Returns a view of the portion of this map whose keys are
greater than or equal to fromKey.
- tailMap(K, boolean) - Method in class java.util.TreeMap
-
- tailMap(K) - Method in class java.util.TreeMap
-
- tailSet(E, boolean) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- tailSet(E) - Method in class java.util.concurrent.ConcurrentSkipListSet
-
- tailSet(E, boolean) - Method in interface java.util.NavigableSet
-
Returns a view of the portion of this set whose elements are greater
than (or equal to, if inclusive is true) fromElement.
- tailSet(E) - Method in interface java.util.NavigableSet
-
Returns a view of the portion of this set whose elements are
greater than or equal to fromElement.
- tailSet(E) - Method in interface java.util.SortedSet
-
Returns a view of the portion of this set whose elements are
greater than or equal to fromElement.
- tailSet(E, boolean) - Method in class java.util.TreeSet
-
- tailSet(E) - Method in class java.util.TreeSet
-
- TAIWAN - Static variable in class java.util.Locale
-
Useful constant for country.
- take() - Method in class java.util.concurrent.ArrayBlockingQueue
-
- take() - Method in interface java.util.concurrent.BlockingDeque
-
Retrieves and removes the head of the queue represented by this deque
(in other words, the first element of this deque), waiting if
necessary until an element becomes available.
- take() - Method in interface java.util.concurrent.BlockingQueue
-
Retrieves and removes the head of this queue, waiting if necessary
until an element becomes available.
- take() - Method in interface java.util.concurrent.CompletionService
-
Retrieves and removes the Future representing the next
completed task, waiting if none are yet present.
- take() - Method in class java.util.concurrent.DelayQueue
-
Retrieves and removes the head of this queue, waiting if necessary
until an element with an expired delay is available on this queue.
- take() - Method in class java.util.concurrent.ExecutorCompletionService
-
- take() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- take() - Method in class java.util.concurrent.LinkedBlockingQueue
-
- take() - Method in class java.util.concurrent.LinkedTransferQueue
-
- take() - Method in class java.util.concurrent.PriorityBlockingQueue
-
- take() - Method in class java.util.concurrent.SynchronousQueue
-
Retrieves and removes the head of this queue, waiting if necessary
for another thread to insert it.
- takeFirst() - Method in interface java.util.concurrent.BlockingDeque
-
Retrieves and removes the first element of this deque, waiting
if necessary until an element becomes available.
- takeFirst() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- takeLast() - Method in interface java.util.concurrent.BlockingDeque
-
Retrieves and removes the last element of this deque, waiting
if necessary until an element becomes available.
- takeLast() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- tan(double) - Static method in class java.lang.Math
-
Returns the trigonometric tangent of an angle.
- Target - Annotation Type in java.lang.annotation
-
Indicates the kinds of program element to which an annotation type
is applicable.
- TC_ARRAY - Static variable in interface java.io.ObjectStreamConstants
-
new Array.
- TC_BASE - Static variable in interface java.io.ObjectStreamConstants
-
First tag value.
- TC_BLOCKDATA - Static variable in interface java.io.ObjectStreamConstants
-
Block of optional data.
- TC_BLOCKDATALONG - Static variable in interface java.io.ObjectStreamConstants
-
long Block data.
- TC_CLASS - Static variable in interface java.io.ObjectStreamConstants
-
Reference to Class.
- TC_CLASSDESC - Static variable in interface java.io.ObjectStreamConstants
-
new Class Descriptor.
- TC_ENDBLOCKDATA - Static variable in interface java.io.ObjectStreamConstants
-
End of optional block data blocks for an object.
- TC_ENUM - Static variable in interface java.io.ObjectStreamConstants
-
new Enum constant.
- TC_EXCEPTION - Static variable in interface java.io.ObjectStreamConstants
-
Exception during write.
- TC_LONGSTRING - Static variable in interface java.io.ObjectStreamConstants
-
Long string.
- TC_MAX - Static variable in interface java.io.ObjectStreamConstants
-
Last tag value.
- TC_NULL - Static variable in interface java.io.ObjectStreamConstants
-
Null object reference.
- TC_OBJECT - Static variable in interface java.io.ObjectStreamConstants
-
new Object.
- TC_PROXYCLASSDESC - Static variable in interface java.io.ObjectStreamConstants
-
new Proxy Class Descriptor.
- TC_REFERENCE - Static variable in interface java.io.ObjectStreamConstants
-
Reference to an object already written into the stream.
- TC_RESET - Static variable in interface java.io.ObjectStreamConstants
-
Reset stream context.
- TC_STRING - Static variable in interface java.io.ObjectStreamConstants
-
new String.
- TEN - Static variable in class java.math.BigDecimal
-
The value 10, with a scale of 0.
- TEN - Static variable in class java.math.BigInteger
-
The BigInteger constant ten.
- terminated() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Method invoked when the Executor has terminated.
- testBit(int) - Method in class java.math.BigInteger
-
Returns true if and only if the designated bit is set.
- Thread - Class in java.lang
-
A thread is a thread of execution in a program.
- Thread() - Constructor for class java.lang.Thread
-
Allocates a new Thread object.
- Thread(Runnable) - Constructor for class java.lang.Thread
-
Allocates a new Thread object.
- Thread(String) - Constructor for class java.lang.Thread
-
Allocates a new Thread object.
- Thread(Runnable, String) - Constructor for class java.lang.Thread
-
Allocates a new Thread object.
- Thread.State - Enum in java.lang
-
A thread state.
- Thread.UncaughtExceptionHandler - Interface in java.lang
-
Interface for handlers invoked when a Thread abruptly
terminates due to an uncaught exception.
- ThreadFactory - Interface in java.util.concurrent
-
An object that creates new threads on demand.
- ThreadLocal<T> - Class in java.lang
-
This class provides thread-local variables.
- ThreadLocal() - Constructor for class java.lang.ThreadLocal
-
Creates a thread local variable.
- ThreadLocalRandom - Class in java.util.concurrent
-
A random number generator isolated to the current thread.
- ThreadPoolExecutor - Class in java.util.concurrent
-
An
ExecutorService that executes each submitted task using
one of possibly several pooled threads, normally configured
using
Executors factory methods.
- ThreadPoolExecutor(int, int, long, TimeUnit, BlockingQueue<Runnable>) - Constructor for class java.util.concurrent.ThreadPoolExecutor
-
Creates a new ThreadPoolExecutor with the given initial
parameters and default thread factory and rejected execution handler.
- ThreadPoolExecutor(int, int, long, TimeUnit, BlockingQueue<Runnable>, ThreadFactory) - Constructor for class java.util.concurrent.ThreadPoolExecutor
-
Creates a new ThreadPoolExecutor with the given initial
parameters and default rejected execution handler.
- ThreadPoolExecutor(int, int, long, TimeUnit, BlockingQueue<Runnable>, RejectedExecutionHandler) - Constructor for class java.util.concurrent.ThreadPoolExecutor
-
Creates a new ThreadPoolExecutor with the given initial
parameters and default thread factory.
- ThreadPoolExecutor(int, int, long, TimeUnit, BlockingQueue<Runnable>, ThreadFactory, RejectedExecutionHandler) - Constructor for class java.util.concurrent.ThreadPoolExecutor
-
Creates a new ThreadPoolExecutor with the given initial
parameters.
- ThreadPoolExecutor.AbortPolicy - Class in java.util.concurrent
-
A handler for rejected tasks that throws a
RejectedExecutionException.
- ThreadPoolExecutor.AbortPolicy() - Constructor for class java.util.concurrent.ThreadPoolExecutor.AbortPolicy
-
Creates an AbortPolicy.
- ThreadPoolExecutor.CallerRunsPolicy - Class in java.util.concurrent
-
A handler for rejected tasks that runs the rejected task
directly in the calling thread of the execute method,
unless the executor has been shut down, in which case the task
is discarded.
- ThreadPoolExecutor.CallerRunsPolicy() - Constructor for class java.util.concurrent.ThreadPoolExecutor.CallerRunsPolicy
-
Creates a CallerRunsPolicy.
- ThreadPoolExecutor.DiscardOldestPolicy - Class in java.util.concurrent
-
A handler for rejected tasks that discards the oldest unhandled
request and then retries execute, unless the executor
is shut down, in which case the task is discarded.
- ThreadPoolExecutor.DiscardOldestPolicy() - Constructor for class java.util.concurrent.ThreadPoolExecutor.DiscardOldestPolicy
-
Creates a DiscardOldestPolicy for the given executor.
- ThreadPoolExecutor.DiscardPolicy - Class in java.util.concurrent
-
A handler for rejected tasks that silently discards the
rejected task.
- ThreadPoolExecutor.DiscardPolicy() - Constructor for class java.util.concurrent.ThreadPoolExecutor.DiscardPolicy
-
Creates a DiscardPolicy.
- Throwable - Class in java.lang
-
The Throwable class is the superclass of all errors and
exceptions in the Java language.
- Throwable() - Constructor for class java.lang.Throwable
-
Constructs a new throwable with null as its detail message.
- Throwable(String) - Constructor for class java.lang.Throwable
-
Constructs a new throwable with the specified detail message.
- Throwable(String, Throwable) - Constructor for class java.lang.Throwable
-
Constructs a new throwable with the specified detail message and
cause.
- Throwable(Throwable) - Constructor for class java.lang.Throwable
-
Constructs a new throwable with the specified cause and a detail
message of (cause==null ? null : cause.toString()) (which
typically contains the class and detail message of cause).
- Throwable(String, Throwable, boolean, boolean) - Constructor for class java.lang.Throwable
-
Constructs a new throwable with the specified detail message,
cause,
suppression enabled or
disabled, and writable stack trace enabled or disabled.
- throwing(String, String, Throwable) - Method in class java.util.logging.Logger
-
Log throwing an exception.
- THURSDAY - Static variable in class java.util.Calendar
-
- time - Variable in class java.util.Calendar
-
The currently set time for this calendar, expressed in milliseconds after
January 1, 1970, 0:00:00 GMT.
- TIME_ZONE - Static variable in class java.text.DateFormat.Field
-
Constant identifying the time zone field.
- timedWait(Object, long) - Method in enum java.util.concurrent.TimeUnit
-
- TimeoutException - Exception in java.util.concurrent
-
Exception thrown when a blocking operation times out.
- TimeoutException() - Constructor for exception java.util.concurrent.TimeoutException
-
Constructs a TimeoutException with no specified detail
message.
- TimeoutException(String) - Constructor for exception java.util.concurrent.TimeoutException
-
Constructs a TimeoutException with the specified detail
message.
- Timer - Class in java.util
-
A facility for threads to schedule tasks for future execution in a
background thread.
- Timer() - Constructor for class java.util.Timer
-
Creates a new timer.
- Timer(boolean) - Constructor for class java.util.Timer
-
Creates a new timer whose associated thread may be specified to
run as a daemon.
- Timer(String) - Constructor for class java.util.Timer
-
Creates a new timer whose associated thread has the specified name.
- Timer(String, boolean) - Constructor for class java.util.Timer
-
Creates a new timer whose associated thread has the specified name,
and may be specified to
run as a daemon.
- TimerTask - Class in java.util
-
A task that can be scheduled for one-time or repeated execution by a Timer.
- TimerTask() - Constructor for class java.util.TimerTask
-
Creates a new timer task.
- TimeUnit - Enum in java.util.concurrent
-
A TimeUnit represents time durations at a given unit of
granularity and provides utility methods to convert across units,
and to perform timing and delay operations in these units.
- TimeZone - Class in java.util
-
TimeZone represents a time zone offset, and also figures out daylight
savings.
- TimeZone() - Constructor for class java.util.TimeZone
-
Sole constructor.
- TIMEZONE_FIELD - Static variable in class java.text.DateFormat
-
Useful constant for TIMEZONE field alignment.
- TITLECASE_LETTER - Static variable in class java.lang.Character
-
General category "Lt" in the Unicode specification.
- toArray() - Method in class java.util.AbstractCollection
-
Returns an array containing all of the elements in this collection.
- toArray(T[]) - Method in class java.util.AbstractCollection
-
Returns an array containing all of the elements in this collection;
the runtime type of the returned array is that of the specified array.
- toArray() - Method in class java.util.ArrayDeque
-
Returns an array containing all of the elements in this deque
in proper sequence (from first to last element).
- toArray(T[]) - Method in class java.util.ArrayDeque
-
Returns an array containing all of the elements in this deque in
proper sequence (from first to last element); the runtime type of the
returned array is that of the specified array.
- toArray() - Method in class java.util.ArrayList
-
Returns an array containing all of the elements in this list
in proper sequence (from first to last element).
- toArray(T[]) - Method in class java.util.ArrayList
-
Returns an array containing all of the elements in this list in proper
sequence (from first to last element); the runtime type of the returned
array is that of the specified array.
- toArray() - Method in interface java.util.Collection
-
Returns an array containing all of the elements in this collection.
- toArray(T[]) - Method in interface java.util.Collection
-
Returns an array containing all of the elements in this collection;
the runtime type of the returned array is that of the specified array.
- toArray() - Method in class java.util.concurrent.ArrayBlockingQueue
-
Returns an array containing all of the elements in this queue, in
proper sequence.
- toArray(T[]) - Method in class java.util.concurrent.ArrayBlockingQueue
-
Returns an array containing all of the elements in this queue, in
proper sequence; the runtime type of the returned array is that of
the specified array.
- toArray() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Returns an array containing all of the elements in this deque, in
proper sequence (from first to last element).
- toArray(T[]) - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Returns an array containing all of the elements in this deque,
in proper sequence (from first to last element); the runtime
type of the returned array is that of the specified array.
- toArray() - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
Returns an array containing all of the elements in this queue, in
proper sequence.
- toArray(T[]) - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
Returns an array containing all of the elements in this queue, in
proper sequence; the runtime type of the returned array is that of
the specified array.
- toArray() - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns an array containing all of the elements in this list
in proper sequence (from first to last element).
- toArray(T[]) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns an array containing all of the elements in this list in
proper sequence (from first to last element); the runtime type of
the returned array is that of the specified array.
- toArray() - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Returns an array containing all of the elements in this set.
- toArray(T[]) - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Returns an array containing all of the elements in this set; the
runtime type of the returned array is that of the specified array.
- toArray() - Method in class java.util.concurrent.DelayQueue
-
Returns an array containing all of the elements in this queue.
- toArray(T[]) - Method in class java.util.concurrent.DelayQueue
-
Returns an array containing all of the elements in this queue; the
runtime type of the returned array is that of the specified array.
- toArray() - Method in class java.util.concurrent.LinkedBlockingDeque
-
Returns an array containing all of the elements in this deque, in
proper sequence (from first to last element).
- toArray(T[]) - Method in class java.util.concurrent.LinkedBlockingDeque
-
Returns an array containing all of the elements in this deque, in
proper sequence; the runtime type of the returned array is that of
the specified array.
- toArray() - Method in class java.util.concurrent.LinkedBlockingQueue
-
Returns an array containing all of the elements in this queue, in
proper sequence.
- toArray(T[]) - Method in class java.util.concurrent.LinkedBlockingQueue
-
Returns an array containing all of the elements in this queue, in
proper sequence; the runtime type of the returned array is that of
the specified array.
- toArray() - Method in class java.util.concurrent.PriorityBlockingQueue
-
Returns an array containing all of the elements in this queue.
- toArray(T[]) - Method in class java.util.concurrent.PriorityBlockingQueue
-
Returns an array containing all of the elements in this queue; the
runtime type of the returned array is that of the specified array.
- toArray() - Method in class java.util.concurrent.SynchronousQueue
-
Returns a zero-length array.
- toArray(T[]) - Method in class java.util.concurrent.SynchronousQueue
-
Sets the zeroeth element of the specified array to null
(if the array has non-zero length) and returns it.
- toArray() - Method in class java.util.LinkedList
-
Returns an array containing all of the elements in this list
in proper sequence (from first to last element).
- toArray(T[]) - Method in class java.util.LinkedList
-
Returns an array containing all of the elements in this list in
proper sequence (from first to last element); the runtime type of
the returned array is that of the specified array.
- toArray() - Method in interface java.util.List
-
Returns an array containing all of the elements in this list in proper
sequence (from first to last element).
- toArray(T[]) - Method in interface java.util.List
-
Returns an array containing all of the elements in this list in
proper sequence (from first to last element); the runtime type of
the returned array is that of the specified array.
- toArray() - Method in class java.util.PriorityQueue
-
Returns an array containing all of the elements in this queue.
- toArray(T[]) - Method in class java.util.PriorityQueue
-
Returns an array containing all of the elements in this queue; the
runtime type of the returned array is that of the specified array.
- toArray() - Method in interface java.util.Set
-
Returns an array containing all of the elements in this set.
- toArray(T[]) - Method in interface java.util.Set
-
Returns an array containing all of the elements in this set; the
runtime type of the returned array is that of the specified array.
- toArray() - Method in class java.util.Vector
-
Returns an array containing all of the elements in this Vector
in the correct order.
- toArray(T[]) - Method in class java.util.Vector
-
Returns an array containing all of the elements in this Vector in the
correct order; the runtime type of the returned array is that of the
specified array.
- toASCIIString() - Method in class java.net.URI
-
Returns the content of this URI as a US-ASCII string.
- toBigInteger() - Method in class java.math.BigDecimal
-
Converts this BigDecimal to a BigInteger.
- toBigIntegerExact() - Method in class java.math.BigDecimal
-
Converts this BigDecimal to a BigInteger,
checking for lost information.
- toBinaryString(int) - Static method in class java.lang.Integer
-
Returns a string representation of the integer argument as an
unsigned integer in base 2.
- toBinaryString(long) - Static method in class java.lang.Long
-
Returns a string representation of the long
argument as an unsigned integer in base 2.
- toBundleName(String, Locale) - Method in class java.util.ResourceBundle.Control
-
Converts the given baseName and locale
to the bundle name.
- toByteArray() - Method in class java.io.ByteArrayOutputStream
-
Creates a newly allocated byte array.
- toByteArray() - Method in class java.math.BigInteger
-
Returns a byte array containing the two's-complement
representation of this BigInteger.
- toCharArray() - Method in class java.lang.String
-
Converts this string to a new character array.
- toChars(int, char[], int) - Static method in class java.lang.Character
-
Converts the specified character (Unicode code point) to its
UTF-16 representation.
- toChars(int) - Static method in class java.lang.Character
-
Converts the specified character (Unicode code point) to its
UTF-16 representation stored in a char array.
- toCodePoint(char, char) - Static method in class java.lang.Character
-
Converts the specified surrogate pair to its supplementary code
point value.
- toDays(long) - Method in enum java.util.concurrent.TimeUnit
-
Equivalent to DAYS.convert(duration, this).
- toDegrees(double) - Static method in class java.lang.Math
-
Converts an angle measured in radians to an approximately
equivalent angle measured in degrees.
- toEngineeringString() - Method in class java.math.BigDecimal
-
Returns a string representation of this BigDecimal,
using engineering notation if an exponent is needed.
- toExternalForm() - Method in class java.net.URL
-
Constructs a string representation of this URL.
- toExternalForm(URL) - Method in class java.net.URLStreamHandler
-
Converts a URL of a specific protocol to a
String.
- toGenericString() - Method in class java.lang.reflect.Constructor
-
Returns a string describing this Constructor,
including type parameters.
- toGenericString() - Method in class java.lang.reflect.Field
-
Returns a string describing this Field, including
its generic type.
- toGenericString() - Method in class java.lang.reflect.Method
-
Returns a string describing this Method, including
type parameters.
- toGMTString() - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by DateFormat.format(Date date), using a
GMT TimeZone.
- toHexString(double) - Static method in class java.lang.Double
-
Returns a hexadecimal string representation of the
double argument.
- toHexString(float) - Static method in class java.lang.Float
-
Returns a hexadecimal string representation of the
float argument.
- toHexString(int) - Static method in class java.lang.Integer
-
Returns a string representation of the integer argument as an
unsigned integer in base 16.
- toHexString(long) - Static method in class java.lang.Long
-
Returns a string representation of the long
argument as an unsigned integer in base 16.
- toHours(long) - Method in enum java.util.concurrent.TimeUnit
-
Equivalent to HOURS.convert(duration, this).
- toLocaleString() - Method in class java.util.Date
-
Deprecated.
As of JDK version 1.1,
replaced by DateFormat.format(Date date).
- toLocalizedPattern() - Method in class java.text.DecimalFormat
-
Synthesizes a localized pattern string that represents the current
state of this Format object.
- toLocalizedPattern() - Method in class java.text.SimpleDateFormat
-
Returns a localized pattern string describing this date format.
- toLongArray() - Method in class java.util.BitSet
-
Returns a new long array containing all the bits in this bit set.
- toLowerCase(int) - Static method in class java.lang.Character
-
- toLowerCase(char) - Static method in class java.lang.Character
-
Converts the character argument to lowercase using case
mapping information from the UnicodeData file.
- toLowerCase(Locale) - Method in class java.lang.String
-
Converts all of the characters in this String to lower
case using the rules of the given Locale.
- toLowerCase() - Method in class java.lang.String
-
Converts all of the characters in this String to lower
case using the rules of the default locale.
- toMatchResult() - Method in class java.util.regex.Matcher
-
Returns the match state of this matcher as a
MatchResult.
- toMethodDescriptorString() - Method in class java.lang.invoke.MethodType
-
Produces a bytecode descriptor representation of the method type.
- toMicros(long) - Method in enum java.util.concurrent.TimeUnit
-
Equivalent to MICROSECONDS.convert(duration, this).
- toMillis(long) - Method in enum java.util.concurrent.TimeUnit
-
Equivalent to MILLISECONDS.convert(duration, this).
- toMinutes(long) - Method in enum java.util.concurrent.TimeUnit
-
Equivalent to MINUTES.convert(duration, this).
- toNanos(long) - Method in enum java.util.concurrent.TimeUnit
-
Equivalent to NANOSECONDS.convert(duration, this).
- toOctalString(int) - Static method in class java.lang.Integer
-
Returns a string representation of the integer argument as an
unsigned integer in base 8.
- toOctalString(long) - Static method in class java.lang.Long
-
Returns a string representation of the long
argument as an unsigned integer in base 8.
- toPattern() - Method in class java.text.ChoiceFormat
-
Gets the pattern.
- toPattern() - Method in class java.text.DecimalFormat
-
Synthesizes a pattern string that represents the current state
of this Format object.
- toPattern() - Method in class java.text.MessageFormat
-
Returns a pattern representing the current state of the message format.
- toPattern() - Method in class java.text.SimpleDateFormat
-
Returns a pattern string describing this date format.
- toPlainString() - Method in class java.math.BigDecimal
-
Returns a string representation of this BigDecimal
without an exponent field.
- toRadians(double) - Static method in class java.lang.Math
-
Converts an angle measured in degrees to an approximately
equivalent angle measured in radians.
- toResourceName(String, String) - Method in class java.util.ResourceBundle.Control
-
Converts the given
bundleName to the form required
by the
ClassLoader.getResource
method by replacing all occurrences of
'.' in
bundleName with
'/' and appending a
'.' and the given file
suffix.
- toSeconds(long) - Method in enum java.util.concurrent.TimeUnit
-
Equivalent to SECONDS.convert(duration, this).
- toString() - Method in class java.beans.PropertyChangeEvent
-
Returns a string representation of the object.
- toString() - Method in class java.io.ByteArrayOutputStream
-
Converts the buffer's contents into a string decoding bytes using the
platform's default character set.
- toString(String) - Method in class java.io.ByteArrayOutputStream
-
Converts the buffer's contents into a string by decoding the bytes using
the specified
charsetName.
- toString(int) - Method in class java.io.ByteArrayOutputStream
-
Deprecated.
This method does not properly convert bytes into characters.
As of JDK 1.1, the preferred way to do this is via the
toString(String enc) method, which takes an encoding-name
argument, or the toString() method, which uses the
platform's default character encoding.
- toString() - Method in class java.io.File
-
Returns the pathname string of this abstract pathname.
- toString() - Method in class java.io.ObjectStreamClass
-
Return a string describing this ObjectStreamClass.
- toString() - Method in class java.io.ObjectStreamField
-
Return a string that describes this field.
- toString() - Method in class java.io.StringWriter
-
Return the buffer's current value as a string.
- toString() - Method in interface java.lang.annotation.Annotation
-
Returns a string representation of this annotation.
- toString(boolean) - Static method in class java.lang.Boolean
-
Returns a String object representing the specified
boolean.
- toString() - Method in class java.lang.Boolean
-
Returns a String object representing this Boolean's
value.
- toString(byte) - Static method in class java.lang.Byte
-
Returns a new String object representing the
specified byte.
- toString() - Method in class java.lang.Byte
-
Returns a String object representing this
Byte's value.
- toString() - Method in class java.lang.Character.Subset
-
Returns the name of this subset.
- toString() - Method in class java.lang.Character
-
Returns a String object representing this
Character's value.
- toString(char) - Static method in class java.lang.Character
-
Returns a String object representing the
specified char.
- toString() - Method in interface java.lang.CharSequence
-
Returns a string containing the characters in this sequence in the same
order as this sequence.
- toString() - Method in class java.lang.Class
-
Converts the object to a string.
- toString(double) - Static method in class java.lang.Double
-
Returns a string representation of the double
argument.
- toString() - Method in class java.lang.Double
-
Returns a string representation of this Double object.
- toString() - Method in class java.lang.Enum
-
Returns the name of this enum constant, as contained in the
declaration.
- toString(float) - Static method in class java.lang.Float
-
Returns a string representation of the float
argument.
- toString() - Method in class java.lang.Float
-
Returns a string representation of this Float object.
- toString(int, int) - Static method in class java.lang.Integer
-
Returns a string representation of the first argument in the
radix specified by the second argument.
- toString(int) - Static method in class java.lang.Integer
-
Returns a String object representing the
specified integer.
- toString() - Method in class java.lang.Integer
-
Returns a String object representing this
Integer's value.
- toString() - Method in class java.lang.invoke.MethodHandle
-
Returns a string representation of the method handle,
starting with the string "MethodHandle" and
ending with the string representation of the method handle's type.
- toString() - Method in class java.lang.invoke.MethodHandles.Lookup
-
Displays the name of the class from which lookups are to be made.
- toString() - Method in class java.lang.invoke.MethodType
-
Returns a string representation of the method type,
of the form "(PT0,PT1...)RT".
- toString(long, int) - Static method in class java.lang.Long
-
Returns a string representation of the first argument in the
radix specified by the second argument.
- toString(long) - Static method in class java.lang.Long
-
Returns a String object representing the specified
long.
- toString() - Method in class java.lang.Long
-
Returns a String object representing this
Long's value.
- toString() - Method in class java.lang.Object
-
Returns a string representation of the object.
- toString() - Method in class java.lang.reflect.Constructor
-
Returns a string describing this Constructor.
- toString() - Method in class java.lang.reflect.Field
-
Returns a string describing this Field.
- toString() - Method in class java.lang.reflect.Method
-
Returns a string describing this Method.
- toString(int) - Static method in class java.lang.reflect.Modifier
-
Return a string describing the access modifier flags in
the specified modifier.
- toString(short) - Static method in class java.lang.Short
-
Returns a new String object representing the
specified short.
- toString() - Method in class java.lang.Short
-
Returns a String object representing this
Short's value.
- toString() - Method in class java.lang.StackTraceElement
-
Returns a string representation of this stack trace element.
- toString() - Method in class java.lang.String
-
This object (which is already a string!) is itself returned.
- toString() - Method in class java.lang.StringBuffer
-
- toString() - Method in class java.lang.StringBuilder
-
- toString() - Method in class java.lang.Thread
-
Returns a string representation of this thread, including the
thread's name, priority, and thread group.
- toString() - Method in class java.lang.Throwable
-
Returns a short description of this throwable.
- toString() - Method in class java.math.BigDecimal
-
Returns the string representation of this BigDecimal,
using scientific notation if an exponent is needed.
- toString(int) - Method in class java.math.BigInteger
-
Returns the String representation of this BigInteger in the
given radix.
- toString() - Method in class java.math.BigInteger
-
Returns the decimal String representation of this BigInteger.
- toString() - Method in class java.math.MathContext
-
Returns the string representation of this MathContext.
- toString() - Method in class java.net.URI
-
Returns the content of this URI as a string.
- toString() - Method in class java.net.URL
-
Constructs a string representation of this URL.
- toString() - Method in class java.net.URLConnection
-
Returns a String representation of this URL connection.
- toString() - Method in class java.nio.charset.Charset
-
Returns a string describing this charset.
- toString() - Method in exception java.security.PrivilegedActionException
-
- toString() - Method in class java.text.Annotation
-
Returns the String representation of this Annotation.
- toString() - Method in class java.text.AttributedCharacterIterator.Attribute
-
Returns a string representation of the object.
- toString() - Method in class java.text.FieldPosition
-
Return a string representation of this FieldPosition.
- toString() - Method in class java.text.ParsePosition
-
Return a string representation of this ParsePosition.
- toString() - Method in class java.util.AbstractCollection
-
Returns a string representation of this collection.
- toString() - Method in class java.util.AbstractMap.SimpleEntry
-
Returns a String representation of this map entry.
- toString() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Returns a String representation of this map entry.
- toString() - Method in class java.util.AbstractMap
-
Returns a string representation of this map.
- toString(long[]) - Static method in class java.util.Arrays
-
Returns a string representation of the contents of the specified array.
- toString(int[]) - Static method in class java.util.Arrays
-
Returns a string representation of the contents of the specified array.
- toString(short[]) - Static method in class java.util.Arrays
-
Returns a string representation of the contents of the specified array.
- toString(char[]) - Static method in class java.util.Arrays
-
Returns a string representation of the contents of the specified array.
- toString(byte[]) - Static method in class java.util.Arrays
-
Returns a string representation of the contents of the specified array.
- toString(boolean[]) - Static method in class java.util.Arrays
-
Returns a string representation of the contents of the specified array.
- toString(float[]) - Static method in class java.util.Arrays
-
Returns a string representation of the contents of the specified array.
- toString(double[]) - Static method in class java.util.Arrays
-
Returns a string representation of the contents of the specified array.
- toString(Object[]) - Static method in class java.util.Arrays
-
Returns a string representation of the contents of the specified array.
- toString() - Method in class java.util.BitSet
-
Returns a string representation of this bit set.
- toString() - Method in class java.util.Calendar
-
Return a string representation of this calendar.
- toString() - Method in class java.util.concurrent.ArrayBlockingQueue
-
- toString() - Method in class java.util.concurrent.atomic.AtomicBoolean
-
Returns the String representation of the current value.
- toString() - Method in class java.util.concurrent.atomic.AtomicInteger
-
Returns the String representation of the current value.
- toString() - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Returns the String representation of the current values of array.
- toString() - Method in class java.util.concurrent.atomic.AtomicLong
-
Returns the String representation of the current value.
- toString() - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Returns the String representation of the current values of array.
- toString() - Method in class java.util.concurrent.atomic.AtomicReference
-
Returns the String representation of the current value.
- toString() - Method in class java.util.concurrent.atomic.AtomicReferenceArray
-
Returns the String representation of the current values of array.
- toString() - Method in class java.util.concurrent.ConcurrentHashMap
-
- toString() - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns a string representation of this list.
- toString() - Method in class java.util.concurrent.CountDownLatch
-
Returns a string identifying this latch, as well as its state.
- toString() - Method in class java.util.concurrent.ForkJoinPool
-
Returns a string identifying this pool, as well as its state,
including indications of run state, parallelism level, and
worker and task counts.
- toString() - Method in class java.util.concurrent.LinkedBlockingDeque
-
- toString() - Method in class java.util.concurrent.LinkedBlockingQueue
-
- toString() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns a string identifying this synchronizer, as well as its state.
- toString() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns a string identifying this synchronizer, as well as its state.
- toString() - Method in class java.util.concurrent.locks.ReentrantLock
-
Returns a string identifying this lock, as well as its lock state.
- toString() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock
-
Returns a string identifying this lock, as well as its lock state.
- toString() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Returns a string identifying this lock, as well as its lock state.
- toString() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
-
Returns a string identifying this lock, as well as its lock
state.
- toString() - Method in class java.util.concurrent.Phaser
-
Returns a string identifying this phaser, as well as its
state.
- toString() - Method in class java.util.concurrent.PriorityBlockingQueue
-
- toString() - Method in class java.util.concurrent.Semaphore
-
Returns a string identifying this semaphore, as well as its state.
- toString() - Method in class java.util.concurrent.ThreadPoolExecutor
-
Returns a string identifying this pool, as well as its state,
including indications of run state and estimated worker and
task counts.
- toString() - Method in class java.util.Currency
-
Returns the ISO 4217 currency code of this currency.
- toString() - Method in class java.util.Date
-
Converts this Date object to a String
of the form:
- toString() - Method in class java.util.EventObject
-
Returns a String representation of this EventObject.
- toString() - Method in class java.util.Hashtable
-
Returns a string representation of this Hashtable object
in the form of a set of entries, enclosed in braces and separated
by the ASCII characters ", " (comma and space).
- toString() - Method in class java.util.Locale
-
Returns a string representation of this Locale
object, consisting of language, country, variant, script,
and extensions as below:
- toString() - Method in class java.util.logging.Level
-
Returns a string representation of this Level.
- toString(Object) - Static method in class java.util.Objects
-
Returns the result of calling toString for a non-null argument and "null" for a null argument.
- toString(Object, String) - Static method in class java.util.Objects
-
Returns the result of calling toString on the first
argument if the first argument is not null and returns
the second argument otherwise.
- toString() - Method in class java.util.regex.Matcher
-
Returns the string representation of this matcher.
- toString() - Method in class java.util.regex.Pattern
-
Returns the string representation of this pattern.
- toString() - Method in class java.util.ServiceLoader
-
Returns a string describing this service.
- toString() - Method in class java.util.SimpleTimeZone
-
Returns a string representation of this time zone.
- toString() - Method in class java.util.Vector
-
Returns a string representation of this Vector, containing
the String representation of each element.
- toString() - Method in class org.apidesign.bck2brwsr.launcher.InvocationContext
-
Obtains textual result of the invocation.
- toUpperCase(int) - Static method in class java.lang.Character
-
- toUpperCase(char) - Static method in class java.lang.Character
-
Converts the character argument to uppercase using case mapping
information from the UnicodeData file.
- toUpperCase(Locale) - Method in class java.lang.String
-
Converts all of the characters in this String to upper
case using the rules of the given Locale.
- toUpperCase() - Method in class java.lang.String
-
Converts all of the characters in this String to upper
case using the rules of the default locale.
- toURI() - Method in class java.io.File
-
Constructs a file: URI that represents this abstract pathname.
- toURI() - Method in class java.net.URL
-
Returns a
URI equivalent to this URL.
- toURL() - Method in class java.io.File
-
Deprecated.
This method does not automatically escape characters that
are illegal in URLs. It is recommended that new code convert an
abstract pathname into a URL by first converting it into a URI, via the
toURI method, and then converting the URI into a URL
via the URI.toURL method.
- toURL() - Method in class java.net.URI
-
Constructs a URL from this URI.
- TRADITIONAL_CHINESE - Static variable in class java.util.Locale
-
Useful constant for language.
- transfer(E) - Method in class java.util.concurrent.LinkedTransferQueue
-
Transfers the element to a consumer, waiting if necessary to do so.
- transfer(E) - Method in interface java.util.concurrent.TransferQueue
-
Transfers the element to a consumer, waiting if necessary to do so.
- TransferQueue<E> - Interface in java.util.concurrent
-
A
BlockingQueue in which producers may wait for consumers
to receive elements.
- TRANSIENT - Static variable in class java.lang.reflect.Modifier
-
The int value representing the transient
modifier.
- TreeMap<K,V> - Class in java.util
-
- TreeMap() - Constructor for class java.util.TreeMap
-
Constructs a new, empty tree map, using the natural ordering of its
keys.
- TreeMap(Comparator<? super K>) - Constructor for class java.util.TreeMap
-
Constructs a new, empty tree map, ordered according to the given
comparator.
- TreeMap(Map<? extends K, ? extends V>) - Constructor for class java.util.TreeMap
-
Constructs a new tree map containing the same mappings as the given
map, ordered according to the natural ordering of its keys.
- TreeMap(SortedMap<K, ? extends V>) - Constructor for class java.util.TreeMap
-
Constructs a new tree map containing the same mappings and
using the same ordering as the specified sorted map.
- TreeSet<E> - Class in java.util
-
- TreeSet() - Constructor for class java.util.TreeSet
-
Constructs a new, empty tree set, sorted according to the
natural ordering of its elements.
- TreeSet(Comparator<? super E>) - Constructor for class java.util.TreeSet
-
Constructs a new, empty tree set, sorted according to the specified
comparator.
- TreeSet(Collection<? extends E>) - Constructor for class java.util.TreeSet
-
Constructs a new tree set containing the elements in the specified
collection, sorted according to the natural ordering of its
elements.
- TreeSet(SortedSet<E>) - Constructor for class java.util.TreeSet
-
Constructs a new tree set containing the same elements and
using the same ordering as the specified sorted set.
- trim() - Method in class java.lang.String
-
Returns a copy of the string, with leading and trailing whitespace
omitted.
- trimToSize() - Method in class java.lang.StringBuffer
-
- trimToSize() - Method in class java.util.ArrayList
-
Trims the capacity of this ArrayList instance to be the
list's current size.
- trimToSize() - Method in class java.util.Vector
-
Trims the capacity of this vector to be the vector's current
size.
- TRUE - Static variable in class java.lang.Boolean
-
The Boolean object corresponding to the primitive
value true.
- tryAcquire(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Attempts to acquire in exclusive mode.
- tryAcquire(int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Attempts to acquire in exclusive mode.
- tryAcquire() - Method in class java.util.concurrent.Semaphore
-
Acquires a permit from this semaphore, only if one is available at the
time of invocation.
- tryAcquire(long, TimeUnit) - Method in class java.util.concurrent.Semaphore
-
Acquires a permit from this semaphore, if one becomes available
within the given waiting time and the current thread has not
been
interrupted.
- tryAcquire(int) - Method in class java.util.concurrent.Semaphore
-
Acquires the given number of permits from this semaphore, only
if all are available at the time of invocation.
- tryAcquire(int, long, TimeUnit) - Method in class java.util.concurrent.Semaphore
-
Acquires the given number of permits from this semaphore, if all
become available within the given waiting time and the current
thread has not been
interrupted.
- tryAcquireNanos(long, long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Attempts to acquire in exclusive mode, aborting if interrupted,
and failing if the given timeout elapses.
- tryAcquireNanos(int, long) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Attempts to acquire in exclusive mode, aborting if interrupted,
and failing if the given timeout elapses.
- tryAcquireShared(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Attempts to acquire in shared mode.
- tryAcquireShared(int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Attempts to acquire in shared mode.
- tryAcquireSharedNanos(long, long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Attempts to acquire in shared mode, aborting if interrupted, and
failing if the given timeout elapses.
- tryAcquireSharedNanos(int, long) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Attempts to acquire in shared mode, aborting if interrupted, and
failing if the given timeout elapses.
- tryLock() - Method in interface java.util.concurrent.locks.Lock
-
Acquires the lock only if it is free at the time of invocation.
- tryLock(long, TimeUnit) - Method in interface java.util.concurrent.locks.Lock
-
Acquires the lock if it is free within the given waiting time and the
current thread has not been
interrupted.
- tryLock() - Method in class java.util.concurrent.locks.ReentrantLock
-
Acquires the lock only if it is not held by another thread at the time
of invocation.
- tryLock(long, TimeUnit) - Method in class java.util.concurrent.locks.ReentrantLock
-
Acquires the lock if it is not held by another thread within the given
waiting time and the current thread has not been
interrupted.
- tryLock() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock
-
Acquires the read lock only if the write lock is not held by
another thread at the time of invocation.
- tryLock(long, TimeUnit) - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock
-
Acquires the read lock if the write lock is not held by
another thread within the given waiting time and the
current thread has not been
interrupted.
- tryLock() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
-
Acquires the write lock only if it is not held by another thread
at the time of invocation.
- tryLock(long, TimeUnit) - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
-
Acquires the write lock if it is not held by another thread
within the given waiting time and the current thread has
not been
interrupted.
- tryRelease(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Attempts to set the state to reflect a release in exclusive
mode.
- tryRelease(int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Attempts to set the state to reflect a release in exclusive
mode.
- tryReleaseShared(long) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Attempts to set the state to reflect a release in shared mode.
- tryReleaseShared(int) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Attempts to set the state to reflect a release in shared mode.
- tryTransfer(E) - Method in class java.util.concurrent.LinkedTransferQueue
-
Transfers the element to a waiting consumer immediately, if possible.
- tryTransfer(E, long, TimeUnit) - Method in class java.util.concurrent.LinkedTransferQueue
-
Transfers the element to a consumer if it is possible to do so
before the timeout elapses.
- tryTransfer(E) - Method in interface java.util.concurrent.TransferQueue
-
Transfers the element to a waiting consumer immediately, if possible.
- tryTransfer(E, long, TimeUnit) - Method in interface java.util.concurrent.TransferQueue
-
Transfers the element to a consumer if it is possible to do so
before the timeout elapses.
- tryUnfork() - Method in class java.util.concurrent.ForkJoinTask
-
Tries to unschedule this task for execution.
- TTL_DONT_CACHE - Static variable in class java.util.ResourceBundle.Control
-
The time-to-live constant for not caching loaded resource bundle
instances.
- TTL_NO_EXPIRATION_CONTROL - Static variable in class java.util.ResourceBundle.Control
-
The time-to-live constant for disabling the expiration control
for loaded resource bundle instances in the cache.
- TUESDAY - Static variable in class java.util.Calendar
-
- TYPE - Static variable in class java.lang.Boolean
-
The Class object representing the primitive type boolean.
- TYPE - Static variable in class java.lang.Byte
-
The Class instance representing the primitive type
byte.
- TYPE - Static variable in class java.lang.Character
-
The Class instance representing the primitive type
char.
- TYPE - Static variable in class java.lang.Double
-
The Class instance representing the primitive type
double.
- TYPE - Static variable in class java.lang.Float
-
The Class instance representing the primitive type
float.
- TYPE - Static variable in class java.lang.Integer
-
The Class instance representing the primitive type
int.
- type() - Method in class java.lang.invoke.CallSite
-
Returns the type of this call site's target.
- type() - Method in class java.lang.invoke.MethodHandle
-
Reports the type of this method handle.
- TYPE - Static variable in class java.lang.Long
-
The Class instance representing the primitive type
long.
- Type - Interface in java.lang.reflect
-
Type is the common superinterface for all types in the Java
programming language.
- TYPE - Static variable in class java.lang.Short
-
The Class instance representing the primitive type
short.
- TYPE - Static variable in class java.lang.Void
-
The Class object representing the pseudo-type corresponding to
the keyword void.
- TypeVariable<D extends GenericDeclaration> - Interface in java.lang.reflect
-
TypeVariable is the common superinterface for type variables of kinds.