- abs(double) - Static method in class java.lang.Math
-
Returns the absolute value of a double value.
- abs(float) - Static method in class java.lang.Math
-
Returns the absolute value of a float value.
- 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.
- AbstractCollection<E> - Class in java.util
-
Class AbstractCollection is an abstract implementation of the Collection interface.
- AbstractCollection() - Constructor for class java.util.AbstractCollection
-
Constructs a new instance of this AbstractCollection.
- AbstractList<E> - Class in java.util
-
AbstractList is an abstract implementation of the List interface, optimized
for a backing store which supports random access.
- AbstractList() - Constructor for class java.util.AbstractList
-
Constructs a new instance of this AbstractList.
- AbstractMap<K,V> - Class in java.util
-
This class is an abstract implementation of the Map interface.
- AbstractMap() - Constructor for class java.util.AbstractMap
-
Constructs a new instance of this AbstractMap.
- AbstractMap.SimpleEntry<K,V> - Class in java.util
-
A key-value mapping.
- AbstractMap.SimpleImmutableEntry<K,V> - Class in java.util
-
An immutable key-value mapping.
- AbstractMethodError - Error in java.lang
-
Exception thrown when an attempt is made to call an abstract method.
- AbstractQueue<E> - Class in java.util
-
AbstractQueue is an abstract class which implements some of the methods in
Queue.
- AbstractQueue() - Constructor for class java.util.AbstractQueue
-
Constructor to be used by subclasses.
- AbstractSequentialList<E> - Class in java.util
-
AbstractSequentialList is an abstract implementation of the List interface.
- AbstractSequentialList() - Constructor for class java.util.AbstractSequentialList
-
Constructs a new instance of this AbstractSequentialList.
- AbstractSet<E> - Class in java.util
-
An AbstractSet is an abstract implementation of the Set interface.
- AbstractSet() - Constructor for class java.util.AbstractSet
-
Constructs a new instance of this AbstractSet.
- activeCount() - Static method in class java.lang.Thread
-
Returns the current number of active threads in the virtual machine.
- add(E) - Method in class java.util.AbstractCollection
-
- add(int, E) - Method in class java.util.AbstractList
-
Inserts the specified object into this List at the specified location.
- add(E) - Method in class java.util.AbstractList
-
Adds the specified object at the end of this List.
- add(E) - Method in class java.util.AbstractQueue
-
Adds an element to the queue.
- add(int, E) - Method in class java.util.AbstractSequentialList
-
- add(E) - Method in class java.util.ArrayDeque
-
Inserts the element to the tail of the deque.
- add(int, E) - Method in class java.util.ArrayList
-
Inserts the specified object into this ArrayList at the specified
location.
- add(E) - Method in class java.util.ArrayList
-
Adds the specified object at the end of this ArrayList.
- add(int, int) - Method in class java.util.Calendar
-
Adds the specified amount to a Calendar field.
- add(E) - Method in interface java.util.Collection
-
Attempts to add object to the contents of this
Collection (optional).
- add(E) - Method in class java.util.HashSet
-
Adds the specified object to this HashSet if not already present.
- add(int, E) - Method in class java.util.LinkedList
-
Inserts the specified object into this LinkedList at the
specified location.
- add(E) - Method in class java.util.LinkedList
-
Adds the specified object at the end of this LinkedList.
- add(int, E) - Method in interface java.util.List
-
Inserts the specified object into this List at the specified location.
- add(E) - Method in interface java.util.List
-
Adds the specified object at the end of this List.
- add(E) - Method in interface java.util.ListIterator
-
Inserts the specified object into the list between next and
previous.
- add(E) - Method in class java.util.PriorityQueue
-
Adds the specified object to the priority queue.
- add(E) - Method in interface java.util.Set
-
Adds the specified object to this set.
- add(E) - Method in class java.util.TreeSet
-
Adds the specified object to this TreeSet.
- add(int, E) - Method in class java.util.Vector
-
Adds the specified object into this vector at the specified location.
- add(E) - Method in class java.util.Vector
-
Adds the specified object at the end of this vector.
- addAll(Collection<? extends E>) - Method in class java.util.AbstractCollection
-
Attempts to add all of the objects contained in collection
to the contents of this Collection (optional).
- addAll(int, Collection<? extends E>) - Method in class java.util.AbstractList
-
Inserts the objects in the specified Collection at the specified location
in this List.
- addAll(Collection<? extends E>) - Method in class java.util.AbstractQueue
-
Adds all the elements of a collection to the queue.
- addAll(int, Collection<? extends E>) - Method in class java.util.AbstractSequentialList
-
- addAll(int, Collection<? extends E>) - Method in class java.util.ArrayList
-
Inserts the objects in the specified collection at the specified location
in this List.
- addAll(Collection<? extends E>) - Method in class java.util.ArrayList
-
Adds the objects in the specified collection to this ArrayList.
- addAll(Collection<? extends E>) - Method in interface java.util.Collection
-
Attempts to add all of the objects contained in Collection
to the contents of this Collection (optional).
- addAll(Collection<? super T>, T...) - Static method in class java.util.Collections
-
Adds all the specified elements to the specified collection.
- addAll(int, Collection<? extends E>) - Method in class java.util.LinkedList
-
Inserts the objects in the specified collection at the specified location
in this LinkedList.
- addAll(Collection<? extends E>) - Method in class java.util.LinkedList
-
Adds the objects in the specified Collection to this LinkedList.
- addAll(int, Collection<? extends E>) - Method in interface java.util.List
-
Inserts the objects in the specified collection at the specified location
in this List.
- addAll(Collection<? extends E>) - Method in interface java.util.List
-
Adds the objects in the specified collection to the end of this List.
- addAll(Collection<? extends E>) - Method in interface java.util.Set
-
Adds the objects in the specified collection which do not exist yet in
this set.
- addAll(Collection<? extends E>) - Method in class java.util.TreeSet
-
Adds the objects in the specified collection to this TreeSet.
- addAll(int, Collection<? extends E>) - Method in class java.util.Vector
-
Inserts the objects in the specified collection at the specified location
in this vector.
- addAll(Collection<? extends E>) - Method in class java.util.Vector
-
Adds the objects in the specified collection to the end of this vector.
- addElement(E) - Method in class java.util.Vector
-
Adds the specified object at the end of this vector.
- addFirst(E) - Method in class java.util.ArrayDeque
-
Inserts an element at the head of this deque if it dose not violate size
limit immediately.
- addFirst(E) - Method in interface java.util.Deque
-
Inserts an element at the head of this deque if it dose not violate size
limit immediately.
- addFirst(E) - Method in class java.util.LinkedList
-
Adds the specified object at the beginning of this LinkedList.
- addLast(E) - Method in class java.util.ArrayDeque
-
Inserts an element at the tail of this deque if it dose not violate size
limit immediately.
- addLast(E) - Method in interface java.util.Deque
-
Inserts an element at the tail of this deque if it dose not violate size
limit immediately.
- addLast(E) - Method in class java.util.LinkedList
-
Adds the specified object at the end of this LinkedList.
- addObserver(Observer) - Method in class java.util.Observable
-
Adds the specified observer to the list of observers.
- addSuppressed(Throwable) - Method in class java.lang.Throwable
-
- after(Object) - Method in class java.util.Calendar
-
Compares the time field records.
- altMetafactory(MethodHandles.Lookup, String, MethodType, Object...) - Static method in class java.lang.invoke.LambdaMetafactory
-
Deprecated.
- AM - Static variable in class java.util.Calendar
-
Value of the AM_PM field indicating the period of the day from midnight to just before noon.
- AM_PM - Static variable in class java.util.Calendar
-
Field number for get and set indicating whether the HOUR is before or after noon.
- and(BitSet) - Method in class java.util.BitSet
-
Performs the logical AND of this BitSet with another
BitSet.
- andNot(BitSet) - Method in class java.util.BitSet
-
Clears all bits in the receiver which are also set in the parameter
BitSet.
- Annotation - Interface in java.lang.annotation
-
A mirror of java.lang.Annotation.
- AnnotationFormatError - Error in java.lang.annotation
-
A mirror of java.lang.annotation.AnnotationFormatError.
- AnnotationFormatError(String) - Constructor for error java.lang.annotation.AnnotationFormatError
-
- AnnotationFormatError(String, Throwable) - Constructor for error java.lang.annotation.AnnotationFormatError
-
- AnnotationFormatError(Throwable) - Constructor for error java.lang.annotation.AnnotationFormatError
-
- annotationType() - Method in interface java.lang.annotation.Annotation
-
Returns the annotation type of this annotation.
- annotationType() - Method in exception java.lang.annotation.IncompleteAnnotationException
-
- append(char) - Method in class java.io.StringWriter
-
- append(CharSequence) - Method in class java.io.StringWriter
-
- append(CharSequence, int, int) - Method in class java.io.StringWriter
-
- append(char) - Method in interface java.lang.Appendable
-
Appends the specified character.
- append(CharSequence) - Method in interface java.lang.Appendable
-
Appends the character sequence csq.
- append(CharSequence, int, int) - Method in interface java.lang.Appendable
-
Appends a subsequence of csq.
- append(boolean) - Method in class java.lang.StringBuffer
-
Appends the string representation of the boolean argument to the string buffer.
- append(char) - Method in class java.lang.StringBuffer
-
Appends the string representation of the char argument to this string buffer.
- append(char[], int, int) - Method in class java.lang.StringBuffer
-
Appends the string representation of a subarray of the char array argument to this string buffer.
- append(double) - Method in class java.lang.StringBuffer
-
Appends the string representation of the double argument to this string buffer.
- append(float) - Method in class java.lang.StringBuffer
-
Appends the string representation of the float argument to this string buffer.
- append(int) - Method in class java.lang.StringBuffer
-
Appends the string representation of the int argument to this string buffer.
- append(long) - Method in class java.lang.StringBuffer
-
Appends the string representation of the long argument to this string buffer.
- append(Object) - Method in class java.lang.StringBuffer
-
Appends the string representation of the Object argument to this string buffer.
- append(String) - Method in class java.lang.StringBuffer
-
Appends the string to this string buffer.
- append(CharSequence) - Method in class java.lang.StringBuffer
-
- append(CharSequence, int, int) - Method in class java.lang.StringBuffer
-
- append(boolean) - Method in class java.lang.StringBuilder
-
Appends the string representation of the boolean argument to the string builder.
- append(char) - Method in class java.lang.StringBuilder
-
Appends the string representation of the char argument to this string builder.
- append(char[]) - Method in class java.lang.StringBuilder
-
- append(char[], int, int) - Method in class java.lang.StringBuilder
-
Appends the string representation of a subarray of the char array argument to this string builder.
- append(double) - Method in class java.lang.StringBuilder
-
Appends the string representation of the double argument to this string builder.
- append(float) - Method in class java.lang.StringBuilder
-
Appends the string representation of the float argument to this string builder.
- append(int) - Method in class java.lang.StringBuilder
-
Appends the string representation of the int argument to this string builder.
- append(long) - Method in class java.lang.StringBuilder
-
Appends the string representation of the long argument to this string builder.
- append(Object) - Method in class java.lang.StringBuilder
-
Appends the string representation of the Object argument to this string builder.
- append(String) - Method in class java.lang.StringBuilder
-
Appends the string to this string builder.
- append(StringBuffer) - Method in class java.lang.StringBuilder
-
Appends StringBuffer to end of builder.
- append(CharSequence) - Method in class java.lang.StringBuilder
-
- append(CharSequence, int, int) - Method in class java.lang.StringBuilder
-
- Appendable - Interface in java.lang
-
Declares methods to append characters or character sequences.
- appendParameterTypes(Class<?>...) - Method in class java.lang.invoke.MethodType
-
Deprecated.
- appendParameterTypes(List<Class<?>>) - Method in class java.lang.invoke.MethodType
-
Deprecated.
- applyPattern(String) - Method in class java.text.SimpleDateFormat
-
Deprecated.
Apply a new pattern.
- APRIL - Static variable in class java.util.Calendar
-
Value of the MONTH field indicating the fourth month of the year.
- 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
-
Added this for Kotlin
- Array() - Constructor for class java.lang.reflect.Array
-
- arraycopy(Object, int, Object, int, int) - Static method in class java.lang.System
-
Copies an array from the specified source array, beginning at the specified position, to the specified position of the destination array.
- ArrayDeque<E> - Class in java.util
-
An implementation of Deque, backed by an array.
- ArrayDeque() - Constructor for class java.util.ArrayDeque
-
Constructs a new empty instance of ArrayDeque big enough for 16 elements.
- ArrayDeque(int) - Constructor for class java.util.ArrayDeque
-
Constructs a new empty instance of ArrayDeque big enough for specified
number of elements.
- ArrayDeque(Collection<? extends E>) - Constructor for class java.util.ArrayDeque
-
Constructs a new instance of ArrayDeque containing the elements of the
specified collection, with the order returned by the collection's
iterator.
- arrayElementGetter(Class<?>) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- arrayElementSetter(Class<?>) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- 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
-
ArrayList is an implementation of
List, backed by an array.
- ArrayList() - Constructor for class java.util.ArrayList
-
Constructs a new instance of ArrayList with ten capacity.
- ArrayList(int) - Constructor for class java.util.ArrayList
-
Constructs a new instance of ArrayList with the specified
capacity.
- ArrayList(Collection<? extends E>) - Constructor for class java.util.ArrayList
-
Constructs a new instance of ArrayList containing the elements of
the specified collection.
- Arrays - Class in java.util
-
Arrays contains static methods which operate on arrays.
- 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.
- asCollector(Class<?>, int) - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- asFixedArity() - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- asLifoQueue(Deque<T>) - Static method in class java.util.Collections
-
Answers a LIFO Queue as a view of a Deque.
- asList(T...) - Static method in class java.util.Arrays
-
Returns a List of the objects in the specified array.
- AssertionError - Error in java.lang
-
- AssertionError() - Constructor for error java.lang.AssertionError
-
- AssertionError(String) - Constructor for error java.lang.AssertionError
-
- AssertionError(Object) - Constructor for error java.lang.AssertionError
-
- AssertionError(boolean) - Constructor for error java.lang.AssertionError
-
- AssertionError(char) - Constructor for error java.lang.AssertionError
-
- AssertionError(int) - Constructor for error java.lang.AssertionError
-
- AssertionError(long) - Constructor for error java.lang.AssertionError
-
- AssertionError(float) - Constructor for error java.lang.AssertionError
-
- AssertionError(double) - Constructor for error java.lang.AssertionError
-
- AssertionError(String, Throwable) - Constructor for error java.lang.AssertionError
-
- asSpreader(Class<?>, int) - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- asSubclass(Class) - Method in class java.lang.Class
-
Replacement for Class.asSubclass(Class).
- asType(MethodType) - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- asVarargsCollector(Class<?>) - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- AUGUST - Static variable in class java.util.Calendar
-
Value of the MONTH field indicating the eighth month of the year.
- AutoCloseable - Interface in java.lang
-
- available() - Method in class java.io.ByteArrayInputStream
-
Returns the number of bytes that can be read from this input stream without blocking.
- available() - Method in class java.io.DataInputStream
-
Returns the number of bytes that can be read from this input stream without blocking.
- available() - Method in class java.io.InputStream
-
Returns 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.
- before(Object) - Method in class java.util.Calendar
-
Compares the time field records.
- binarySearch(byte[], byte) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in the specified
ascending sorted array.
- binarySearch(char[], char) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in the specified
sorted array.
- binarySearch(double[], double) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in the specified
sorted array.
- binarySearch(float[], float) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in the specified
sorted array.
- binarySearch(int[], int) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in the specified
sorted array.
- binarySearch(long[], long) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in the specified
sorted array.
- binarySearch(Object[], Object) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in the specified
sorted array.
- binarySearch(T[], T, Comparator<? super T>) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in the specified
sorted array using the Comparator to compare elements.
- binarySearch(short[], short) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in the specified
sorted array.
- binarySearch(byte[], int, int, byte) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in a part of the
specified sorted array.
- binarySearch(char[], int, int, char) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in a part of the
specified sorted array.
- binarySearch(double[], int, int, double) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in a part of the
specified sorted array.
- binarySearch(float[], int, int, float) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in a part of the
specified sorted array.
- binarySearch(int[], int, int, int) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in a part of the
specified sorted array.
- binarySearch(long[], int, int, long) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in a part of the
specified sorted array.
- binarySearch(Object[], int, int, Object) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in a part of the
specified sorted array.
- binarySearch(T[], int, int, T, Comparator<? super T>) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in a part of the
specified sorted array using the Comparator to compare elements.
- binarySearch(short[], int, int, short) - Static method in class java.util.Arrays
-
Performs a binary search for the specified element in a part of the
specified sorted array.
- binarySearch(List<? extends Comparable<? super T>>, T) - Static method in class java.util.Collections
-
Performs a binary search for the specified element in the specified
sorted list.
- binarySearch(List<? extends T>, T, Comparator<? super T>) - Static method in class java.util.Collections
-
Performs a binary search for the specified element in the specified
sorted list using the specified comparator.
- bind(Object, String, MethodType) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- bindTo(Object) - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- BitSet - Class in java.util
-
The BitSet class implements a bit field.
- BitSet() - Constructor for class java.util.BitSet
-
Create a new BitSet with size equal to 64 bits.
- BitSet(int) - Constructor for class java.util.BitSet
-
Create a new BitSet with size equal to nbits.
- Boolean - Class in java.lang
-
The Boolean class wraps a value of the primitive type boolean in an object.
- Boolean(boolean) - Constructor for class java.lang.Boolean
-
Allocates a Boolean object representing the value argument.
- booleanValue() - Method in class java.lang.Boolean
-
Returns the value of this Boolean object as a boolean primitive.
- buf - Variable in class java.io.ByteArrayInputStream
-
An array of bytes that was provided by the creator of the stream.
- buf - Variable in class java.io.ByteArrayOutputStream
-
The buffer where data is stored.
- Byte - Class in java.lang
-
The Byte class is the standard wrapper for byte values.
- Byte(byte) - Constructor for class java.lang.Byte
-
Constructs a Byte object initialized to the specified byte value.
- ByteArrayInputStream - Class in java.io
-
A ByteArrayInputStream contains an internal buffer that contains bytes that may be read from the stream.
- ByteArrayInputStream(byte[]) - Constructor for class java.io.ByteArrayInputStream
-
Creates a ByteArrayInputStream so that it uses buf as its buffer array.
- ByteArrayInputStream(byte[], int, int) - Constructor for class java.io.ByteArrayInputStream
-
Creates ByteArrayInputStream that uses buf as its buffer array.
- ByteArrayOutputStream - Class in java.io
-
This class implements an output stream in which the data is written into a byte array.
- ByteArrayOutputStream() - Constructor for class java.io.ByteArrayOutputStream
-
Creates a new byte array output stream.
- ByteArrayOutputStream(int) - Constructor for class java.io.ByteArrayOutputStream
-
Creates a new byte array output stream, with a buffer capacity of the specified size, in bytes.
- bytesTransferred - Variable in exception java.io.InterruptedIOException
-
Reports how many bytes had been transferred as part of the I/O operation before it was interrupted.
- byteValue() - Method in class java.lang.Byte
-
Returns the value of this Byte as a byte.
- byteValue() - Method in class java.lang.Double
-
Returns the value of this Double as a byte (by casting to a byte).
- byteValue() - Method in class java.lang.Float
-
Returns the value of this Float as a byte (by casting to a byte).
- byteValue() - Method in class java.lang.Integer
-
Returns the value of this Integer as a byte.
- byteValue() - Method in class java.lang.Long
-
Returns the value of this Long as a byte value.
- byteValue() - Method in class java.lang.Number
-
- Calendar - Class in java.util
-
Calendar is an abstract base class for converting between a Date object and a set of integer fields such as YEAR, MONTH, DAY, HOUR, and so on.
- Calendar() - Constructor for class java.util.Calendar
-
Constructs a Calendar with the default time zone.
- CallSite - Class in java.lang.invoke
-
- CallSite() - Constructor for class java.lang.invoke.CallSite
-
Deprecated.
- cancel() - Method in class java.util.Timer
-
- cancel() - Method in class java.util.TimerTask
-
- capacity() - Method in class java.lang.StringBuffer
-
Returns the current capacity of the String buffer.
- capacity() - Method in class java.lang.StringBuilder
-
Returns the current capacity of the String builder.
- capacity() - Method in class java.util.Vector
-
Returns the number of elements this vector can hold without growing.
- capacityIncrement - Variable in class java.util.Vector
-
How many elements should be added to the vector when it is detected that
it needs to grow to accommodate extra entries.
- cardinality() - Method in class java.util.BitSet
-
Returns the number of bits that are true in this BitSet.
- CASE_INSENSITIVE_ORDER - Static variable in class java.lang.String
-
- cast(Object) - Method in class java.lang.Class
-
Replacement for Class.cast(Object).
- catchException(MethodHandle, Class<? extends Throwable>, MethodHandle) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- ceil(double) - Static method in class java.lang.Math
-
Returns the smallest (closest to negative infinity) double value that is not less than the argument and is equal to a mathematical integer.
- ceiling(E) - Method in interface java.util.NavigableSet
-
Answers the smallest element bigger than or equal to the specified one,
or null if no such element.
- ceiling(E) - Method in class java.util.TreeSet
-
Answers the smallest element bigger than or equal to the specified one,
or null if no such element.
- ceilingEntry(K) - Method in interface java.util.NavigableMap
-
Answers an entry related with the smallest key greater than or equal to
the specified key, or null if no such key.
- ceilingEntry(K) - Method in class java.util.TreeMap
-
Answers an entry related with the smallest key greater than or equal to
the specified key, or null if no such key.
- ceilingKey(K) - Method in interface java.util.NavigableMap
-
Answers the smallest key greater than or equal to the specified key, or
null if no such key.
- ceilingKey(K) - Method in class java.util.TreeMap
-
Answers the smallest key greater than or equal to the specified key, or
null if no such key.
- changeParameterType(int, Class<?>) - Method in class java.lang.invoke.MethodType
-
Deprecated.
- changeReturnType(Class<?>) - Method in class java.lang.invoke.MethodType
-
Deprecated.
- 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 Character object and initializes it so that it represents the primitive value argument.
- charAt(int) - Method in interface java.lang.CharSequence
-
Returns the character at the specified index, with the first character
having index zero.
- charAt(int) - Method in class java.lang.String
-
Returns the character at the specified index.
- charAt(int) - Method in class java.lang.StringBuffer
-
The specified character of the sequence currently represented by the string buffer, as indicated by the index argument, is returned.
- charAt(int) - Method in class java.lang.StringBuilder
-
The specified character of the sequence currently represented by the string builder, as indicated by the index argument, is returned.
- charCount(int) - Static method in class java.lang.Character
-
Calculates the number of char values required to represent
the Unicode code point.
- CharSequence - Interface in java.lang
-
This interface represents an ordered set of characters and defines the
methods to probe them.
- Charset - Class in java.nio.charset
-
Added this for Kotlin
- Charset(String, String[]) - Constructor for class java.nio.charset.Charset
-
- charValue() - Method in class java.lang.Character
-
Returns the value of this Character object.
- checkedCollection(Collection<E>, Class<E>) - Static method in class java.util.Collections
-
Returns a dynamically typesafe view of the specified collection.
- checkError() - Method in class java.io.PrintStream
-
Flush the stream and check its error state.
- Class<T> - Class in java.lang
-
Instances of the class Class represent classes and interfaces in a running Java application.
- Class() - Constructor for class java.lang.Class
-
- 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.
- ClassLoader - Class in java.lang
-
- ClassLoader() - Constructor for class java.lang.ClassLoader
-
- ClassLoader(ClassLoader) - Constructor for class java.lang.ClassLoader
-
- 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 but no definition for the class with the specified name could be found.
- 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.
- clear() - Method in class java.lang.ref.Reference
-
Clears this reference object.
- clear() - Method in class java.util.AbstractCollection
-
Removes all elements from this Collection, leaving it empty (optional).
- clear() - Method in class java.util.AbstractList
-
Removes all elements from this list, leaving it empty.
- clear() - Method in class java.util.AbstractMap
-
Removes all elements from this map, leaving it empty.
- clear() - Method in class java.util.AbstractQueue
-
Removes all elements of the queue, leaving it empty.
- clear() - Method in class java.util.ArrayDeque
-
Empty the deque.
- clear() - Method in class java.util.ArrayList
-
Removes all elements from this ArrayList, leaving it empty.
- clear() - Method in class java.util.BitSet
-
Clears all the bits in this BitSet.
- clear(int) - Method in class java.util.BitSet
-
Clears the bit at index pos.
- clear(int, int) - Method in class java.util.BitSet
-
Clears the bits starting from pos1 to pos2.
- clear() - Method in interface java.util.Collection
-
Removes all elements from this Collection, leaving it empty (optional).
- clear() - Method in class java.util.HashMap
-
Removes all mappings from this hash map, leaving it empty.
- clear() - Method in class java.util.HashSet
-
Removes all elements from this HashSet, leaving it empty.
- clear() - Method in class java.util.Hashtable
-
Removes all key/value pairs from this Hashtable, leaving the
size zero and the capacity unchanged.
- clear() - Method in class java.util.IdentityHashMap
-
Removes all elements from this map, leaving it empty.
- clear() - Method in class java.util.LinkedHashMap
-
Removes all elements from this map, leaving it empty.
- clear() - Method in class java.util.LinkedList
-
Removes all elements from this LinkedList, leaving it empty.
- clear() - Method in interface java.util.List
-
Removes all elements from this List, leaving it empty.
- clear() - Method in interface java.util.Map
-
Removes all elements from this Map, leaving it empty.
- clear() - Method in class java.util.PriorityQueue
-
Removes all the elements of the priority queue.
- clear() - Method in interface java.util.Set
-
Removes all elements from this set, leaving it empty.
- clear() - Method in class java.util.TreeMap
-
Removes all mappings from this TreeMap, leaving it empty.
- clear() - Method in class java.util.TreeSet
-
Removes all elements from this TreeSet, leaving it empty.
- clear() - Method in class java.util.Vector
-
Removes all elements from this vector, leaving it empty.
- clearChanged() - Method in class java.util.Observable
-
Clears the changed flag for this Observable.
- clone() - Method in class java.lang.Enum
-
- clone() - Method in class java.lang.Object
-
- clone() - Method in class java.text.DateFormat
-
Deprecated.
- clone() - Method in class java.text.DateFormatSymbols
-
- clone() - Method in class java.text.SimpleDateFormat
-
Deprecated.
- Cloneable - Interface in java.lang
-
- CloneNotSupportedException - Exception in java.lang
-
Thrown when a program attempts to clone an object which does not support the
Cloneable interface.
- CloneNotSupportedException() - Constructor for exception java.lang.CloneNotSupportedException
-
Constructs a new CloneNotSupportedException that includes the
current stack trace.
- CloneNotSupportedException(String) - Constructor for exception java.lang.CloneNotSupportedException
-
Constructs a new CloneNotSupportedException with the current
stack trace and the specified detail message.
- close() - Method in class java.io.ByteArrayInputStream
-
Closes this input stream and releases any system resources associated with the stream.
- close() - Method in class java.io.ByteArrayOutputStream
-
Closes this output stream and releases any system resources associated with this stream.
- close() - Method in class java.io.DataInputStream
-
Closes this input stream and releases any system resources associated with the stream.
- close() - Method in class java.io.DataOutputStream
-
Closes this output stream and releases any system resources associated with the stream.
- close() - Method in class java.io.InputStream
-
Closes this input stream and releases any system resources associated with the stream.
- close() - Method in class java.io.InputStreamReader
-
Close 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 the stream.
- close() - Method in class java.io.PrintStream
-
Close the stream.
- close() - Method in class java.io.Reader
-
Close the stream.
- close() - Method in class java.io.StringReader
-
Closes this reader.
- close() - Method in class java.io.StringWriter
-
- close() - Method in class java.io.Writer
-
Close the stream, flushing it first.
- close() - Method in interface java.lang.AutoCloseable
-
- codePointAt(CharSequence, int) - Static method in class java.lang.Character
-
Returns the code point at the index in the CharSequence.
- codePointAt(char[], int) - Static method in class java.lang.Character
-
Returns the code point at the index in the char[].
- codePointAt(char[], int, int) - Static method in class java.lang.Character
-
Returns the code point at the index in the char[] that's
within the limit.
- codePointBefore(CharSequence, int) - Static method in class java.lang.Character
-
Returns the Unicode code point that proceeds the index in
the CharSequence.
- codePointBefore(char[], int) - Static method in class java.lang.Character
-
Returns the Unicode code point that proceeds the index in
the char[].
- codePointBefore(char[], int, int) - Static method in class java.lang.Character
-
Returns the Unicode code point that proceeds the index in
the char[] and isn't less than start.
- codePointCount(CharSequence, int, int) - Static method in class java.lang.Character
-
Counts the number of Unicode code points in the subsequence of the
CharSequence, as delineated by the
beginIndex and endIndex.
- codePointCount(char[], int, int) - Static method in class java.lang.Character
-
Counts the number of Unicode code points in the subsequence of the
char[], as delineated by the offset and
count.
- collectArguments(MethodHandle, int, MethodHandle) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- Collection<E> - Interface in java.util
-
Collection is the root of the collection hierarchy.
- Collections - Class in java.util
-
Collections contains static methods which operate on
Collection classes.
- Comparable<T> - Interface in java.lang
-
This interface should be implemented by all classes that wish to define a
natural order of their instances.
- Comparator<T> - Interface in java.util
-
A Comparator is used to compare two objects to determine their ordering with
respect to each other.
- comparator() - Method in class java.util.PriorityQueue
-
Gets the comparator of the priority queue.
- comparator() - Method in interface java.util.SortedMap
-
Returns the comparator used to compare keys in this sorted map.
- comparator() - Method in interface java.util.SortedSet
-
Returns the comparator used to compare elements in this SortedSet.
- comparator() - Method in class java.util.TreeMap
-
Returns the comparator used to compare elements in this map.
- comparator() - Method in class java.util.TreeSet
-
Returns the comparator used to compare elements in this TreeSet.
- compare(byte, byte) - Method in class java.lang.Byte
-
- compare(double, double) - Static method in class java.lang.Double
-
- compare(float, float) - Static method in class java.lang.Float
-
- compare(int, int) - Static method in class java.lang.Integer
-
- compare(long, long) - Static method in class java.lang.Long
-
- compare(short, short) - Static method in class java.lang.Short
-
- compare(T, T) - Method in interface java.util.Comparator
-
Compares the two specified objects to determine their relative ordering.
- compare(T, T, Comparator<? super T>) - Static method in class java.util.Objects
-
- compareTo(Boolean) - Method in class java.lang.Boolean
-
- compareTo(Byte) - Method in class java.lang.Byte
-
- compareTo(T) - Method in interface java.lang.Comparable
-
Compares this object to the specified object to determine their relative
order.
- compareTo(Double) - Method in class java.lang.Double
-
- compareTo(E) - Method in class java.lang.Enum
-
- compareTo(Float) - Method in class java.lang.Float
-
- compareTo(Integer) - Method in class java.lang.Integer
-
- compareTo(Long) - Method in class java.lang.Long
-
- compareTo(Short) - Method in class java.lang.Short
-
- compareTo(String) - Method in class java.lang.String
-
Compares two strings lexicographically.
- compareTo(Charset) - Method in class java.nio.charset.Charset
-
- compareToIgnoreCase(String) - Method in class java.lang.String
-
- computeFields() - Method in class java.util.Calendar
-
Converts the current millisecond time value time to field values in fields[].
- computeTime() - Method in class java.util.Calendar
-
Converts the current field values in fields[] to the millisecond time value time.
- concat(String) - Method in class java.lang.String
-
Concatenates the specified string to the end of this string.
- ConcurrentModificationException - Exception in java.util
-
An ConcurrentModificationException is thrown when a Collection is
modified and an existing iterator on the Collection is used to modify the
Collection as well.
- ConcurrentModificationException() - Constructor for exception java.util.ConcurrentModificationException
-
Constructs a new ConcurrentModificationException with the current
stack trace filled in.
- ConcurrentModificationException(String) - Constructor for exception java.util.ConcurrentModificationException
-
Constructs a new ConcurrentModificationException with the current
stack trace and message filled in.
- constant(Class<?>, Object) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- Constructor - Class in java.lang.reflect
-
- Constructor() - Constructor for class java.lang.reflect.Constructor
-
- contains(CharSequence) - Method in class java.lang.String
-
Checks if string contains the given char sequence.
- contains(Object) - Method in class java.util.AbstractCollection
-
Tests whether this Collection contains the specified object.
- contains(Object) - Method in class java.util.ArrayDeque
-
Returns true if the specified element is in the deque.
- contains(Object) - Method in class java.util.ArrayList
-
Searches this ArrayList for the specified object.
- contains(Object) - Method in interface java.util.Collection
-
Tests whether this Collection contains the specified object.
- contains(Object) - Method in class java.util.HashSet
-
Searches this HashSet for the specified object.
- contains(Object) - Method in class java.util.Hashtable
-
Returns true if this Hashtable contains the specified object as
the value of at least one of the key/value pairs.
- contains(Object) - Method in class java.util.LinkedList
-
Searches this LinkedList for the specified object.
- contains(Object) - Method in interface java.util.List
-
Tests whether this List contains the specified object.
- contains(Object) - Method in class java.util.PriorityQueue
-
Answers if there is an element in this queue equals to the object.
- contains(Object) - Method in interface java.util.Set
-
Searches this set for the specified object.
- contains(Object) - Method in class java.util.TreeSet
-
Searches this TreeSet for the specified object.
- contains(Object) - Method in class java.util.Vector
-
Searches this vector for the specified object.
- containsAll(Collection<?>) - Method in class java.util.AbstractCollection
-
Tests whether this Collection contains all objects contained in the
specified Collection.
- containsAll(Collection<?>) - Method in interface java.util.Collection
-
Tests whether this Collection contains all objects contained in the
specified Collection.
- containsAll(Collection<?>) - Method in interface java.util.List
-
Tests whether this List contains all objects contained in the
specified collection.
- containsAll(Collection<?>) - Method in interface java.util.Set
-
Searches this set for all objects in the specified collection.
- containsAll(Collection<?>) - Method in class java.util.Vector
-
Searches this vector for all objects in the specified collection.
- containsKey(Object) - Method in class java.util.AbstractMap
-
Returns whether this map contains the specified key.
- containsKey(Object) - Method in class java.util.HashMap
-
Returns whether this map contains the specified key.
- containsKey(Object) - Method in class java.util.Hashtable
-
Returns true if this Hashtable contains the specified object as a
key of one of the key/value pairs.
- containsKey(Object) - Method in class java.util.IdentityHashMap
-
Returns whether this map contains the specified key.
- containsKey(Object) - Method in interface java.util.Map
-
Returns whether this Map contains the specified key.
- containsKey(Object) - Method in class java.util.TreeMap
-
Returns whether this map contains the specified key.
- containsValue(Object) - Method in class java.util.AbstractMap
-
Returns whether this map contains the specified value.
- containsValue(Object) - Method in class java.util.HashMap
-
Returns whether this map contains the specified value.
- containsValue(Object) - Method in class java.util.Hashtable
-
Searches this Hashtable for the specified value.
- containsValue(Object) - Method in class java.util.IdentityHashMap
-
Returns whether this map contains the specified value.
- containsValue(Object) - Method in class java.util.LinkedHashMap
-
- containsValue(Object) - Method in interface java.util.Map
-
Returns whether this Map contains the specified value.
- containsValue(Object) - Method in class java.util.TreeMap
-
Returns whether this map contains the specified value.
- contentEquals(CharSequence) - Method in class java.lang.String
-
- contentEquals(StringBuffer) - Method in class java.lang.String
-
- copy(List<? super T>, List<? extends T>) - Static method in class java.util.Collections
-
Copies the elements from the source list to the destination list.
- copyInto(Object[]) - Method in class java.util.Vector
-
Attempts to copy elements contained by this Vector into the
corresponding elements of the supplied Object array.
- copyOf(T[], int, Class<? extends T[]>) - Static method in class java.util.Arrays
-
- copyOf(T[], int) - Static method in class java.util.Arrays
-
- copyOf(boolean[]) - Static method in class java.util.Arrays
-
- copyOf(boolean[], int) - Static method in class java.util.Arrays
-
- copyOf(char[]) - Static method in class java.util.Arrays
-
- copyOf(char[], int) - Static method in class java.util.Arrays
-
- copyOf(double[]) - Static method in class java.util.Arrays
-
- copyOf(double[], int) - Static method in class java.util.Arrays
-
- copyOf(float[]) - Static method in class java.util.Arrays
-
- copyOf(float[], int) - Static method in class java.util.Arrays
-
- copyOf(long[]) - Static method in class java.util.Arrays
-
- copyOf(long[], int) - Static method in class java.util.Arrays
-
- copyOf(int[]) - Static method in class java.util.Arrays
-
- copyOf(int[], int) - Static method in class java.util.Arrays
-
- copyOf(byte[]) - Static method in class java.util.Arrays
-
- copyOf(byte[], int) - Static method in class java.util.Arrays
-
- copyOf(short[]) - Static method in class java.util.Arrays
-
- copyOf(short[], int) - Static method in class java.util.Arrays
-
- copyOfRange(boolean[], int, int) - Static method in class java.util.Arrays
-
Copies elements in original array to a new array, from index
start(inclusive) to end(exclusive).
- copyOfRange(byte[], int, int) - Static method in class java.util.Arrays
-
Copies elements in original array to a new array, from index
start(inclusive) to end(exclusive).
- copyOfRange(char[], int, int) - Static method in class java.util.Arrays
-
Copies elements in original array to a new array, from index
start(inclusive) to end(exclusive).
- copyOfRange(double[], int, int) - Static method in class java.util.Arrays
-
Copies elements in original array to a new array, from index
start(inclusive) to end(exclusive).
- copyOfRange(float[], int, int) - Static method in class java.util.Arrays
-
Copies elements in original array to a new array, from index
start(inclusive) to end(exclusive).
- copyOfRange(int[], int, int) - Static method in class java.util.Arrays
-
Copies elements in original array to a new array, from index
start(inclusive) to end(exclusive).
- copyOfRange(long[], int, int) - Static method in class java.util.Arrays
-
Copies elements in original array to a new array, from index
start(inclusive) to end(exclusive).
- copyOfRange(short[], int, int) - Static method in class java.util.Arrays
-
Copies elements in original array to a new array, from index
start(inclusive) to end(exclusive).
- copyOfRange(U[], int, int, Class<? extends T[]>) - Static method in class java.util.Arrays
-
- copyOfRange(T[], int, int) - Static method in class java.util.Arrays
-
- copyValueOf(char[]) - Static method in class java.lang.String
-
- copyValueOf(char[], int, int) - Static method in class java.lang.String
-
- cos(double) - Static method in class java.lang.Math
-
Returns the trigonometric cosine of an angle.
- 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.
- countObservers() - Method in class java.util.Observable
-
Returns the number of observers registered to this Observable.
- countTokens() - Method in class java.util.StringTokenizer
-
Returns the number of unprocessed tokens remaining in the string.
- create(String) - Static method in class java.net.URI
-
A convenience factory method, intended to be used when the URI string is
known to be valid (ie.
- current() - Static method in class java.util.concurrent.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
-
Returns the current time in milliseconds.
- 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 and saves its argument, the input stream in, for later use.
- 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 to represent the current time specified number of milliseconds since the standard base time known as "the epoch", namely January 1, 1970, 00:00:00 GMT.
- 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.
- DateFormat - Class in java.text
-
- DateFormatPatterns - Class in java.text
-
Common patterns for dates, times, and timestamps.
- DateFormatPatterns() - Constructor for class java.text.DateFormatPatterns
-
- DateFormatSymbols - Class in java.text
-
- DateFormatSymbols() - Constructor for class java.text.DateFormatSymbols
-
- 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.util.Calendar
-
Field number for get and set indicating the day of the week.
- 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.
- DECEMBER - Static variable in class java.util.Calendar
-
Value of the MONTH field indicating the twelfth month of the year.
- deepEquals(Object[], Object[]) - Static method in class java.util.Arrays
-
Returns true if the two given arrays are deeply equal to one another.
- deepEquals(Object, Object) - Static method in class java.util.Objects
-
- deepHashCode(Object[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the "deep contents" of the given array.
- deepToString(Object[]) - Static method in class java.util.Arrays
-
Creates a "deep" String representation of the
Object[] passed, such that if the array contains other arrays,
the String representation of those arrays is generated as well.
- DEFAULT - Static variable in class java.text.DateFormat
-
Deprecated.
Constant for default style (MEDIUM) parsing/formatting pattern.
- delete(int, int) - Method in class java.lang.StringBuffer
-
Removes the characters in a substring of this StringBuffer.
- delete(int, int) - Method in class java.lang.StringBuilder
-
Removes the characters in a substring of this StringBuilder.
- deleteCharAt(int) - Method in class java.lang.StringBuffer
-
Removes the character at the specified position in this StringBuffer (shortening the StringBuffer by one character).
- deleteCharAt(int) - Method in class java.lang.StringBuilder
-
Removes the character at the specified position in this StringBuilder (shortening the StringBuilder by one character).
- deleteObserver(Observer) - Method in class java.util.Observable
-
Removes the specified observer from the list of observers.
- deleteObservers() - Method in class java.util.Observable
-
Removes all observers from the list of observers.
- Deprecated - Annotation Type in java.lang
-
An annotation for marking an element as deprecated.
- Deque<E> - Interface in java.util
-
A kind of collection that can insert or remove element at both ends("double
ended queue").
- descendingIterator() - Method in class java.util.ArrayDeque
-
Returns the iterator in reverse order, from tail to head.
- descendingIterator() - Method in interface java.util.Deque
-
Returns the iterator in reverse order, from tail to head.
- descendingIterator() - Method in class java.util.LinkedList
-
Returns the iterator in reverse order, from tail to head.
- descendingIterator() - Method in interface java.util.NavigableSet
-
Answers a descending iterator of this set.
- descendingIterator() - Method in class java.util.TreeSet
-
Answers a descending iterator of this set.
- descendingKeySet() - Method in interface java.util.NavigableMap
-
Answers a NavigableSet view of the keys in descending order.
- descendingKeySet() - Method in class java.util.TreeMap
-
Answers a NavigableSet view of the keys in descending order.
- descendingMap() - Method in interface java.util.NavigableMap
-
Answers a reverse order view of the map.
- descendingMap() - Method in class java.util.TreeMap
-
Answers a reverse order view of the map.
- descendingSet() - Method in interface java.util.NavigableSet
-
Answers a reverse order view of this set.
- descendingSet() - Method in class java.util.TreeSet
-
Answers a reverse order view of this set.
- desiredAssertionStatus() - Method in class java.lang.Class
-
- Dictionary<K,V> - Class in java.util
-
Note: Do not use this class since it is obsolete.
- Dictionary() - Constructor for class java.util.Dictionary
-
Constructs a new instance of this class.
- digit(char, int) - Static method in class java.lang.Character
-
Returns the numeric value of the character ch in the specified radix.
- disjoint(Collection<?>, Collection<?>) - Static method in class java.util.Collections
-
Returns whether the specified collections have no elements in common.
- displayName() - Method in class java.nio.charset.Charset
-
- Documented - Annotation Type in java.lang.annotation
-
- 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.
- 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.
- doubleValue() - Method in class java.lang.Byte
-
- doubleValue() - Method in class java.lang.Double
-
Returns the double value of this Double.
- 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
-
- doubleValue() - Method in class java.lang.Short
-
- dropArguments(MethodHandle, int, List<Class<?>>) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- dropArguments(MethodHandle, int, Class<?>...) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- dropParameterTypes(int, int) - Method in class java.lang.invoke.MethodType
-
Deprecated.
- dynamicInvoker() - Method in class java.lang.invoke.CallSite
-
Deprecated.
- E - Static variable in class java.lang.Math
-
The double value that is closer than any other to e, the base of the natural logarithms.
- element() - Method in class java.util.AbstractQueue
-
Returns but does not remove the element at the head of the queue.
- element() - Method in class java.util.ArrayDeque
-
Gets but does not remove the head element of this deque.
- element() - Method in class java.util.LinkedList
-
- element() - Method in interface java.util.Queue
-
Gets but does not remove the element at the head of the queue.
- elementAt(int) - Method in class java.util.Vector
-
Returns the element at the specified location in this vector.
- elementCount - Variable in class java.util.Vector
-
The number of elements or the size of the vector.
- elementData - Variable in class java.util.Vector
-
The elements of the vector.
- elementName() - Method in exception java.lang.annotation.IncompleteAnnotationException
-
- elements() - Method in class java.util.Dictionary
-
Returns an enumeration on the elements of this dictionary.
- elements() - Method in class java.util.Hashtable
-
Returns an enumeration on the values of this Hashtable.
- elements() - Method in class java.util.Vector
-
Returns an enumeration on the elements of this vector.
- ElementType - Enum in java.lang.annotation
-
A mirror of java.lang.annotation.ElementType.
- empty() - Method in class java.util.Stack
-
Returns whether the stack is empty or not.
- EMPTY_LIST - Static variable in class java.util.Collections
-
An empty immutable instance of
List.
- EMPTY_MAP - Static variable in class java.util.Collections
-
An empty immutable instance of
Map.
- EMPTY_SET - Static variable in class java.util.Collections
-
An empty immutable instance of
Set.
- emptyList() - Static method in class java.util.Collections
-
Returns a type-safe empty, immutable
List.
- emptyMap() - Static method in class java.util.Collections
-
Returns a type-safe empty, immutable
Map.
- emptySet() - Static method in class java.util.Collections
-
Returns a type-safe empty, immutable
Set.
- 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.
- endsWith(String) - Method in class java.lang.String
-
Tests if this string ends with the specified suffix.
- ensureCapacity(int) - Method in class java.lang.StringBuffer
-
Ensures that the capacity of the buffer is at least equal to the specified minimum.
- ensureCapacity(int) - Method in class java.lang.StringBuilder
-
Ensures that the capacity of the builder is at least equal to the specified minimum.
- ensureCapacity(int) - Method in class java.util.ArrayList
-
Ensures that after this operation the ArrayList can hold the
specified number of elements without further growing.
- ensureCapacity(int) - Method in class java.util.Vector
-
Ensures that this vector can hold the specified number of elements
without growing.
- entrySet() - Method in class java.util.AbstractMap
-
Returns a set containing all of the mappings in this map.
- entrySet() - Method in class java.util.HashMap
-
Returns a set containing all of the mappings in this map.
- entrySet() - Method in class java.util.Hashtable
-
Returns a set of the mappings contained in this Hashtable.
- entrySet() - Method in class java.util.IdentityHashMap
-
Returns a set containing all of the mappings in this map.
- entrySet() - Method in class java.util.LinkedHashMap
-
Returns a set containing all of the mappings in this map.
- entrySet() - Method in interface java.util.Map
-
Returns a Set containing all of the mappings in this Map.
- entrySet() - Method in class java.util.TreeMap
-
Returns a set containing all of the mappings in this map.
- Enum<E extends Enum<E>> - Class in java.lang
-
Implementation class required to compile enums
- Enum(String, int) - Constructor for class java.lang.Enum
-
- enumeration(Collection<T>) - Static method in class java.util.Collections
-
Returns an Enumeration on the specified collection.
- Enumeration<T> - Interface in java.util
-
An object that implements the Enumeration interface generates a series of elements, one at a time.
- 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 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.Double
-
Compares this object against the specified object.
- equals(Object) - Method in class java.lang.Enum
-
- equals(Object) - Method in class java.lang.Float
-
Compares this object against some other object.
- equals(Object) - Method in class java.lang.Integer
-
Compares this object to the specified object.
- equals(Object) - Method in class java.lang.Long
-
Compares this object against 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.Short
-
Compares this object to the specified object.
- equals(Object) - Method in class java.lang.String
-
Compares this string to the specified object.
- equals(Object) - Method in class java.net.URI
-
- equals(Object) - Method in class java.text.DateFormat
-
Deprecated.
- equals(Object) - Method in class java.util.AbstractList
-
Compares the specified object to this list and return true if they are
equal.
- equals(Object) - Method in class java.util.AbstractMap
-
Compares the specified object to this instance, and returns true
if the specified object is a map and both maps contain the same mappings.
- equals(Object) - Method in class java.util.AbstractMap.SimpleEntry
-
Answers whether the object is equal to this entry.
- equals(Object) - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Answers whether the object is equal to this entry.
- equals(Object) - Method in class java.util.AbstractSet
-
Compares the specified object to this Set and returns true if they are
equal.
- equals(byte[], byte[]) - Static method in class java.util.Arrays
-
Compares the two arrays.
- equals(short[], short[]) - Static method in class java.util.Arrays
-
Compares the two arrays.
- equals(char[], char[]) - Static method in class java.util.Arrays
-
Compares the two arrays.
- equals(int[], int[]) - Static method in class java.util.Arrays
-
Compares the two arrays.
- equals(long[], long[]) - Static method in class java.util.Arrays
-
Compares the two arrays.
- equals(float[], float[]) - Static method in class java.util.Arrays
-
Compares the two arrays.
- equals(double[], double[]) - Static method in class java.util.Arrays
-
Compares the two arrays.
- equals(boolean[], boolean[]) - Static method in class java.util.Arrays
-
Compares the two arrays.
- equals(Object[], Object[]) - Static method in class java.util.Arrays
-
Compares the two arrays.
- equals(Object) - Method in class java.util.BitSet
-
Compares the argument to this BitSet and returns whether they are
equal.
- 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 argument to the receiver, and returns true if they represent
the same object using a class specific comparison.
- equals(Object) - Method in interface java.util.Comparator
-
Compares this Comparator with the specified Object and indicates whether they
are equal.
- equals(Object) - Method in class java.util.Date
-
Compares two dates for equality.
- equals(Object) - Method in class java.util.Hashtable
-
Compares this Hashtable with the specified object and indicates
if they are equal.
- equals(Object) - Method in class java.util.IdentityHashMap
-
Compares this map with other objects.
- equals(Object) - Method in interface java.util.List
-
Compares the given object with the List, and returns true if they
represent the same object using a class specific comparison.
- equals(Object) - Method in interface java.util.Map.Entry
-
Compares the specified object to this Map.Entry and returns if they
are equal.
- equals(Object) - Method in interface java.util.Map
-
Compares the argument to the receiver, and returns true if the
specified object is a Map and both Maps contain the same mappings.
- 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 to this set, and returns true if they
represent the same object using a class specific comparison.
- equals(Object) - Method in class java.util.Vector
-
Compares the specified object to this vector and returns if they are
equal.
- equalsIgnoreCase(String) - Method in class java.lang.String
-
Compares this String to another String, ignoring case considerations.
- erase() - Method in class java.lang.invoke.MethodType
-
Deprecated.
- err - Static variable in class java.lang.System
-
The "standard" error output stream.
- 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 an Error with no specified detail message.
- Error(String) - Constructor for error java.lang.Error
-
Constructs an Error with the specified detail message.
- EventListener - Interface in java.util
-
EventListener is the superclass of all event listener interfaces.
- EventListenerProxy - Class in java.util
-
This abstract class provides a simple wrapper for objects of type EventListener.
- EventListenerProxy(EventListener) - Constructor for class java.util.EventListenerProxy
-
Creates a new EventListener proxy instance.
- exactInvoker(MethodType) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- 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 an Exception with no specified detail message.
- Exception(String) - Constructor for exception java.lang.Exception
-
Constructs an Exception with the specified detail message.
- Exception(Throwable) - Constructor for exception java.lang.Exception
-
Constructs a new exception with the provided cause.
- Exception(String, Throwable) - Constructor for exception java.lang.Exception
-
Constructs a new exception with message and cause.
- exit(int) - Method in class java.lang.Runtime
-
Terminates the currently running Java application.
- exit(int) - Static method in class java.lang.System
-
Terminates the currently running Java application.
- explicitCastArguments(MethodHandle, MethodType) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- 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 MONTH field indicating the second month of the year.
- fields - Variable in class java.util.Calendar
-
The field values for the currently set time for this calendar.
- fill(byte[], byte) - Static method in class java.util.Arrays
-
Fills the specified array with the specified element.
- fill(byte[], int, int, byte) - Static method in class java.util.Arrays
-
Fills the specified range in the array with the specified element.
- fill(short[], short) - Static method in class java.util.Arrays
-
Fills the specified array with the specified element.
- fill(short[], int, int, short) - Static method in class java.util.Arrays
-
Fills the specified range in the array with the specified element.
- fill(char[], char) - Static method in class java.util.Arrays
-
Fills the specified array with the specified element.
- fill(char[], int, int, char) - Static method in class java.util.Arrays
-
Fills the specified range in the array with the specified element.
- fill(int[], int) - Static method in class java.util.Arrays
-
Fills the specified array with the specified element.
- fill(int[], int, int, int) - Static method in class java.util.Arrays
-
Fills the specified range in the array with the specified element.
- fill(long[], long) - Static method in class java.util.Arrays
-
Fills the specified array with the specified element.
- fill(long[], int, int, long) - Static method in class java.util.Arrays
-
Fills the specified range in the array with the specified element.
- fill(float[], float) - Static method in class java.util.Arrays
-
Fills the specified array with the specified element.
- fill(float[], int, int, float) - Static method in class java.util.Arrays
-
Fills the specified range in the array with the specified element.
- fill(double[], double) - Static method in class java.util.Arrays
-
Fills the specified array with the specified element.
- fill(double[], int, int, double) - Static method in class java.util.Arrays
-
Fills the specified range in the array with the specified element.
- fill(boolean[], boolean) - Static method in class java.util.Arrays
-
Fills the specified array with the specified element.
- fill(boolean[], int, int, boolean) - Static method in class java.util.Arrays
-
Fills the specified range in the array with the specified element.
- fill(Object[], Object) - Static method in class java.util.Arrays
-
Fills the specified array with the specified element.
- fill(Object[], int, int, Object) - Static method in class java.util.Arrays
-
Fills the specified range in the array with the specified element.
- fill(List<? super T>, T) - Static method in class java.util.Collections
-
Fills the specified list with the specified element.
- filterArguments(MethodHandle, int, MethodHandle...) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- filterReturnValue(MethodHandle, MethodHandle) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- findConstructor(Class<?>, MethodType) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- findGetter(Class<?>, String, Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- findSetter(Class<?>, String, Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- findSpecial(Class<?>, String, MethodType, Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- findStatic(Class<?>, String, MethodType) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- findStaticGetter(Class<?>, String, Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- findStaticSetter(Class<?>, String, Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- findVirtual(Class<?>, String, MethodType) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- first() - Method in interface java.util.SortedSet
-
Returns the first element in this SortedSet.
- first() - Method in class java.util.TreeSet
-
Answers the first element in this TreeSet.
- firstElement() - Method in class java.util.Vector
-
Returns the first element in this vector.
- firstEntry() - Method in interface java.util.NavigableMap
-
Answers the entry with the smallest key, or null if the map is empty.
- firstEntry() - Method in class java.util.TreeMap
-
Answers the entry with the smallest key, or null if the map is empty.
- firstKey() - Method in interface java.util.SortedMap
-
Returns the first key in this sorted map.
- firstKey() - Method in class java.util.TreeMap
-
Returns the first key in this map.
- FLAG_BRIDGES - Static variable in class java.lang.invoke.LambdaMetafactory
-
Deprecated.
- FLAG_MARKERS - Static variable in class java.lang.invoke.LambdaMetafactory
-
Deprecated.
- FLAG_SERIALIZABLE - Static variable in class java.lang.invoke.LambdaMetafactory
-
Deprecated.
- flip(int) - Method in class java.util.BitSet
-
Flips the bit at index pos.
- flip(int, int) - Method in class java.util.BitSet
-
Flips the bits starting from pos1 to pos2.
- Float - Class in java.lang
-
The Float class wraps a value of primitive type float in an object.
- Float(double) - Constructor for class java.lang.Float
-
Constructs a newly allocated Floatobject that represents the argument converted to type float.
- Float(float) - Constructor for class java.lang.Float
-
Constructs a newly allocated Float object that represents the primitive float argument.
- floatToIntBits(float) - Static method in class java.lang.Float
-
Returns the bit representation of a single-float value.
- floatValue() - Method in class java.lang.Byte
-
- floatValue() - Method in class java.lang.Double
-
Returns the float value of this Double.
- 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
-
- floatValue() - Method in class java.lang.Short
-
- floor(double) - Static method in class java.lang.Math
-
Returns the largest (closest to positive infinity) double value that is not greater than the argument and is equal to a mathematical integer.
- floor(E) - Method in interface java.util.NavigableSet
-
Answers the biggest element less than or equal to the specified one, or
null if no such element.
- floor(E) - Method in class java.util.TreeSet
-
Answers the biggest element less than or equal to the specified one, or
null if no such element.
- floorEntry(K) - Method in interface java.util.NavigableMap
-
Answers an entry related with the biggest key less than or equal to the
specified key, or null if no such key.
- floorEntry(K) - Method in class java.util.TreeMap
-
Answers an entry related with the biggest key less than or equal to the
specified key, or null if no such key.
- floorKey(K) - Method in interface java.util.NavigableMap
-
Answers the biggest key less than or equal to the specified key, or null
if no such key.
- floorKey(K) - Method in class java.util.TreeMap
-
Answers the biggest key less than or equal to the specified key, or null
if no such key.
- flush() - Method in class java.io.DataOutputStream
-
Flushes this data output stream.
- flush() - Method in interface java.io.Flushable
-
Flushes the object by writing out any buffered data to the underlying
output.
- 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
-
Flush the stream.
- flush() - Method in class java.io.PrintStream
-
Flush the stream.
- flush() - Method in class java.io.StringWriter
-
- flush() - Method in class java.io.Writer
-
Flush the stream.
- Flushable - Interface in java.io
-
Indicates that an output object can be flushed.
- foldArguments(MethodHandle, MethodHandle) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- format(Object) - Method in class java.text.DateFormat
-
Deprecated.
Format a given object.
- format(Date) - Method in class java.text.DateFormat
-
Deprecated.
Format a given date.
- Format - Class in java.text
-
An abstract class for parsing and formatting localisation sensitive information, compatible with JDK 6.
- Format() - Constructor for class java.text.Format
-
- format(Object) - Method in class java.text.Format
-
Format an object.
- format(Date) - Method in class java.text.SimpleDateFormat
-
Deprecated.
- forName(String) - Static method in class java.lang.Class
-
- forName(String) - Method in class java.nio.charset.Charset
-
- freeMemory() - Method in class java.lang.Runtime
-
Returns the amount of free memory in the system.
- frequency(Collection<?>, Object) - Static method in class java.util.Collections
-
Returns the number of elements in the Collection that match the
Object passed.
- FRIDAY - Static variable in class java.util.Calendar
-
Value of the DAY_OF_WEEK field indicating Friday.
- FULL - Static variable in class java.text.DateFormat
-
Deprecated.
Constant for full style parsing/formatting pattern.
- gc() - Method in class java.lang.Runtime
-
Runs the garbage collector.
- gc() - Static method in class java.lang.System
-
Runs the garbage collector.
- generic() - Method in class java.lang.invoke.MethodType
-
Deprecated.
- genericMethodType(int, boolean) - Static method in class java.lang.invoke.MethodType
-
Deprecated.
- genericMethodType(int) - Static method in class java.lang.invoke.MethodType
-
Deprecated.
- get() - Method in class java.lang.ref.Reference
-
Returns this reference object's referent.
- get() - Method in class java.lang.ThreadLocal
-
- get(int) - Method in class java.util.AbstractList
-
Returns the element at the specified location in this list.
- get(Object) - Method in class java.util.AbstractMap
-
Returns the value of the mapping with the specified key.
- get(int) - Method in class java.util.AbstractSequentialList
-
- get(int) - Method in class java.util.ArrayList
-
- get(int) - Method in class java.util.BitSet
-
Retrieves the bit at index pos.
- get(int, int) - Method in class java.util.BitSet
-
Retrieves the bits starting from pos1 to pos2 and returns
back a new bitset made of these bits.
- get(int) - Method in class java.util.Calendar
-
Gets the value for a given time field.
- get(Object) - Method in class java.util.Dictionary
-
Returns the value which is associated with key.
- get(Object) - Method in class java.util.HashMap
-
Returns the value of the mapping with the specified key.
- get(Object) - Method in class java.util.Hashtable
-
Returns the value associated with the specified key in this
Hashtable.
- get(Object) - Method in class java.util.IdentityHashMap
-
Returns the value of the mapping with the specified key.
- get(Object) - Method in class java.util.LinkedHashMap
-
Returns the value of the mapping with the specified key.
- get(int) - Method in class java.util.LinkedList
-
- get(int) - Method in interface java.util.List
-
Returns the element at the specified location in this List.
- get(Object) - Method in interface java.util.Map
-
Returns the value of the mapping with the specified key.
- get(Object) - Method in class java.util.TreeMap
-
Returns the value of the mapping with the specified key.
- get(int) - Method in class java.util.Vector
-
Returns the element at the specified location in this vector.
- getAmPmStrings() - Method in class java.text.DateFormatSymbols
-
- getAnnotation(Class) - Method in class java.lang.Class
-
Returns this element's annotation for the specified type if such an annotation is present, else null.
- getAnnotations() - Method in class java.lang.Class
-
Returns all annotations present on this element.
- getAuthority() - Method in class java.net.URI
-
- getAvailableIDs() - Static method in class java.util.TimeZone
-
Gets all the available IDs supported.
- getBuffer() - Method in class java.io.StringWriter
-
- getBytes() - Method in class java.lang.String
-
Convert this String into bytes according to the platform's default character encoding, storing the result into a new byte array.
- getBytes(String) - Method in class java.lang.String
-
Convert this String into bytes according to the specified character encoding, storing the result into a new byte array.
- getBytes(Charset) - Method in class java.lang.String
-
Convert this String into bytes according to the specified character encoding, storing the result into a new byte array.
- getCanonicalName() - Method in class java.lang.Class
-
- getCause() - Method in class java.lang.Throwable
-
Returns the cause of this throwable or null if the cause is nonexistent or unknown.
- 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
-
Characters are copied from this string buffer into the destination character array dst.
- getChars(int, int, char[], int) - Method in class java.lang.StringBuilder
-
Characters are copied from this string builder into the destination character array dst.
- getClass() - Method in class java.lang.Object
-
Returns the runtime class of an object.
- getClassLoader() - Method in class java.lang.Class
-
- getClassName() - Method in class java.lang.StackTraceElement
-
- getComponentType() - Method in class java.lang.Class
-
Gets for Array classes, this returns the type of the elements of the array.
- getDateFormatSymbols() - Method in class java.text.SimpleDateFormat
-
Deprecated.
Get the date format symbols for parsing/formatting textual components of
dates in a localization sensitive way.
- getDateInstance() - Static method in class java.text.DateFormat
-
Deprecated.
Get a DateFormat instance with default style for date (SHORT).
- getDateInstance(int) - Static method in class java.text.DateFormat
-
Deprecated.
Get a DateFormat instance that uses a given style for dates.
- getDateTimeInstance(int, int) - Static method in class java.text.DateFormat
-
Deprecated.
Get a DateFormat instance that uses a given style for dates and times.
- getDeclaredAnnotations() - Method in class java.lang.Class
-
Returns all annotations that are directly present on this element.
- getDeclaringClass() - Method in class java.lang.Enum
-
- getDefault() - Static method in class java.util.TimeZone
-
Gets the default TimeZone for this host.
- getEnclosingConstructor() - Method in class java.lang.Class
-
- getEnclosingMethod() - Method in class java.lang.Class
-
- getEnumValues(Class<T>) - Static method in class java.lang.Enum
-
- getEras() - Method in class java.text.DateFormatSymbols
-
- getErrorOffset() - Method in exception java.text.ParseException
-
- getFileName() - Method in class java.lang.StackTraceElement
-
- getFirst() - Method in class java.util.ArrayDeque
-
Gets but not removes the head element of this deque.
- getFirst() - Method in interface java.util.Deque
-
Gets but not removes the head element of this deque.
- getFirst() - Method in class java.util.LinkedList
-
Returns the first element in this LinkedList.
- getFragment() - Method in class java.net.URI
-
Get the decoded fragment (otherwise known as the "reference" or
"anchor") part of the uri.
- getGenericInterfaces() - Method in class java.lang.Class
-
- getHost() - Method in class java.net.URI
-
Get the host name part of the URI.
- getID() - Method in class java.util.TimeZone
-
Gets the ID of this time zone.
- getIndex() - Method in exception java.net.URISyntaxException
-
- getInput() - Method in exception java.net.URISyntaxException
-
- getInstance() - Static method in class java.text.DateFormat
-
Deprecated.
Get a DateFormat instance with default style for date/time (SHORT/SHORT).
- getInstance() - Static method in class java.util.Calendar
-
Gets a calendar using the default time zone.
- getInstance(TimeZone) - Static method in class java.util.Calendar
-
Gets a calendar using the specified time zone.
- getKey() - Method in class java.util.AbstractMap.SimpleEntry
-
Returns the key.
- getKey() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Returns the key.
- getKey() - Method in interface java.util.Map.Entry
-
Returns the key.
- getLast() - Method in class java.util.ArrayDeque
-
Gets but not removes the tail element of this deque.
- getLast() - Method in interface java.util.Deque
-
Gets but not removes the tail element of this deque.
- getLast() - Method in class java.util.LinkedList
-
Returns the last element in this LinkedList.
- getLineNumber() - Method in class java.lang.StackTraceElement
-
- getListener() - Method in class java.util.EventListenerProxy
-
Returns the wrapped EventListener.
- getLocalizedMessage() - Method in class java.lang.Throwable
-
- getMessage() - Method in class java.lang.Throwable
-
Returns the error message string of this Throwable object.
- getMethodName() - Method in class java.lang.StackTraceElement
-
- getMonths() - Method in class java.text.DateFormatSymbols
-
- getName() - Method in class java.lang.Class
-
- getName() - Method in class java.lang.reflect.Constructor
-
- getName() - Method in class java.lang.reflect.Method
-
- getName() - Method in class java.lang.Thread
-
Returns this thread's name.
- getOffset(int, int, int, int, int, int) - Method in class java.util.TimeZone
-
Gets offset, for current date, modified in case of daylight savings.
- getParent() - Method in class java.lang.ClassLoader
-
- getPath() - Method in class java.net.URI
-
Get the decoded path part of the uri.
- getPort() - Method in class java.net.URI
-
Get the port number for this URI.
- getPriority() - Method in class java.lang.Thread
-
Returns this thread's priority.
- getProperty(String) - Static method in class java.lang.System
-
Gets the system property indicated by the specified key.
- getQuery() - Method in class java.net.URI
-
Get the decoded query part of the uri.
- getRawAuthority() - Method in class java.net.URI
-
- getRawFragment() - Method in class java.net.URI
-
Get the encoded fragment (otherwise known as the "reference" or
"anchor") part of the uri.
- getRawOffset() - Method in class java.util.TimeZone
-
Gets the GMT offset for this time zone.
- getRawPath() - Method in class java.net.URI
-
Get the encoded path part of the uri.
- getRawQuery() - Method in class java.net.URI
-
Get the encoded query part of the uri.
- getRawSchemeSpecificPart() - Method in class java.net.URI
-
- getRawUserInfo() - Method in class java.net.URI
-
- getReason() - Method in exception java.net.URISyntaxException
-
- getResourceAsStream(String) - Method in class java.lang.ClassLoader
-
- getResourceBundle() - Method in class java.text.DateFormatSymbols
-
- getRuntime() - Static method in class java.lang.Runtime
-
Returns the runtime object associated with the current Java application.
- getScheme() - Method in class java.net.URI
-
Get the scheme part of the URI.
- getSchemeSpecificPart() - Method in class java.net.URI
-
- getShortMonths() - Method in class java.text.DateFormatSymbols
-
- getShortWeekdays() - Method in class java.text.DateFormatSymbols
-
- getSimpleName() - Method in class java.lang.Class
-
- getStackTrace() - Method in class java.lang.Thread
-
- getStackTrace() - Method in class java.lang.Throwable
-
- getSuppressed() - Method in class java.lang.Throwable
-
- getSystemClassLoader() - Static method in class java.lang.ClassLoader
-
- getSystemResourceAsStream(String) - Static method in class java.lang.ClassLoader
-
- getTarget() - Method in class java.lang.invoke.CallSite
-
Deprecated.
- getTime() - Method in class java.util.Calendar
-
Gets this Calendar's current time.
- 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
-
Gets this Calendar's current time as a long expressed in milliseconds after January 1, 1970, 0:00:00 GMT (the epoch).
- getTimeInstance() - Static method in class java.text.DateFormat
-
Deprecated.
Get a DateFormat instance with default style for time (SHORT).
- getTimeInstance(int) - Static method in class java.text.DateFormat
-
Deprecated.
Get a DateFormat instance that uses a given style for times.
- 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.
- getUserInfo() - Method in class java.net.URI
-
- getValue() - Method in class java.util.AbstractMap.SimpleEntry
-
Returns the value.
- getValue() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Returns the value.
- getValue() - Method in interface java.util.Map.Entry
-
Returns the value.
- getWeekdays() - Method in class java.text.DateFormatSymbols
-
- getZoneStrings() - Method in class java.text.DateFormatSymbols
-
- guardWithTest(MethodHandle, MethodHandle, MethodHandle) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- hasChanged() - Method in class java.util.Observable
-
Returns the changed flag for this Observable.
- hash(Object...) - Static method in class java.util.Objects
-
- 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 hashcode for this Byte.
- hashCode() - Method in class java.lang.Character
-
Returns a hash code for this Character.
- hashCode() - Method in class java.lang.Double
-
Returns a hashcode for this Double object.
- hashCode() - Method in class java.lang.Enum
-
- hashCode() - Method in class java.lang.Float
-
Returns a hashcode for this Float object.
- hashCode() - Method in class java.lang.Integer
-
Returns a hashcode for this Integer.
- hashCode() - Method in class java.lang.Long
-
Computes a hashcode for this Long.
- hashCode() - Method in class java.lang.Object
-
Returns a hash code value for the object.
- hashCode() - Method in class java.lang.Short
-
Returns a hashcode for this Short.
- hashCode() - Method in class java.lang.String
-
Returns a hashcode for this string.
- hashCode() - Method in class java.net.URI
-
- hashCode() - Method in class java.text.DateFormat
-
Deprecated.
- hashCode() - Method in class java.util.AbstractList
-
Returns the hash code of this list.
- hashCode() - Method in class java.util.AbstractMap
-
Returns the hash code for this object.
- hashCode() - Method in class java.util.AbstractMap.SimpleEntry
-
Answers the hash code of this entry.
- hashCode() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Answers the hash code of this entry.
- hashCode() - Method in class java.util.AbstractSet
-
Returns the hash code for this set.
- hashCode(boolean[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the given array.
- hashCode(int[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the given array.
- hashCode(short[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the given array.
- hashCode(char[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the given array.
- hashCode(byte[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the given array.
- hashCode(long[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the given array.
- hashCode(float[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the given array.
- hashCode(double[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the given array.
- hashCode(Object[]) - Static method in class java.util.Arrays
-
Returns a hash code based on the contents of the given array.
- hashCode() - Method in class java.util.BitSet
-
Computes the hash code for this BitSet.
- hashCode() - Method in interface java.util.Collection
-
Returns an integer hash code for the receiver.
- hashCode() - Method in class java.util.Date
-
Returns a hash code value for this object.
- hashCode() - Method in class java.util.Hashtable
-
- hashCode() - Method in interface java.util.List
-
Returns the hash code for this List.
- hashCode() - Method in interface java.util.Map.Entry
-
Returns an integer hash code for the receiver.
- hashCode() - Method in interface java.util.Map
-
Returns an integer hash code for the receiver.
- 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 for this set.
- hashCode() - Method in class java.util.Vector
-
Returns an integer hash code for the receiver.
- HashMap<K,V> - Class in java.util
-
HashMap is an implementation of Map.
- HashMap() - Constructor for class java.util.HashMap
-
Constructs a new empty HashMap instance.
- HashMap(int) - Constructor for class java.util.HashMap
-
Constructs a new HashMap instance with the specified capacity.
- HashMap(int, float) - Constructor for class java.util.HashMap
-
Constructs a new HashMap instance with the specified capacity and
load factor.
- HashMap(Map<? extends K, ? extends V>) - Constructor for class java.util.HashMap
-
Constructs a new HashMap instance containing the mappings from
the specified map.
- HashSet<E> - Class in java.util
-
HashSet is an implementation of a Set.
- HashSet() - Constructor for class java.util.HashSet
-
Constructs a new empty instance of HashSet.
- HashSet(int) - Constructor for class java.util.HashSet
-
Constructs a new instance of HashSet with the specified capacity.
- HashSet(int, float) - Constructor for class java.util.HashSet
-
Constructs a new instance of HashSet with the specified capacity
and load factor.
- HashSet(Collection<? extends E>) - Constructor for class java.util.HashSet
-
Constructs a new instance of HashSet containing the unique
elements in the specified collection.
- Hashtable<K,V> - Class in java.util
-
Hashtable associates keys with values.
- Hashtable() - Constructor for class java.util.Hashtable
-
Constructs a new Hashtable using the default capacity and load
factor.
- Hashtable(int) - Constructor for class java.util.Hashtable
-
Constructs a new Hashtable using the specified capacity and the
default load factor.
- Hashtable(int, float) - Constructor for class java.util.Hashtable
-
Constructs a new Hashtable using the specified capacity and load
factor.
- Hashtable(Map<? extends K, ? extends V>) - Constructor for class java.util.Hashtable
-
Constructs a new instance of Hashtable containing the mappings
from the specified map.
- hasMoreElements() - Method in interface java.util.Enumeration
-
Tests if this enumeration contains more elements.
- hasMoreElements() - Method in class java.util.StringTokenizer
-
Returns true if unprocessed tokens remain.
- hasMoreTokens() - Method in class java.util.StringTokenizer
-
Returns true if unprocessed tokens remain.
- hasNext() - Method in interface java.util.Iterator
-
Returns whether there are more elements to iterate, i.e.
- hasNext() - Method in interface java.util.ListIterator
-
Returns whether there are more elements to iterate.
- hasPrevious() - Method in interface java.util.ListIterator
-
Returns whether there are previous elements to iterate.
- hasPrimitives() - Method in class java.lang.invoke.MethodType
-
Deprecated.
- hasWrappers() - Method in class java.lang.invoke.MethodType
-
Deprecated.
- headMap(K, boolean) - Method in interface java.util.NavigableMap
-
Answers a view of the head of the map whose keys are smaller than (or
equal to, depends on inclusive argument) endKey.
- headMap(K) - Method in interface java.util.SortedMap
-
Returns a sorted map over a range of this sorted map with all keys that
are less than the specified endKey.
- headMap(K, boolean) - Method in class java.util.TreeMap
-
Answers a view of the head of the map whose keys are smaller than (or
equal to, depends on inclusive argument) endKey.
- headMap(K) - Method in class java.util.TreeMap
-
Returns a sorted map over a range of this sorted map with all keys that
are less than the specified endKey.
- headSet(E, boolean) - Method in interface java.util.NavigableSet
-
Answers a NavigableSet of the specified portion of this set which
contains elements less than (or equal to, depends on endInclusive) the
end element.
- headSet(E) - Method in interface java.util.SortedSet
-
Returns a SortedSet of the specified portion of this
SortedSet which contains elements less than the end element.
- headSet(E, boolean) - Method in class java.util.TreeSet
-
Answers a NavigableSet of the specified portion of this set which
contains elements less than (or equal to, depends on endInclusive) the
end element.
- headSet(E) - Method in class java.util.TreeSet
-
Answers a SortedSet of the specified portion of this TreeSet which
contains elements less than the end element.
- higher(E) - Method in interface java.util.NavigableSet
-
Answers the smallest element bigger than the specified one, or null if no
such element.
- higher(E) - Method in class java.util.TreeSet
-
Answers the smallest element bigger than the specified one, or null if no
such element.
- higherEntry(K) - Method in interface java.util.NavigableMap
-
Answers an entry related with the smallest key greater than the specified
key, or null if no such key.
- higherEntry(K) - Method in class java.util.TreeMap
-
Answers an entry related with the smallest key greater than the specified
key, or null if no such key.
- higherKey(K) - Method in interface java.util.NavigableMap
-
Answers the smallest key greater than the specified key, or null if no
such key.
- higherKey(K) - Method in class java.util.TreeMap
-
Answers the smallest key greater than the specified key, or null if no
such key.
- HOUR - Static variable in class java.util.Calendar
-
Field number for get and set indicating the hour of the morning or afternoon.
- HOUR_OF_DAY - Static variable in class java.util.Calendar
-
Field number for get and set indicating the hour of the day.
- identity(Class<?>) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- identityHashCode(Object) - Static method in class java.lang.System
-
Returns the same hashcode for the given object as would be returned by the default method hashCode(), whether or not the given object's class overrides hashCode().
- IdentityHashMap<K,V> - Class in java.util
-
IdentityHashMap is a variant on HashMap which tests equality by reference
instead of equality by value.
- IdentityHashMap() - Constructor for class java.util.IdentityHashMap
-
Creates an IdentityHashMap with default expected maximum size.
- IdentityHashMap(int) - Constructor for class java.util.IdentityHashMap
-
Creates an IdentityHashMap with the specified maximum size parameter.
- IdentityHashMap(Map<? extends K, ? extends V>) - Constructor for class java.util.IdentityHashMap
-
Creates an IdentityHashMap using the given map as initial values.
- IllegalAccessException - Exception in java.lang
-
Thrown when an application tries to load in a class, but the currently executing method does not have access to the definition of the specified class, because the class is not public and in another package.
- 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.
- 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
-
- IllegalStateException() - Constructor for exception java.lang.IllegalStateException
-
- IllegalStateException(String) - Constructor for exception java.lang.IllegalStateException
-
- IllegalThreadStateException - Exception in java.lang
-
Thrown to indicate that a thread is not in an appropriate state for the requested operation.
- IllegalThreadStateException() - Constructor for exception java.lang.IllegalThreadStateException
-
Constructs an IllegalThreadStateException with no detail message.
- IllegalThreadStateException(String) - Constructor for exception java.lang.IllegalThreadStateException
-
Constructs an IllegalThreadStateException with the specified detail message.
- in - Variable in class java.io.DataInputStream
-
The input stream.
- in(Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- IncompatibleClassChangeError - Error in java.lang
-
IncompatibleClassChangeError is the superclass of all classes which
represent errors that occur when inconsistent class files are loaded into
the same running image.
- IncompatibleClassChangeError() - Constructor for error java.lang.IncompatibleClassChangeError
-
Constructs a new IncompatibleClassChangeError that includes the
current stack trace.
- IncompatibleClassChangeError(String) - Constructor for error java.lang.IncompatibleClassChangeError
-
Constructs a new IncompatibleClassChangeError with the current
stack trace and the specified detail message.
- IncompleteAnnotationException - Exception in java.lang.annotation
-
A mirror of java.lang.annotation.IncompleteAnnotationException.
- IncompleteAnnotationException(Class<? extends Annotation>, String) - Constructor for exception java.lang.annotation.IncompleteAnnotationException
-
- 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(Object) - Method in class java.util.AbstractList
-
Searches this list for the specified object and returns the index of the
first occurrence.
- indexOf(Object) - Method in class java.util.ArrayList
-
- indexOf(Object) - Method in class java.util.LinkedList
-
- indexOf(Object) - Method in interface java.util.List
-
Searches this List for the specified object and returns the index of the
first occurrence.
- indexOf(Object) - Method in class java.util.Vector
-
Searches in this vector for the index of the specified object.
- indexOf(Object, int) - Method in class java.util.Vector
-
Searches in this vector for the index of the specified object.
- indexOfSubList(List<?>, List<?>) - Static method in class java.util.Collections
-
Searches the list for sublist and returns the beginning
index of the first 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.
- Inherited - Annotation Type in java.lang.annotation
-
- initCause(Throwable) - Method in class java.lang.Throwable
-
- initialValue() - Method in class java.lang.ThreadLocal
-
- 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 translates them into characters.
- InputStreamReader(InputStream) - Constructor for class java.io.InputStreamReader
-
Create an InputStreamReader that uses the default character encoding.
- InputStreamReader(InputStream, String) - Constructor for class java.io.InputStreamReader
-
Create an InputStreamReader that uses the named character encoding.
- insert(int, boolean) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the boolean argument into this string buffer.
- insert(int, char) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the char argument into this string buffer.
- insert(int, double) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the double argument into this string buffer.
- insert(int, float) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the float argument into this string buffer.
- insert(int, int) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the second int argument into this string buffer.
- insert(int, long) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the long argument into this string buffer.
- insert(int, Object) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the Object argument into this string buffer.
- insert(int, String) - Method in class java.lang.StringBuffer
-
Inserts the string into this string buffer.
- 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.StringBuilder
-
Inserts the string representation of the boolean argument into this string builder.
- insert(int, char) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the char argument into this string builder.
- insert(int, double) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the double argument into this string builder.
- insert(int, float) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the float argument into this string builder.
- insert(int, int) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the second int argument into this string builder.
- insert(int, long) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the long argument into this string builder.
- insert(int, Object) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the Object argument into this string builder.
- insert(int, String) - Method in class java.lang.StringBuilder
-
Inserts the string into this string builder.
- insert(int, CharSequence) - Method in class java.lang.StringBuilder
-
- insert(int, CharSequence, int, int) - Method in class java.lang.StringBuilder
-
- insertArguments(MethodHandle, int, Object...) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- insertElementAt(E, int) - Method in class java.util.Vector
-
Inserts the specified object into this vector at the specified location.
- insertParameterTypes(int, Class<?>...) - Method in class java.lang.invoke.MethodType
-
Deprecated.
- insertParameterTypes(int, List<Class<?>>) - Method in class java.lang.invoke.MethodType
-
Deprecated.
- 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 because it is an interface or is an abstract class.
- 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 single-float 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 primitive int argument.
- intern() - Method in class java.lang.String
-
Returns a canonical representation for the string object.
- interrupt() - Method in class java.lang.Thread
-
Interrupts this thread.
- InterruptedException - Exception in java.lang
-
Thrown when a thread is waiting, sleeping, or otherwise paused for a long time and another thread interrupts it.
- 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
-
Checks if these two BitSets have at least one bit set to true in the same
position.
- intValue() - Method in class java.lang.Byte
-
- intValue() - Method in class java.lang.Double
-
Returns the integer value of this Double (by casting to an int).
- intValue() - Method in class java.lang.Float
-
Returns the integer value of this Float (by casting to an 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 value.
- intValue() - Method in class java.lang.Number
-
- intValue() - Method in class java.lang.Short
-
- invoke(Object...) - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- invokeExact(Object...) - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- invoker(MethodType) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- invokeWithArguments(Object...) - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- invokeWithArguments(List<?>) - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- 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(Throwable) - Constructor for exception java.io.IOException
-
Constructs an IOException with the specified cause.
- IOException(String, Throwable) - Constructor for exception java.io.IOException
-
Constructs an IOException with the specified detail message and cause.
- isAbsolute() - Method in class java.net.URI
-
- isAlive() - Method in class java.lang.Thread
-
Tests if this thread is alive.
- isAnnotation() - Method in class java.lang.Class
-
- isAnnotationPresent(Class) - Method in class java.lang.Class
-
Returns true if an annotation for the specified type is present on this element, else false.
- isAnonymousClass() - Method in class java.lang.Class
-
replacement for Class.isAnonymousClass()
- 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.
- isDigit(char) - Static method in class java.lang.Character
-
Determines if the specified character is a digit.
- isEmpty() - Method in class java.lang.String
-
Checks if string is empty.
- isEmpty() - Method in class java.util.AbstractCollection
-
Returns if this Collection contains no elements.
- isEmpty() - Method in class java.util.AbstractMap
-
Returns whether this map is empty.
- isEmpty() - Method in class java.util.ArrayDeque
-
Returns true if the deque has no elements.
- isEmpty() - Method in class java.util.ArrayList
-
- isEmpty() - Method in class java.util.BitSet
-
Returns true if all the bits in this BitSet are set to false.
- isEmpty() - Method in interface java.util.Collection
-
Returns if this Collection contains no elements.
- isEmpty() - Method in class java.util.Dictionary
-
Returns true if this dictionary has no key/value pairs.
- isEmpty() - Method in class java.util.HashMap
-
Returns whether this map is empty.
- isEmpty() - Method in class java.util.HashSet
-
Returns true if this HashSet has no elements, false otherwise.
- isEmpty() - Method in class java.util.Hashtable
-
Returns true if this Hashtable has no key/value pairs.
- isEmpty() - Method in class java.util.IdentityHashMap
-
Returns whether this IdentityHashMap has no elements.
- isEmpty() - Method in interface java.util.List
-
Returns whether this List contains no elements.
- isEmpty() - Method in interface java.util.Map
-
Returns whether this map is empty.
- isEmpty() - Method in interface java.util.Set
-
Returns true if this set has no elements.
- isEmpty() - Method in class java.util.TreeSet
-
Returns true if this TreeSet has no element, otherwise false.
- isEmpty() - Method in class java.util.Vector
-
Returns if this vector has no elements, a size of zero.
- isEnum() - Method in class java.lang.Class
-
Replacement for Class.isEnum().
- isHighSurrogate(char) - Static method in class java.lang.Character
-
A test for determining if the char is a high
surrogate/leading surrogate unit that's used for representing
supplementary characters in UTF-16 encoding.
- isInfinite() - Method in class java.lang.Double
-
Returns true if this Double value is infinitely large in magnitude.
- isInfinite(double) - Static method in class java.lang.Double
-
Returns true if the specified number is infinitely large in magnitude.
- isInfinite() - Method in class java.lang.Float
-
Returns true if this Float value is infinitely large in magnitude.
- isInfinite(float) - Static method in class java.lang.Float
-
Returns true if the specified number is infinitely large in magnitude.
- 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.
- isLocalClass() - Method in class java.lang.Class
-
- 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
-
A test for determining if the char is a high
surrogate/leading surrogate unit that's used for representing
supplementary characters in UTF-16 encoding.
- isNaN() - Method in class java.lang.Double
-
Returns true if this Double value is the special Not-a-Number (NaN) value.
- isNaN(double) - Static method in class java.lang.Double
-
Returns true if the specified number is the special Not-a-Number (NaN) value.
- isNaN() - Method in class java.lang.Float
-
Returns true if this Float value is Not-a-Number (NaN).
- isNaN(float) - Static method in class java.lang.Float
-
Returns true if the specified number is the special Not-a-Number (NaN) value.
- isNativeMethod() - Method in class java.lang.StackTraceElement
-
- ISO8601 - Static variable in class java.text.DateFormatPatterns
-
Pattern for parsing/formatting ISO8601 timestamp.
- isOpaque() - Method in class java.net.URI
-
- isPrimitive() - Method in class java.lang.Class
-
Returns true if this class is a primitive type.
- isSet - Variable in class java.util.Calendar
-
The flags which tell if a specified time field for the calendar is set.
- isSpace(char) - Static method in class java.lang.Character
-
- isSpaceChar(char) - Static method in class java.lang.Character
-
- isSupplementaryCodePoint(int) - Static method in class java.lang.Character
-
A test for determining if the codePoint is within the
supplementary code point range.
- isSurrogatePair(char, char) - Static method in class java.lang.Character
-
A test for determining if the char pair is a valid
surrogate pair.
- isSynthetic() - Method in class java.lang.Class
-
replacement for Class.isSynthetic()
- 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
-
A test for determining if the codePoint is a valid Unicode
code point.
- isVarargsCollector() - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- isWhitespace(char) - Static method in class java.lang.Character
-
- isWhitespace(int) - Static method in class java.lang.Character
-
Returns true if the given code point is a Unicode whitespace character.
- Iterable<T> - Interface in java.lang
-
Objects of classes that implement this interface can be used within a
foreach statement.
- iterator() - Method in interface java.lang.Iterable
-
Returns an
Iterator for the elements in this object.
- iterator() - Method in class java.util.AbstractCollection
-
Returns an instance of
Iterator that may be used to access the
objects contained by this
Collection.
- iterator() - Method in class java.util.AbstractList
-
Returns an iterator on the elements of this list.
- iterator() - Method in class java.util.AbstractSequentialList
-
- iterator() - Method in class java.util.ArrayDeque
-
Returns the iterator of the deque.
- iterator() - Method in interface java.util.Collection
-
Returns an instance of
Iterator that may be used to access the
objects contained by this
Collection.
- iterator() - Method in class java.util.HashSet
-
Returns an Iterator on the elements of this HashSet.
- Iterator<E> - Interface in java.util
-
An Iterator is used to sequence over a collection of objects.
- iterator() - Method in interface java.util.List
-
Returns an iterator on the elements of this List.
- iterator() - Method in class java.util.PriorityQueue
-
Gets the iterator of the priority queue, which will not return elements
in any specified ordering.
- iterator() - Method in interface java.util.Set
-
Returns an iterator on the elements of this set.
- iterator() - Method in class java.util.TreeSet
-
Returns an Iterator on the elements of this TreeSet.
- LambdaMetafactory - Class in java.lang.invoke
-
- LambdaMetafactory() - Constructor for class java.lang.invoke.LambdaMetafactory
-
Deprecated.
- last() - Method in interface java.util.SortedSet
-
Returns the last element in this SortedSet.
- last() - Method in class java.util.TreeSet
-
Answers the last element in this TreeSet.
- lastElement() - Method in class java.util.Vector
-
Returns the last element in this vector.
- lastEntry() - Method in interface java.util.NavigableMap
-
Answers the entry with the biggest key, or null if the map is empty.
- lastEntry() - Method in class java.util.TreeMap
-
Answers the entry with the biggest key, or null if the map is empty.
- 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
-
Searches in this string for the last index of the specified string.
- lastIndexOf(String, int) - Method in class java.lang.String
-
Searches in this string for the index of the specified string.
- lastIndexOf(Object) - Method in class java.util.AbstractList
-
Searches this list for the specified object and returns the index of the
last occurrence.
- lastIndexOf(Object) - Method in class java.util.ArrayList
-
- lastIndexOf(Object) - Method in class java.util.LinkedList
-
Searches this LinkedList for the specified object and returns the
index of the last occurrence.
- lastIndexOf(Object) - Method in interface java.util.List
-
Searches this List for the specified object and returns the index of the
last occurrence.
- lastIndexOf(Object) - Method in class java.util.Vector
-
Searches in this vector for the index of the specified object.
- lastIndexOf(Object, int) - Method in class java.util.Vector
-
Searches in this vector for the index of the specified object.
- lastIndexOfSubList(List<?>, List<?>) - Static method in class java.util.Collections
-
Searches the list for sublist and returns the beginning
index of the last occurrence.
- lastKey() - Method in interface java.util.SortedMap
-
Returns the last key in this sorted map.
- lastKey() - Method in class java.util.TreeMap
-
Returns the last key in this map.
- length() - Method in interface java.lang.CharSequence
-
Returns the number of characters in this sequence.
- length() - Method in class java.lang.String
-
Returns the length of this string.
- length() - Method in class java.lang.StringBuffer
-
Returns the length (character count) of this string buffer.
- length() - Method in class java.lang.StringBuilder
-
Returns the length (character count) of this string builder.
- length() - Method in class java.util.BitSet
-
Returns the number of bits up to and including the highest bit set.
- LinkageError - Error in java.lang
-
LinkageError is the superclass of all error classes that occur when
loading and linking class files.
- LinkageError() - Constructor for error java.lang.LinkageError
-
Constructs a new LinkageError that includes the current stack
trace.
- LinkageError(String) - Constructor for error java.lang.LinkageError
-
Constructs a new LinkageError with the current stack trace and
the specified detail message.
- LinkedHashMap<K,V> - Class in java.util
-
LinkedHashMap is a variant of HashMap.
- LinkedHashMap() - Constructor for class java.util.LinkedHashMap
-
Constructs a new empty LinkedHashMap instance.
- LinkedHashMap(int) - Constructor for class java.util.LinkedHashMap
-
Constructs a new LinkedHashMap instance with the specified
capacity.
- LinkedHashMap(int, float) - Constructor for class java.util.LinkedHashMap
-
Constructs a new LinkedHashMap instance with the specified
capacity and load factor.
- LinkedHashMap(int, float, boolean) - Constructor for class java.util.LinkedHashMap
-
Constructs a new LinkedHashMap instance with the specified
capacity, load factor and a flag specifying the ordering behavior.
- LinkedHashMap(Map<? extends K, ? extends V>) - Constructor for class java.util.LinkedHashMap
-
Constructs a new LinkedHashMap instance containing the mappings
from the specified map.
- LinkedHashSet<E> - Class in java.util
-
LinkedHashSet is a variant of HashSet.
- LinkedHashSet() - Constructor for class java.util.LinkedHashSet
-
Constructs a new empty instance of LinkedHashSet.
- LinkedHashSet(int) - Constructor for class java.util.LinkedHashSet
-
Constructs a new instance of LinkedHashSet with the specified
capacity.
- LinkedHashSet(int, float) - Constructor for class java.util.LinkedHashSet
-
Constructs a new instance of LinkedHashSet with the specified
capacity and load factor.
- LinkedHashSet(Collection<? extends E>) - Constructor for class java.util.LinkedHashSet
-
Constructs a new instance of LinkedHashSet containing the unique
elements in the specified collection.
- LinkedList<E> - Class in java.util
-
LinkedList is an implementation of List, backed by a linked list.
- LinkedList() - Constructor for class java.util.LinkedList
-
Constructs a new empty instance of LinkedList.
- LinkedList(Collection<? extends E>) - Constructor for class java.util.LinkedList
-
Constructs a new instance of LinkedList that holds all of the
elements contained in the specified collection.
- list(Enumeration<T>) - Static method in class java.util.Collections
-
Returns an ArrayList with all the elements in the enumeration.
- List<E> - Interface in java.util
-
A List is a collection which maintains an ordering for its elements.
- listIterator() - Method in class java.util.AbstractList
-
Returns a ListIterator on the elements of this list.
- listIterator(int) - Method in class java.util.AbstractList
-
Returns a list iterator on the elements of this list.
- listIterator(int) - Method in class java.util.AbstractSequentialList
-
- listIterator(int) - Method in class java.util.LinkedList
-
Returns a ListIterator on the elements of this LinkedList.
- listIterator() - Method in interface java.util.List
-
Returns a List iterator on the elements of this List.
- listIterator(int) - Method in interface java.util.List
-
Returns a list iterator on the elements of this List.
- ListIterator<E> - Interface in java.util
-
An ListIterator is used to sequence over a List of objects.
- 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.
- 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 primitive long argument.
- LONG - Static variable in class java.text.DateFormat
-
Deprecated.
Constant for long style parsing/formatting pattern.
- longBitsToDouble(long) - Static method in class java.lang.Double
-
Returns the double-float corresponding to a given bit representation.
- longValue() - Method in class java.lang.Byte
-
- longValue() - Method in class java.lang.Double
-
Returns the long value of this Double (by casting to a long).
- longValue() - Method in class java.lang.Float
-
Returns the long value of this Float (by casting to a 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
-
- longValue() - Method in class java.lang.Short
-
- lookup() - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- Lookup() - Constructor for class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- lookupClass() - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- lookupModes() - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- lower(E) - Method in interface java.util.NavigableSet
-
Answers the biggest element less than the specified one, or null if no
such element.
- lower(E) - Method in class java.util.TreeSet
-
Answers the biggest element less than the specified one, or null if no
such element.
- lowerEntry(K) - Method in interface java.util.NavigableMap
-
Answers an entry related with the biggest key less than the specified
key, or null if no such key.
- lowerEntry(K) - Method in class java.util.TreeMap
-
Answers an entry related with the biggest key less than the specified
key, or null if no such key.
- lowerKey(K) - Method in interface java.util.NavigableMap
-
Answers the biggest key less than the specified key, or null if no such
key.
- lowerKey(K) - Method in class java.util.TreeMap
-
Answers the biggest key less than the specified key, or null if no such
key.
- Map<K,V> - Interface in java.util
-
A Map is a data structure consisting of a set of keys and values
in which each key is mapped to a single value.
- Map.Entry<K,V> - Interface in java.util
-
Map.Entry is a key/value mapping contained in a Map.
- MARCH - Static variable in class java.util.Calendar
-
Value of the MONTH field indicating the third month of the year.
- mark - Variable in class java.io.ByteArrayInputStream
-
The currently marked position in the stream.
- mark(int) - Method in class java.io.ByteArrayInputStream
-
Set the current marked position in the stream.
- mark(int) - Method in class java.io.DataInputStream
-
Marks the current position in this input stream.
- mark(int) - Method in class java.io.InputStream
-
Marks the current position in this input stream.
- mark(int) - Method in class java.io.InputStreamReader
-
Mark the present position in the stream.
- mark(int) - Method in class java.io.Reader
-
Mark the present position in the stream.
- mark(int) - Method in class java.io.StringReader
-
Sets a mark position in this reader.
- markSupported() - Method in class java.io.ByteArrayInputStream
-
Tests if ByteArrayInputStream supports mark/reset.
- markSupported() - Method in class java.io.DataInputStream
-
Tests if this input stream supports the mark and reset methods.
- markSupported() - Method in class java.io.InputStream
-
Tests if this input stream supports the mark and reset methods.
- markSupported() - Method in class java.io.InputStreamReader
-
Tell whether this stream supports the mark() operation.
- markSupported() - Method in class java.io.Reader
-
Tell whether this stream supports the mark() operation.
- markSupported() - Method in class java.io.StringReader
-
Indicates whether this reader supports the mark() and reset() methods.
- Math - Class in java.lang
-
The class Math contains methods for performing basic numeric operations.
- Math() - Constructor for class java.lang.Math
-
- max(double, double) - Static method in class java.lang.Math
-
Returns the greater of two double values.
- max(float, float) - Static method in class java.lang.Math
-
Returns the greater of two float values.
- max(int, int) - Static method in class java.lang.Math
-
Returns the greater of two int values.
- max(long, long) - Static method in class java.lang.Math
-
Returns the greater of two long values.
- max(Collection<? extends T>) - Static method in class java.util.Collections
-
Searches the specified collection for the maximum element.
- max(Collection<? extends T>, Comparator<? super T>) - Static method in class java.util.Collections
-
Searches the specified collection for the maximum element using the
specified comparator.
- MAX_CODE_POINT - Static variable in class java.lang.Character
-
Maximum code point value - U+10FFFF.
- MAX_HIGH_SURROGATE - Static variable in class java.lang.Character
-
Maximum value of a high surrogate or leading surrogate unit in UTF-16
encoding - '?'.
- MAX_LOW_SURROGATE - Static variable in class java.lang.Character
-
Maximum value of a low surrogate or trailing surrogate unit in UTF-16
encoding - '?'.
- MAX_PRIORITY - Static variable in class java.lang.Thread
-
The maximum priority that a thread can have.
- MAX_RADIX - Static variable in class java.lang.Character
-
The maximum radix available for conversion to and from Strings.
- MAX_SURROGATE - Static variable in class java.lang.Character
-
Maximum value of a surrogate unit in UTF-16 encoding - '?'.
- MAX_VALUE - Static variable in class java.lang.Byte
-
The maximum value a Byte can have.
- MAX_VALUE - Static variable in class java.lang.Character
-
The constant value of this field is the largest value of type char.
- MAX_VALUE - Static variable in class java.lang.Double
-
The largest positive finite value of type double.
- MAX_VALUE - Static variable in class java.lang.Float
-
The largest positive value of type float.
- MAX_VALUE - Static variable in class java.lang.Integer
-
The largest value of type int.
- MAX_VALUE - Static variable in class java.lang.Long
-
The largest value of type long.
- MAX_VALUE - Static variable in class java.lang.Short
-
The maximum value a Short can have.
- MAY - Static variable in class java.util.Calendar
-
Value of the MONTH field indicating the fifth month of the year.
- MEDIUM - Static variable in class java.text.DateFormat
-
Deprecated.
Constant for medium style parsing/formatting pattern.
- metafactory(MethodHandles.Lookup, String, MethodType, MethodType, MethodHandle, MethodType) - Static method in class java.lang.invoke.LambdaMetafactory
-
Deprecated.
- Method - Class in java.lang.reflect
-
- Method() - Constructor for class java.lang.reflect.Method
-
- MethodHandle - Class in java.lang.invoke
-
- MethodHandle() - Constructor for class java.lang.invoke.MethodHandle
-
Deprecated.
- MethodHandles - Class in java.lang.invoke
-
- MethodHandles() - Constructor for class java.lang.invoke.MethodHandles
-
Deprecated.
- MethodHandles.Lookup - Class in java.lang.invoke
-
Deprecated.
- MethodType - Class in java.lang.invoke
-
- MethodType() - Constructor for class java.lang.invoke.MethodType
-
Deprecated.
- methodType(Class<?>, Class<?>[]) - Static method in class java.lang.invoke.MethodType
-
Deprecated.
- methodType(Class<?>, List<Class<?>>) - Static method in class java.lang.invoke.MethodType
-
Deprecated.
- methodType(Class<?>, Class<?>, Class<?>...) - Static method in class java.lang.invoke.MethodType
-
Deprecated.
- methodType(Class<?>) - Static method in class java.lang.invoke.MethodType
-
Deprecated.
- methodType(Class<?>, Class<?>) - Static method in class java.lang.invoke.MethodType
-
Deprecated.
- methodType(Class<?>, MethodType) - Static method in class java.lang.invoke.MethodType
-
Deprecated.
- MILLISECOND - Static variable in class java.util.Calendar
-
Field number for get and set indicating the millisecond within the second.
- min(double, double) - Static method in class java.lang.Math
-
Returns the smaller of two double values.
- min(float, float) - Static method in class java.lang.Math
-
Returns the smaller of two float values.
- min(int, int) - Static method in class java.lang.Math
-
Returns the smaller of two int values.
- min(long, long) - Static method in class java.lang.Math
-
Returns the smaller of two long values.
- min(Collection<? extends T>) - Static method in class java.util.Collections
-
Searches the specified collection for the minimum element.
- min(Collection<? extends T>, Comparator<? super T>) - Static method in class java.util.Collections
-
Searches the specified collection for the minimum element using the
specified comparator.
- MIN_CODE_POINT - Static variable in class java.lang.Character
-
Minimum code point value - U+0000.
- MIN_HIGH_SURROGATE - Static variable in class java.lang.Character
-
Minimum value of a high surrogate or leading surrogate unit in UTF-16
encoding - '?'.
- MIN_LOW_SURROGATE - Static variable in class java.lang.Character
-
Minimum value of a low surrogate or trailing surrogate unit in UTF-16
encoding - '?'.
- MIN_PRIORITY - Static variable in class java.lang.Thread
-
The minimum priority that a thread can have.
- MIN_RADIX - Static variable in class java.lang.Character
-
The minimum radix available for conversion to and from Strings.
- MIN_SUPPLEMENTARY_CODE_POINT - Static variable in class java.lang.Character
-
Minimum value of a supplementary code point - U+010000.
- MIN_SURROGATE - Static variable in class java.lang.Character
-
Minimum value of a surrogate unit in UTF-16 encoding - '?'.
- MIN_VALUE - Static variable in class java.lang.Byte
-
The minimum value a Byte can have.
- MIN_VALUE - Static variable in class java.lang.Character
-
The constant value of this field is the smallest value of type char.
- MIN_VALUE - Static variable in class java.lang.Double
-
The smallest positive value of type double.
- MIN_VALUE - Static variable in class java.lang.Float
-
The smallest positive value of type float.
- MIN_VALUE - Static variable in class java.lang.Integer
-
The smallest value of type int.
- MIN_VALUE - Static variable in class java.lang.Long
-
The smallest value of type long.
- MIN_VALUE - Static variable in class java.lang.Short
-
The minimum value a Short can have.
- MINUTE - Static variable in class java.util.Calendar
-
Field number for get and set indicating the minute within the hour.
- modCount - Variable in class java.util.AbstractList
-
A counter for changes to the list.
- MONDAY - Static variable in class java.util.Calendar
-
Value of the DAY_OF_WEEK field indicating Monday.
- MONTH - Static variable in class java.util.Calendar
-
Field number for get and set indicating the month.
- name() - Method in class java.lang.Enum
-
- NaN - Static variable in class java.lang.Double
-
A Not-a-Number (NaN) value of type double.
- NaN - Static variable in class java.lang.Float
-
The Not-a-Number (NaN) value of type float.
- navigableKeySet() - Method in interface java.util.NavigableMap
-
Answers a NavigableSet view of the keys in ascending order.
- navigableKeySet() - Method in class java.util.TreeMap
-
Answers a NavigableSet view of the keys in ascending order.
- NavigableMap<K,V> - Interface in java.util
-
NavigableMap is a SortedMap with navigation methods answering the closest
matches for specified item.
- NavigableSet<E> - Interface in java.util
-
NavigableSet is a SortedSet with navigation methods answering the closest
matches for specified item.
- nCopies(int, T) - Static method in class java.util.Collections
-
Returns a list containing the specified number of the specified element.
- NEGATIVE_INFINITY - Static variable in class java.lang.Double
-
The negative infinity of type double.
- NEGATIVE_INFINITY - Static variable in class java.lang.Float
-
The negative infinity of type float.
- NegativeArraySizeException - Exception in java.lang
-
Thrown if an application tries to create an array with negative size.
- NegativeArraySizeException() - Constructor for exception java.lang.NegativeArraySizeException
-
Constructs a NegativeArraySizeException with no detail message.
- NegativeArraySizeException(String) - Constructor for exception java.lang.NegativeArraySizeException
-
Constructs a NegativeArraySizeException with the specified detail message.
- newInstance() - Method in class java.lang.Class
-
Creates a new instance of a class.
- newInstance(Class<?>, int[]) - Static method in class java.lang.reflect.Array
-
- newInstance(Class<?>, int) - Static method in class java.lang.reflect.Array
-
- newSetFromMap(Map<E, Boolean>) - Static method in class java.util.Collections
-
Answers a set backed by a map.
- next() - Method in interface java.util.Iterator
-
Returns the next object in the iteration, i.e.
- next() - Method in interface java.util.ListIterator
-
Returns the next object in the iteration.
- next(int) - Method in class java.util.Random
-
Generates the next pseudorandom number.
- nextBoolean() - Method in class java.util.Random
-
- nextClearBit(int) - Method in class java.util.BitSet
-
Returns the position of the first bit that is false on or after pos.
- nextDouble(double) - Method in class java.util.concurrent.ThreadLocalRandom
-
- nextDouble(double, double) - Method in class java.util.concurrent.ThreadLocalRandom
-
- nextDouble() - Method in class java.util.Random
-
Returns the next pseudorandom, uniformly distributed double value between 0.0 and 1.0 from this random number generator's sequence.
- nextDown(double) - Static method in class java.lang.Math
-
- nextElement() - Method in interface java.util.Enumeration
-
Returns the next element of this enumeration if this enumeration object has at least one more element to provide.
- nextElement() - Method in class java.util.StringTokenizer
-
Returns the next token in the string as an Object.
- nextFloat() - Method in class java.util.Random
-
Returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0 from this random number generator's sequence.
- nextIndex() - Method in interface java.util.ListIterator
-
Returns the index of the next object in the iteration.
- nextInt(int, int) - Method in class java.util.concurrent.ThreadLocalRandom
-
- nextInt() - Method in class java.util.Random
-
Returns the next pseudorandom, uniformly distributed int value from this random number generator's sequence.
- nextInt(int) - Method in class java.util.Random
-
Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence.
- nextLong(long) - Method in class java.util.concurrent.ThreadLocalRandom
-
- nextLong(long, long) - Method in class java.util.concurrent.ThreadLocalRandom
-
- nextLong() - Method in class java.util.Random
-
Returns the next pseudorandom, uniformly distributed long value from this random number generator's sequence.
- nextSetBit(int) - Method in class java.util.BitSet
-
Returns the position of the first bit that is true on or after pos.
- nextToken() - Method in class java.util.StringTokenizer
-
Returns the next token in the string as a String.
- nextToken(String) - Method in class java.util.StringTokenizer
-
Returns the next token in the string as a String.
- NoClassDefFoundError - Error in java.lang
-
Thrown if the Java Virtual Machine tries to load in the definition of a class (as part of a normal method call or as part of creating a new instance using the new expression) and no definition of the class could be found.
- NoClassDefFoundError() - Constructor for error java.lang.NoClassDefFoundError
-
Constructs a NoClassDefFoundError with no detail message.
- NoClassDefFoundError(String) - Constructor for error java.lang.NoClassDefFoundError
-
Constructs a NoClassDefFoundError with the specified detail message.
- nonNull(Object) - Static method in class java.util.Objects
-
- NORM_PRIORITY - Static variable in class java.lang.Thread
-
The default priority that is assigned to a thread.
- normalize() - Method in class java.net.URI
-
Normalize a URI by removing any "./" segments, and "path/../" segments.
- NoSuchElementException - Exception in java.util
-
Thrown by the nextElement method of an Enumeration to indicate that there are no more elements in the enumeration.
- NoSuchElementException() - Constructor for exception java.util.NoSuchElementException
-
Constructs a NoSuchElementException with null as its error message string.
- NoSuchElementException(String) - Constructor for exception java.util.NoSuchElementException
-
Constructs a NoSuchElementException, saving a reference to the error message string s for later retrieval by the getMessage method.
- NoSuchFieldError - Error in java.lang
-
Thrown when the virtual machine notices that a program tries to reference,
on a class or object, a field that does not exist.
- NoSuchFieldError() - Constructor for error java.lang.NoSuchFieldError
-
Constructs a new NoSuchFieldError that includes the current stack
trace.
- NoSuchFieldError(String) - Constructor for error java.lang.NoSuchFieldError
-
Constructs a new NoSuchFieldError with the current stack trace
and the specified detail message.
- notify() - Method in class java.lang.Object
-
Wakes up a single thread that is waiting on this object's monitor.
- notifyAll() - Method in class java.lang.Object
-
Wakes up all threads that are waiting on this object's monitor.
- notifyObservers() - Method in class java.util.Observable
-
If hasChanged() returns true, calls the update()
method for every observer in the list of observers using null as the
argument.
- notifyObservers(Object) - Method in class java.util.Observable
-
If hasChanged() returns true, calls the update()
method for every Observer in the list of observers using the specified
argument.
- NOVEMBER - Static variable in class java.util.Calendar
-
Value of the MONTH field indicating the eleventh month of the year.
- NullPointerException - Exception in java.lang
-
Thrown when an application attempts to use null in a case where an object is required.
- NullPointerException() - Constructor for exception java.lang.NullPointerException
-
Constructs a NullPointerException with no detail message.
- NullPointerException(String) - Constructor for exception java.lang.NullPointerException
-
Constructs a NullPointerException with the specified detail message.
- Number - Class in java.lang
-
- Number() - Constructor for class java.lang.Number
-
- NumberFormatException - Exception in java.lang
-
Thrown to indicate that the application has attempted to convert a string to one of the numeric types, but that the string does not have the appropriate format.
- NumberFormatException() - Constructor for exception java.lang.NumberFormatException
-
Constructs a NumberFormatException with no detail message.
- NumberFormatException(String) - Constructor for exception java.lang.NumberFormatException
-
Constructs a NumberFormatException with the specified detail message.
- numberOfLeadingZeros(int) - Static method in class java.lang.Integer
-
- PACKAGE - Static variable in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- parameterArray() - Method in class java.lang.invoke.MethodType
-
Deprecated.
- parameterCount() - Method in class java.lang.invoke.MethodType
-
Deprecated.
- parameterList() - Method in class java.lang.invoke.MethodType
-
Deprecated.
- parameterType(int) - Method in class java.lang.invoke.MethodType
-
Deprecated.
- parse(String) - Method in class java.text.DateFormat
-
Deprecated.
NOT IMPLEMENTED - use SimpleDateFormat for parsing instead.
- parse(String) - Method in class java.text.SimpleDateFormat
-
Deprecated.
- parseBoolean(String) - Static method in class java.lang.Boolean
-
- parseByte(String) - Static method in class java.lang.Byte
-
Assuming the specified String represents a byte, returns that byte's value.
- parseByte(String, int) - Static method in class java.lang.Byte
-
Assuming the specified String represents a byte, returns that byte's value.
- 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
-
An error occurred during parsing.
- ParseException(String, int) - Constructor for exception java.text.ParseException
-
- parseFloat(String) - Static method in class java.lang.Float
-
Returns a new float initialized to the value represented by the specified String.
- parseInt(String) - Static method in class java.lang.Integer
-
Parses the string argument as a signed decimal integer.
- 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.
- parseLong(String) - Static method in class java.lang.Long
-
Parses the string argument as a signed decimal long.
- 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.
- parseObject(String) - Method in class java.text.DateFormat
-
Deprecated.
NOT IMPLEMENTED - use SimpleDateFormat for parsing instead.
- parseObject(String) - Method in class java.text.Format
-
Parse an string to an object.
- parseSchemeSpecificPart(String, boolean) - Method in class java.net.URI
-
Utility method used to parse a given scheme specific part.
- parseShort(String) - Static method in class java.lang.Short
-
Assuming the specified String represents a short, returns that short's value.
- parseShort(String, int) - Static method in class java.lang.Short
-
Assuming the specified String represents a short, returns that short's value in the radix specified by the second argument.
- parseURI(String) - Method in class java.net.URI
-
Rather than attempting to process the uri string in a linear fashion,
this implementation works its way from outside-in
- peek() - Method in class java.util.ArrayDeque
-
Gets but not removes the head element of this deque.
- peek() - Method in class java.util.LinkedList
-
- peek() - Method in class java.util.PriorityQueue
-
Gets but does not remove the head of the queue.
- peek() - Method in interface java.util.Queue
-
Gets but does not remove the element at the head of the queue.
- peek() - Method in class java.util.Stack
-
Returns the element at the top of the stack without removing it.
- peekFirst() - Method in class java.util.ArrayDeque
-
Gets but not removes the head element of this deque.
- peekFirst() - Method in interface java.util.Deque
-
Gets but not removes the head element of this deque.
- peekFirst() - Method in class java.util.LinkedList
-
Gets but not removes the head element of this deque.
- peekLast() - Method in class java.util.ArrayDeque
-
Gets but not removes the tail element of this deque.
- peekLast() - Method in interface java.util.Deque
-
Gets but not removes the tail element of this deque.
- peekLast() - Method in class java.util.LinkedList
-
Gets but not removes the tail element of this deque.
- permuteArguments(MethodHandle, MethodType, int...) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- PI - Static variable in class java.lang.Math
-
The double value that is closer than any other to
, the ratio of the circumference of a circle to its diameter.
- PM - Static variable in class java.util.Calendar
-
Value of the AM_PM field indicating the period of the day from noon to just before midnight.
- poll() - Method in class java.util.ArrayDeque
-
Gets and removes the head element of this deque.
- poll() - Method in class java.util.LinkedList
-
- poll() - Method in class java.util.PriorityQueue
-
Gets and removes the head of the queue.
- poll() - Method in interface java.util.Queue
-
Gets and removes the element at the head of the queue, or returns null if there is no element in the queue.
- pollFirst() - Method in class java.util.ArrayDeque
-
Gets and removes the head element of this deque.
- pollFirst() - Method in interface java.util.Deque
-
Gets and removes the head element of this deque.
- pollFirst() - Method in class java.util.LinkedList
-
Gets and removes the head element of this deque.
- pollFirst() - Method in interface java.util.NavigableSet
-
Deletes and answers the smallest element, or null if the set is empty.
- pollFirst() - Method in class java.util.TreeSet
-
Deletes and answers the smallest element, or null if the set is empty.
- pollFirstEntry() - Method in interface java.util.NavigableMap
-
Deletes and answers the entry with the smallest key, or null if the map
is empty.
- pollFirstEntry() - Method in class java.util.TreeMap
-
Deletes and answers the entry with the smallest key, or null if the map
is empty.
- pollLast() - Method in class java.util.ArrayDeque
-
Gets and removes the tail element of this deque.
- pollLast() - Method in interface java.util.Deque
-
Gets and removes the tail element of this deque.
- pollLast() - Method in class java.util.LinkedList
-
Gets and removes the tail element of this deque.
- pollLast() - Method in interface java.util.NavigableSet
-
Deletes and answers the biggest element, or null if the set is empty.
- pollLast() - Method in class java.util.TreeSet
-
Deletes and answers the biggest element, or null if the set is empty.
- pollLastEntry() - Method in interface java.util.NavigableMap
-
Deletes and answers the entry with the biggest key, or null if the map is
empty.
- pollLastEntry() - Method in class java.util.TreeMap
-
Deletes and answers the entry with the biggest key, or null if the map is
empty.
- pop() - Method in class java.util.ArrayDeque
-
Pops the head element of the deque, just same as removeFirst().
- pop() - Method in interface java.util.Deque
-
Pops the head element of the deque, just same as removeFirst().
- pop() - Method in class java.util.LinkedList
-
Pops the head element of the deque, just same as removeFirst().
- pop() - Method in class java.util.Stack
-
Returns the element at the top of the stack and removes it.
- pos - Variable in class java.io.ByteArrayInputStream
-
The index of the next character to read from the input stream buffer.
- POSITIVE_INFINITY - Static variable in class java.lang.Double
-
The positive infinity of type double.
- POSITIVE_INFINITY - Static variable in class java.lang.Float
-
The positive infinity of type float.
- previous() - Method in interface java.util.ListIterator
-
Returns the previous object in the iteration.
- previousIndex() - Method in interface java.util.ListIterator
-
Returns the index of the previous object in the iteration.
- print(boolean) - Method in class java.io.PrintStream
-
Print a boolean value.
- print(char) - Method in class java.io.PrintStream
-
Print an array of characters.
- print(double) - Method in class java.io.PrintStream
-
Print a double-precision floating point number.
- print(float) - Method in class java.io.PrintStream
-
Print a floating point number.
- print(int) - Method in class java.io.PrintStream
-
Print an integer.
- print(long) - Method in class java.io.PrintStream
-
Print a long integer.
- print(Object) - Method in class java.io.PrintStream
-
Print an object.
- print(String) - Method in class java.io.PrintStream
-
Print a string.
- println() - Method in class java.io.PrintStream
-
Terminate the current line by writing the line separator string.
- println(boolean) - Method in class java.io.PrintStream
-
Print a boolean and then terminate the line.
- println(char) - Method in class java.io.PrintStream
-
Print an array of characters and then terminate the line.
- println(double) - Method in class java.io.PrintStream
-
Print a double and then terminate the line.
- println(float) - Method in class java.io.PrintStream
-
Print a float and then terminate the line.
- println(int) - Method in class java.io.PrintStream
-
Print an integer and then terminate the line.
- println(long) - Method in class java.io.PrintStream
-
Print a long and then terminate the line.
- println(Object) - Method in class java.io.PrintStream
-
Print an Object and then terminate the line.
- println(String) - Method in class java.io.PrintStream
-
Print a String and then terminate the line.
- printStackTrace() - Method in class java.lang.Throwable
-
Prints this Throwable and its backtrace to the standard error stream.
- 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
-
Create a new print stream.
- PriorityQueue<E> - Class in java.util
-
A PriorityQueue holds elements on a priority heap, which orders the elements
according to their natural order or according to the comparator specified at
construction time.
- PriorityQueue() - Constructor for class java.util.PriorityQueue
-
Constructs a priority queue with an initial capacity of 11 and natural
ordering.
- PriorityQueue(int) - Constructor for class java.util.PriorityQueue
-
Constructs a priority queue with the specified capacity and natural
ordering.
- PriorityQueue(int, Comparator<? super E>) - Constructor for class java.util.PriorityQueue
-
Constructs a priority queue with the specified capacity and comparator.
- PriorityQueue(Collection<? extends E>) - Constructor for class java.util.PriorityQueue
-
Constructs a priority queue that contains the elements of a collection.
- PriorityQueue(PriorityQueue<? extends E>) - Constructor for class java.util.PriorityQueue
-
Constructs a priority queue that contains the elements of another
priority queue.
- PriorityQueue(SortedSet<? extends E>) - Constructor for class java.util.PriorityQueue
-
Constructs a priority queue that contains the elements of a sorted set.
- PRIVATE - Static variable in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- PROTECTED - Static variable in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- PUBLIC - Static variable in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- publicLookup() - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- push(E) - Method in class java.util.ArrayDeque
-
Pushes the element to the deque(at the head of the deque), just same as
addFirst(E).
- push(E) - Method in interface java.util.Deque
-
Pushes the element to the deque(at the head of the deque), just same as
addFirst(E).
- push(E) - Method in class java.util.LinkedList
-
Pushes the element to the deque(at the head of the deque), just same as
addFirst(E).
- push(E) - Method in class java.util.Stack
-
Pushes the specified object onto the top of the stack.
- put(K, V) - Method in class java.util.AbstractMap
-
Maps the specified key to the specified value.
- put(K, V) - Method in class java.util.Dictionary
-
Associate key with value in this dictionary.
- put(K, V) - Method in class java.util.HashMap
-
Maps the specified key to the specified value.
- put(K, V) - Method in class java.util.Hashtable
-
Associate the specified value with the specified key in this
Hashtable.
- put(K, V) - Method in class java.util.IdentityHashMap
-
Maps the specified key to the specified value.
- put(K, V) - Method in class java.util.LinkedHashMap
-
Maps the specified key to the specified value.
- put(K, V) - Method in interface java.util.Map
-
Maps the specified key to the specified value.
- put(K, V) - Method in class java.util.TreeMap
-
Maps the specified key to the specified value.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.AbstractMap
-
Copies every mapping in the specified map to this map.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.HashMap
-
Copies all the mappings in the specified map to this map.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.Hashtable
-
Copies every mapping to this Hashtable from the specified map.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.IdentityHashMap
-
Copies all the mappings in the specified map to this map.
- putAll(Map<? extends K, ? extends V>) - Method in interface java.util.Map
-
Copies every mapping in the specified Map to this Map.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.TreeMap
-
Copies all the mappings in the given map to this map.
- 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: public Random(long seed) { setSeed(seed); } Used by method next to hold the state of the pseudorandom number generator.
- RandomAccess - Interface in java.util
-
RandomAccess is implemented by List implementations that support fast
(usually constant time) random access.
- 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() - Method in class java.io.DataInputStream
-
Reads the next byte of data from this input stream.
- read(byte[]) - Method in class java.io.DataInputStream
-
See the general contract of the read method of DataInput.
- read(byte[], int, int) - Method in class java.io.DataInputStream
-
Reads up to len bytes of data from this input stream into an array of bytes.
- 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
-
Read a single character.
- read(char[], int, int) - Method in class java.io.InputStreamReader
-
Read characters into a portion of an array.
- read() - Method in class java.io.Reader
-
Read a single character.
- read(char[]) - Method in class java.io.Reader
-
Read characters into an array.
- read(char[], int, int) - Method in class java.io.Reader
-
Read characters into a portion of an array.
- read() - Method in class java.io.StringReader
-
Reads a single character from the source string and returns it as an
integer with the two higher-order bytes set to 0.
- read(char[], int, int) - Method in class java.io.StringReader
-
Reads at most len characters from the source string and stores
them at offset in the character array buf.
- 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.
- 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.
- readChar() - Method in interface java.io.DataInput
-
Reads an input char and returns the char value.
- readChar() - Method in class java.io.DataInputStream
-
See the general contract of the readChar method of DataInput.
- 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.
- Reader - Class in java.io
-
Abstract class for reading character streams.
- Reader() - Constructor for class java.io.Reader
-
Create a new character-stream reader whose critical sections will synchronize on the reader itself.
- Reader(Object) - Constructor for class java.io.Reader
-
Create a new character-stream reader whose critical sections will synchronize on the given object.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- readUnsignedShort() - Method in interface java.io.DataInput
-
Reads two input bytes, zero-extends it to type int, 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.
- 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 Java modified UTF-8 format; this string of characters is then returned as a String.
- ready() - Method in class java.io.InputStreamReader
-
Tell whether this stream is ready to be read.
- ready() - Method in class java.io.Reader
-
Tell whether this stream is ready to be read.
- ready() - Method in class java.io.StringReader
-
Indicates whether this reader is ready to be read without blocking.
- rebuildSchemeSpecificPart() - Method in class java.net.URI
-
Utility method to construct the scheme specific part from the uri
segments (less scheme and fragment)
- Reference - Class in java.lang.ref
-
Abstract base class for reference objects.
- Reference() - Constructor for class java.lang.ref.Reference
-
- reflectAs(Class<T>, MethodHandle) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- regionMatches(boolean, int, String, int, int) - Method in class java.lang.String
-
Tests if two string regions are equal.
- regionMatches(int, String, int, int) - Method in class java.lang.String
-
Compares the specified string to this string and compares the specified
range of characters to determine if they are the same.
- rehash() - Method in class java.util.Hashtable
-
Increases the capacity of this Hashtable.
- relativize(URI) - Method in class java.net.URI
-
Create a relative URI object against this URI, given the uri parameter.
- remove() - Method in class java.lang.ThreadLocal
-
- remove(Object) - Method in class java.util.AbstractCollection
-
Removes one instance of the specified object from this Collection if one
is contained (optional).
- remove(int) - Method in class java.util.AbstractList
-
Removes the object at the specified location from this list.
- remove(Object) - Method in class java.util.AbstractMap
-
Removes a mapping with the specified key from this Map.
- remove() - Method in class java.util.AbstractQueue
-
Removes the element at the head of the queue and returns it.
- remove(int) - Method in class java.util.AbstractSequentialList
-
- remove() - Method in class java.util.ArrayDeque
-
Gets and removes the head element of this deque.
- remove(Object) - Method in class java.util.ArrayDeque
-
Removes the first equivalent element of the specified object.
- remove(int) - Method in class java.util.ArrayList
-
Removes the object at the specified location from this list.
- remove(Object) - Method in class java.util.ArrayList
-
- remove(Object) - Method in interface java.util.Collection
-
Removes one instance of the specified object from this Collection if one
is contained (optional).
- remove(Object) - Method in class java.util.Dictionary
-
Removes the key/value pair with the specified key from this
dictionary.
- remove(Object) - Method in class java.util.HashMap
-
Removes the mapping with the specified key from this map.
- remove(Object) - Method in class java.util.HashSet
-
Removes the specified object from this HashSet.
- remove(Object) - Method in class java.util.Hashtable
-
Removes the key/value pair with the specified key from this
Hashtable.
- remove(Object) - Method in class java.util.IdentityHashMap
-
Removes the mapping with the specified key from this map.
- remove() - Method in interface java.util.Iterator
-
Removes the last object returned by next from the collection.
- remove(Object) - Method in class java.util.LinkedHashMap
-
Removes the mapping with the specified key from this map.
- remove(int) - Method in class java.util.LinkedList
-
Removes the object at the specified location from this LinkedList.
- remove(Object) - Method in class java.util.LinkedList
-
- remove() - Method in class java.util.LinkedList
-
- remove(int) - Method in interface java.util.List
-
Removes the object at the specified location from this List.
- remove(Object) - Method in interface java.util.List
-
Removes the first occurrence of the specified object from this List.
- remove() - Method in interface java.util.ListIterator
-
Removes the last object returned by next or previous from
the list.
- remove(Object) - Method in interface java.util.Map
-
Removes a mapping with the specified key from this Map.
- remove(Object) - Method in class java.util.PriorityQueue
-
Removes the specified object from the priority queue.
- remove() - Method in interface java.util.Queue
-
Gets and removes the element at the head of the queue.
- remove(Object) - Method in interface java.util.Set
-
Removes the specified object from this set.
- remove(Object) - Method in class java.util.TreeMap
-
Removes the mapping with the specified key from this map.
- remove(Object) - Method in class java.util.TreeSet
-
Removes an occurrence of the specified object from this TreeSet.
- remove(int) - Method in class java.util.Vector
-
Removes the object at the specified location from this vector.
- remove(Object) - Method in class java.util.Vector
-
Removes the first occurrence, starting at the beginning and moving
towards the end, of the specified object from this vector.
- removeAll(Collection<?>) - Method in class java.util.AbstractCollection
-
Removes all occurrences in this Collection of each object in the
specified Collection (optional).
- removeAll(Collection<?>) - Method in class java.util.AbstractSet
-
Removes all occurrences in this collection which are contained in the
specified collection.
- removeAll(Collection<?>) - Method in interface java.util.Collection
-
Removes all occurrences in this Collection of each object in the
specified Collection (optional).
- removeAll(Collection<?>) - Method in interface java.util.List
-
Removes all occurrences in this List of each object in the specified
collection.
- removeAll(Collection<?>) - Method in interface java.util.Set
-
Removes all objects in the specified collection from this set.
- removeAll(Collection<?>) - Method in class java.util.Vector
-
Removes all occurrences in this vector of each object in the specified
Collection.
- removeAllElements() - Method in class java.util.Vector
-
Removes all elements from this vector, leaving the size zero and the
capacity unchanged.
- removeEldestEntry(Map.Entry<K, V>) - Method in class java.util.LinkedHashMap
-
This method is queried from the put and putAll methods to check if the
eldest member of the map should be deleted before adding the new member.
- removeElement(Object) - Method in class java.util.Vector
-
Removes the first occurrence, starting at the beginning and moving
towards the end, of the specified object from this vector.
- removeElementAt(int) - Method in class java.util.Vector
-
Removes the element found at index position location from
this Vector.
- removeFirst() - Method in class java.util.ArrayDeque
-
Gets and removes the head element of this deque.
- removeFirst() - Method in interface java.util.Deque
-
Gets and removes the head element of this deque.
- removeFirst() - Method in class java.util.LinkedList
-
Removes the first object from this LinkedList.
- removeFirstOccurrence(Object) - Method in class java.util.ArrayDeque
-
Removes the first equivalent element of the specified object.
- removeFirstOccurrence(Object) - Method in interface java.util.Deque
-
Removes the first equivalent element of the specified object.
- removeFirstOccurrence(Object) - Method in class java.util.LinkedList
-
Removes the first equivalent element of the specified object.
- removeLast() - Method in class java.util.ArrayDeque
-
Gets and removes the tail element of this deque.
- removeLast() - Method in interface java.util.Deque
-
Gets and removes the tail element of this deque.
- removeLast() - Method in class java.util.LinkedList
-
Removes the last object from this LinkedList.
- removeLastOccurrence(Object) - Method in class java.util.ArrayDeque
-
Removes the last equivalent element of the specified object.
- removeLastOccurrence(Object) - Method in interface java.util.Deque
-
Removes the last equivalent element of the specified object.
- removeLastOccurrence(Object) - Method in class java.util.LinkedList
-
Removes the last equivalent element of the specified object.
- removeRange(int, int) - Method in class java.util.AbstractList
-
Removes the objects in the specified range from the start to the end
index minus one.
- removeRange(int, int) - Method in class java.util.ArrayList
-
Removes the objects in the specified range from the start to the end, but
not including the end index.
- removeRange(int, int) - Method in class java.util.Vector
-
Removes the objects in the specified range from the start to the, but not
including, end index.
- 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.
- replaceAll(List<T>, T, T) - Static method in class java.util.Collections
-
Replaces all occurrences of Object obj in list with
newObj.
- requireNonNull(T) - Static method in class java.util.Objects
-
- requireNonNull(T, String) - Static method in class java.util.Objects
-
- 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.DataInputStream
-
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.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.InputStreamReader
-
Reset the stream.
- reset() - Method in class java.io.Reader
-
Reset the stream.
- reset() - Method in class java.io.StringReader
-
Resets this reader's position to the last mark() location.
- resolve(URI) - Method in class java.net.URI
-
Resolve a relative URI by merging it with this URI.
- retainAll(Collection<?>) - Method in class java.util.AbstractCollection
-
Removes all objects from this Collection that are not also found in the
Collection passed (optional).
- retainAll(Collection<?>) - Method in interface java.util.Collection
-
Removes all objects from this Collection that are not also found in the
Collection passed (optional).
- retainAll(Collection<?>) - Method in interface java.util.List
-
Removes all objects from this List that are not contained in the
specified collection.
- retainAll(Collection<?>) - Method in interface java.util.Set
-
Removes all objects from this set that are not contained in the specified
collection.
- retainAll(Collection<?>) - Method in class java.util.Vector
-
Removes all objects from this vector that are not contained in the
specified collection.
- Retention - Annotation Type in java.lang.annotation
-
- RetentionPolicy - Enum in java.lang.annotation
-
A mirror of java.lang.annotation.RetentionPolicy.
- returnType() - Method in class java.lang.invoke.MethodType
-
Deprecated.
- revealDirect(MethodHandle) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Deprecated.
- reverse() - Method in class java.lang.StringBuffer
-
The character sequence contained in this string buffer is replaced by the reverse of the sequence.
- reverse() - Method in class java.lang.StringBuilder
-
The character sequence contained in this string builder is replaced by the reverse of the sequence.
- reverse(List<?>) - Static method in class java.util.Collections
-
Modifies the specified List by reversing the order of the
elements.
- reverseBytes(char) - Static method in class java.lang.Character
-
Reverse the order of the first and second bytes in character
- reverseOrder() - Static method in class java.util.Collections
-
A comparator which reverses the natural order of the elements.
- reverseOrder(Comparator<T>) - Static method in class java.util.Collections
-
Returns a
Comparator that reverses the order of the
Comparator passed.
- RFC2822 - Static variable in class java.text.DateFormatPatterns
-
Pattern for parsing/formatting RFC-2822 timestamp.
- RFC822 - Static variable in class java.text.DateFormatPatterns
-
Pattern for parsing/formatting RFC-822 timestamp.
- rotate(List<?>, int) - Static method in class java.util.Collections
-
Rotates the elements in list by the distance dist
- round(double) - Static method in class java.lang.Math
-
Returns the result of rounding the argument to an integer.
- round(float) - Static method in class java.lang.Math
-
Returns the result of rounding the argument to an integer.
- 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.
- Runnable - Interface in java.lang
-
The Runnable interface should be implemented by any class whose instances are intended to be executed by a thread.
- Runtime - Class in java.lang
-
Every Java application has a single instance of class Runtime that allows the application to interface with the environment in which the application is running.
- Runtime() - Constructor for class java.lang.Runtime
-
- 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 RuntimeException with no detail message.
- RuntimeException(String) - Constructor for exception java.lang.RuntimeException
-
Constructs a RuntimeException with the specified detail message.
- RuntimeException(Throwable) - Constructor for exception java.lang.RuntimeException
-
Constructs a RuntimeException with specified cause.
- RuntimeException(String, Throwable) - Constructor for exception java.lang.RuntimeException
-
Constructs a RuntimeException with the specified detail message and cause.
- SafeVarargs - Annotation Type in java.lang
-
- SATURDAY - Static variable in class java.util.Calendar
-
Value of the DAY_OF_WEEK field indicating Saturday.
- schedule(TimerTask, Date) - Method in class java.util.Timer
-
- schedule(TimerTask, Date, long) - Method in class java.util.Timer
-
- schedule(TimerTask, long) - Method in class java.util.Timer
-
- schedule(TimerTask, long, long) - Method in class java.util.Timer
-
- scheduleAtFixedRate(TimerTask, Date, long) - Method in class java.util.Timer
-
- scheduleAtFixedRate(TimerTask, long, long) - Method in class java.util.Timer
-
- scheduledExecutionTime() - Method in class java.util.TimerTask
-
- search(Object) - Method in class java.util.Stack
-
Returns the index of the first occurrence of the object, starting from
the top of the stack.
- SECOND - Static variable in class java.util.Calendar
-
Field number for get and set indicating the second within the minute.
- SecurityException - Exception in java.lang
-
Thrown by the system 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.
- SEPTEMBER - Static variable in class java.util.Calendar
-
Value of the MONTH field indicating the ninth month of the year.
- Serializable - Interface in java.io
-
Here to simplify porting, won't actually work...
- set(T) - Method in class java.lang.ThreadLocal
-
- set(int, E) - Method in class java.util.AbstractList
-
Replaces the element at the specified location in this list with the
specified object.
- set(int, E) - Method in class java.util.AbstractSequentialList
-
- set(int, E) - Method in class java.util.ArrayList
-
Replaces the element at the specified location in this ArrayList
with the specified object.
- set(int) - Method in class java.util.BitSet
-
Sets the bit at index pos to 1.
- set(int, boolean) - Method in class java.util.BitSet
-
Sets the bit at index pos to val.
- set(int, int) - Method in class java.util.BitSet
-
Sets the bits starting from pos1 to pos2.
- set(int, int, boolean) - Method in class java.util.BitSet
-
Sets the bits starting from pos1 to pos2 to the given
val.
- set(int, int) - Method in class java.util.Calendar
-
Sets the time field with the given value.
- set(int, E) - Method in class java.util.LinkedList
-
Replaces the element at the specified location in this LinkedList
with the specified object.
- set(int, E) - Method in interface java.util.List
-
Replaces the element at the specified location in this List with the
specified object.
- set(E) - Method in interface java.util.ListIterator
-
Replaces the last object returned by next or previous
with the specified object.
- Set<E> - Interface in java.util
-
A Set is a data structure which does not allow duplicate elements.
- set(int, E) - Method in class java.util.Vector
-
Replaces the element at the specified location in this vector with the
specified object.
- setAmPmStrings(String[]) - Method in class java.text.DateFormatSymbols
-
- setAuthority(String, boolean) - Method in class java.net.URI
-
Utility method - set the part, ensuring valid format.
- setAuthority(String, int, String, boolean) - Method in class java.net.URI
-
Utility method to construct the authority segment from given host, port,
and userinfo segments.
- setChanged() - Method in class java.util.Observable
-
Sets the changed flag for this Observable.
- setCharAt(int, char) - Method in class java.lang.StringBuffer
-
The character at the specified index of this string buffer is set to ch.
- setCharAt(int, char) - Method in class java.lang.StringBuilder
-
The character at the specified index of this string builder is set to ch.
- setDateFormatSymbols(DateFormatSymbols) - Method in class java.text.SimpleDateFormat
-
Deprecated.
Apply new date format symbols for parsing/formatting textual components
of dates in a localisation sensitive way.
- setElementAt(E, int) - Method in class java.util.Vector
-
Replaces the element at the specified location in this vector with the
specified object.
- setEnumValues(Object[], Class) - Static method in class java.lang.Enum
-
- setEras(String[]) - Method in class java.text.DateFormatSymbols
-
- setError() - Method in class java.io.PrintStream
-
Set the error state of the stream to true.
- setFragment(String, boolean) - Method in class java.net.URI
-
Utility method to set the fragment.
- setIndex(int) - Method in exception java.net.URISyntaxException
-
- setInput(String) - Method in exception java.net.URISyntaxException
-
- setLength(int) - Method in class java.lang.StringBuffer
-
Sets the length of this string buffer.
- setLength(int) - Method in class java.lang.StringBuilder
-
Sets the length of this string builder.
- setMonths(String[]) - Method in class java.text.DateFormatSymbols
-
- setPath(String, boolean) - Method in class java.net.URI
-
Utility method to set the path.
- setPriority(int) - Method in class java.lang.Thread
-
Changes the priority of this thread.
- setQuery(String, boolean) - Method in class java.net.URI
-
Utility method to set the query.
- setReason(String) - Method in exception java.net.URISyntaxException
-
- setResourceBundle(Hashtable<String, String>) - Method in class java.text.DateFormatSymbols
-
- setScheme(String) - Method in class java.net.URI
-
Utility method - set the scheme, ensuring valid format, and determining
the query separator to use.
- setSchemeSpecificPart(String, boolean) - Method in class java.net.URI
-
Utility method - set the scheme specific part, ensuring valid format.
- setSeed(long) - Method in class java.util.concurrent.ThreadLocalRandom
-
- setSeed(long) - Method in class java.util.Random
-
Sets the seed of this random number generator using a single long seed.
- setShortMonths(String[]) - Method in class java.text.DateFormatSymbols
-
- setShortWeekdays(String[]) - Method in class java.text.DateFormatSymbols
-
- setSize(int) - Method in class java.util.Vector
-
Sets the size of this vector to the specified size.
- setStackTrace(StackTraceElement[]) - Method in class java.lang.Throwable
-
- setTarget(MethodHandle) - Method in class java.lang.invoke.CallSite
-
Deprecated.
- setTime(Date) - Method in class java.util.Calendar
-
Sets this Calendar's current 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.util.Calendar
-
Sets the time zone with the given time zone value.
- setValue(V) - Method in class java.util.AbstractMap.SimpleEntry
-
Sets the value of this entry to the specified value, replacing any
existing value.
- setValue(V) - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Throws an UnsupportedOperationException.
- setValue(V) - Method in interface java.util.Map.Entry
-
Sets the value of this entry to the specified value, replacing any
existing value.
- setWeekdays(String[]) - Method in class java.text.DateFormatSymbols
-
- setZoneStrings(String[][]) - Method in class java.text.DateFormatSymbols
-
- Short - Class in java.lang
-
The Short class is the standard wrapper for short values.
- Short(short) - Constructor for class java.lang.Short
-
Constructs a Short object initialized to the specified short value.
- SHORT - Static variable in class java.text.DateFormat
-
Deprecated.
Constant for short style parsing/formatting pattern.
- 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.Number
-
- shortValue() - Method in class java.lang.Short
-
Returns the value of this Short as a short.
- shuffle(List<?>) - Static method in class java.util.Collections
-
Moves every element of the list to a random new position in the list.
- shuffle(List<?>, Random) - Static method in class java.util.Collections
-
Moves every element of the list to a random new position in the list
using the specified random number generator.
- signum(int) - Static method in class java.lang.Integer
-
Returns the value of the signum function for the specified
integer.
- SimpleDateFormat - Class in java.text
-
- SimpleDateFormat() - Constructor for class java.text.SimpleDateFormat
-
Deprecated.
Construct a SimpleDateFormat with no pattern.
- SimpleDateFormat(String) - Constructor for class java.text.SimpleDateFormat
-
Deprecated.
Construct a SimpleDateFormat with a given pattern.
- SimpleEntry(K, V) - Constructor for class java.util.AbstractMap.SimpleEntry
-
Constructs a new instance by key and value.
- SimpleEntry(Map.Entry<? extends K, ? extends V>) - Constructor for class java.util.AbstractMap.SimpleEntry
-
Constructs a new instance by an entry
- SimpleImmutableEntry(K, V) - Constructor for class java.util.AbstractMap.SimpleImmutableEntry
-
Constructs a new instance by key and value.
- SimpleImmutableEntry(Map.Entry<? extends K, ? extends V>) - Constructor for class java.util.AbstractMap.SimpleImmutableEntry
-
Constructs a new instance by an entry
- sin(double) - Static method in class java.lang.Math
-
Returns the trigonometric sine of an angle.
- singleton(E) - Static method in class java.util.Collections
-
Returns a set containing the specified element.
- singletonList(E) - Static method in class java.util.Collections
-
Returns a list containing the specified element.
- singletonMap(K, V) - Static method in class java.util.Collections
-
Returns a Map containing the specified key and value.
- size() - Method in class java.io.ByteArrayOutputStream
-
Returns the current size of the buffer.
- SIZE - Static variable in class java.lang.Byte
-
- SIZE - Static variable in class java.lang.Character
-
Constant for the number of bits to represent a char in
two's compliment form.
- size() - Method in class java.util.AbstractCollection
-
Returns a count of how many objects this Collection contains.
- size() - Method in class java.util.AbstractMap
-
Returns the number of elements in this map.
- size() - Method in class java.util.ArrayDeque
-
Returns the size of the deque.
- size() - Method in class java.util.ArrayList
-
Returns the number of elements in this ArrayList.
- size() - Method in class java.util.BitSet
-
Returns the number of bits this BitSet has.
- size() - Method in interface java.util.Collection
-
Returns a count of how many objects this Collection contains.
- size() - Method in class java.util.Dictionary
-
Returns the number of key/value pairs in this dictionary.
- size() - Method in class java.util.HashMap
-
Returns the number of elements in this map.
- size() - Method in class java.util.HashSet
-
Returns the number of elements in this HashSet.
- size() - Method in class java.util.Hashtable
-
Returns the number of key/value pairs in this Hashtable.
- size() - Method in class java.util.IdentityHashMap
-
Returns the number of mappings in this IdentityHashMap.
- size() - Method in class java.util.LinkedList
-
Returns the number of elements in this LinkedList.
- 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 mappings in this Map.
- size() - Method in class java.util.PriorityQueue
-
Gets the size of the priority queue.
- size() - Method in interface java.util.Set
-
Returns the number of elements in this set.
- size() - Method in class java.util.TreeMap
-
Returns the number of mappings in this map.
- size() - Method in class java.util.TreeSet
-
Returns the number of elements in this TreeSet.
- size() - Method in class java.util.Vector
-
Returns the number of elements in this vector.
- skip(long) - Method in class java.io.ByteArrayInputStream
-
Skips n bytes of input from this input stream.
- skip(long) - Method in class java.io.DataInputStream
-
Skips over and discards n bytes of data from the input stream.
- 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.InputStreamReader
-
Skip characters.
- skip(long) - Method in class java.io.Reader
-
Skip characters.
- skip(long) - Method in class java.io.StringReader
-
Moves ns characters in the source string.
- 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.
- 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.
- sort(byte[]) - Static method in class java.util.Arrays
-
Sorts the specified array in ascending numerical order.
- sort(byte[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range in the array in ascending numerical order.
- sort(char[]) - Static method in class java.util.Arrays
-
Sorts the specified array in ascending numerical order.
- sort(char[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range in the array in ascending numerical order.
- sort(double[]) - Static method in class java.util.Arrays
-
Sorts the specified array in ascending numerical order.
- sort(double[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range in the array in ascending numerical order.
- sort(float[]) - Static method in class java.util.Arrays
-
Sorts the specified array in ascending numerical order.
- sort(float[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range in the array in ascending numerical order.
- sort(int[]) - Static method in class java.util.Arrays
-
Sorts the specified array in ascending numerical order.
- sort(int[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range in the array in ascending numerical order.
- sort(long[]) - Static method in class java.util.Arrays
-
Sorts the specified array in ascending numerical order.
- sort(long[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range in the array in ascending numerical order.
- sort(Object[]) - Static method in class java.util.Arrays
-
Sorts the specified array in ascending natural order.
- sort(Object[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range in the array in ascending natural order.
- sort(T[], int, int, Comparator<? super T>) - Static method in class java.util.Arrays
-
Sorts the specified range in the array using the specified Comparator.
- sort(T[], Comparator<? super T>) - Static method in class java.util.Arrays
-
Sorts the specified array using the specified Comparator.
- sort(short[]) - Static method in class java.util.Arrays
-
Sorts the specified array in ascending numerical order.
- sort(short[], int, int) - Static method in class java.util.Arrays
-
Sorts the specified range in the array in ascending numerical order.
- sort(List<T>) - Static method in class java.util.Collections
-
Sorts the specified list in ascending natural order.
- sort(List<T>, Comparator<? super T>) - Static method in class java.util.Collections
-
Sorts the specified list using the specified comparator.
- SortedMap<K,V> - Interface in java.util
-
A map that has its keys ordered.
- SortedSet<E> - Interface in java.util
-
SortedSet is a Set which iterates over its elements in a sorted order.
- spreadInvoker(MethodType, int) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- 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
-
Stack is a Last-In/First-Out(LIFO) data structure which represents a
stack of objects.
- Stack() - Constructor for class java.util.Stack
-
Constructs a stack with the default size of Vector.
- StackTraceElement - Class in java.lang
-
- StackTraceElement(String, String, String, int) - Constructor for class java.lang.StackTraceElement
-
- start() - Method in class java.lang.Thread
-
Causes this thread to begin execution; the Java Virtual Machine calls the run method of this thread.
- startsWith(String) - Method in class java.lang.String
-
Tests if this string starts with the specified prefix.
- startsWith(String, int) - Method in class java.lang.String
-
Tests if this string starts with the specified prefix beginning at the specified index.
- 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(byte[]) - Constructor for class java.lang.String
-
Construct a new String by converting the specified array of bytes using the platform's default character encoding.
- String(byte[], int, int) - Constructor for class java.lang.String
-
Construct a new String by converting the specified subarray of bytes using the platform's default character encoding.
- String(byte[], int, int, String) - Constructor for class java.lang.String
-
Construct a new String by converting the specified subarray of bytes using the specified character encoding.
- String(byte[], Charset) - Constructor for class java.lang.String
-
Construct a new String by converting the specified array of bytes using the specified character encoding.
- String(byte[], String) - Constructor for class java.lang.String
-
Construct a new String by converting the specified array of bytes using the specified character encoding.
- 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(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(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
-
- StringBuffer - Class in java.lang
-
A string buffer implements a 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 an initial capacity specified by the length argument.
- StringBuffer(String) - Constructor for class java.lang.StringBuffer
-
Constructs a string buffer so that it represents the same sequence of characters as the string argument; in other words, the initial contents of the string buffer is a copy of the argument string.
- StringBuffer(CharSequence) - Method in class java.lang.StringBuffer
-
- StringBuilder - Class in java.lang
-
A string builder implements 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 length argument.
- StringBuilder(String) - Constructor for class java.lang.StringBuilder
-
Constructs a string builder so that it represents the same sequence of characters as the string argument; in other words, the initial contents of the string builder is a copy of the argument string.
- StringBuilder(CharSequence) - Constructor for class java.lang.StringBuilder
-
- StringIndexOutOfBoundsException - Exception in java.lang
-
Thrown by the charAt method in class String and by other String methods to indicate that an index is either negative or greater than or equal to the size of the string.
- StringIndexOutOfBoundsException() - Constructor for exception java.lang.StringIndexOutOfBoundsException
-
Constructs a StringIndexOutOfBoundsException with no detail message.
- StringIndexOutOfBoundsException(int) - Constructor for exception java.lang.StringIndexOutOfBoundsException
-
Constructs a new StringIndexOutOfBoundsException class with an argument indicating the illegal index.
- StringIndexOutOfBoundsException(String) - Constructor for exception java.lang.StringIndexOutOfBoundsException
-
Constructs a StringIndexOutOfBoundsException with the specified detail message.
- StringReader - Class in java.io
-
A specialized
Reader that reads characters from a
String in
a sequential manner.
- StringReader(String) - Constructor for class java.io.StringReader
-
Construct a new StringReader with str as source.
- StringTokenizer - Class in java.util
-
The StringTokenizer class allows an application to break a string
into tokens by performing code point comparison.
- StringTokenizer(String) - Constructor for class java.util.StringTokenizer
-
Constructs a new StringTokenizer for the parameter string using
whitespace as the delimiter.
- StringTokenizer(String, String) - Constructor for class java.util.StringTokenizer
-
Constructs a new StringTokenizer for the parameter string using
the specified delimiters.
- StringTokenizer(String, String, boolean) - Constructor for class java.util.StringTokenizer
-
Constructs a new StringTokenizer for the parameter string using
the specified delimiters, returning the delimiters as tokens if the
parameter returnDelimiters is true.
- StringWriter - Class in java.io
-
- StringWriter() - Constructor for class java.io.StringWriter
-
- StringWriter(int) - Constructor for class java.io.StringWriter
-
- subList(int, int) - Method in class java.util.AbstractList
-
Returns a part of consecutive elements of this list as a view.
- subList(int, int) - Method in interface java.util.List
-
Returns a List of the specified portion of this List from the given start
index to the end index minus one.
- subList(int, int) - Method in class java.util.Vector
-
Returns a List of the specified portion of this vector from the start
index to one less than the end index.
- subMap(K, boolean, K, boolean) - Method in interface java.util.NavigableMap
-
Answers a view of part of the map whose keys is from startKey to endKey.
- subMap(K, K) - Method in interface java.util.SortedMap
-
Returns a sorted map over a range of this sorted map with all keys
greater than or equal to the specified startKey and less than the
specified endKey.
- subMap(K, boolean, K, boolean) - Method in class java.util.TreeMap
-
Answers a view of part of the map whose keys is from startKey to endKey.
- subMap(K, K) - Method in class java.util.TreeMap
-
Returns a sorted map over a range of this sorted map with all keys
greater than or equal to the specified startKey and less than the
specified endKey.
- subSequence(int, int) - Method in interface java.lang.CharSequence
-
Returns a CharSequence from the start index (inclusive)
to the end index (exclusive) of this sequence.
- subSequence(int, int) - Method in class java.lang.String
-
- subSequence(int, int) - Method in class java.lang.StringBuffer
-
- subSequence(int, int) - Method in class java.lang.StringBuilder
-
- subSet(E, boolean, E, boolean) - Method in interface java.util.NavigableSet
-
Answers a NavigableSet of the specified portion of this set which
contains elements greater (or equal to, depends on startInclusive) the
start element but less than (or equal to, depends on endInclusive) the
end element.
- subSet(E, E) - Method in interface java.util.SortedSet
-
Returns a SortedSet of the specified portion of this
SortedSet which contains elements greater or equal to the start
element but less than the end element.
- subSet(E, boolean, E, boolean) - Method in class java.util.TreeSet
-
Answers a NavigableSet of the specified portion of this set which
contains elements greater (or equal to, depends on startInclusive) the
start element but less than (or equal to, depends on endInclusive) the
end element.
- subSet(E, E) - Method in class java.util.TreeSet
-
Answers a SortedSet of the specified portion of this TreeSet which
contains elements greater or equal to the start element but less than the
end element.
- 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.
- SUNDAY - Static variable in class java.util.Calendar
-
Value of the DAY_OF_WEEK field indicating Sunday.
- SuppressWarnings - Annotation Type in java.lang
-
An annotation that indicates a compiler should suppress any warnings of the
type specified in the
SuppressWarnings.value().
- swap(List<?>, int, int) - Static method in class java.util.Collections
-
Swaps the elements of list list at indices index1 and
index2.
- synchronizedCollection(Collection<T>) - Static method in class java.util.Collections
-
Returns a wrapper on the specified collection which synchronizes all
access to the collection.
- synchronizedList(List<T>) - Static method in class java.util.Collections
-
Returns a wrapper on the specified List which synchronizes all access to
the List.
- synchronizedMap(Map<K, V>) - Static method in class java.util.Collections
-
Returns a wrapper on the specified map which synchronizes all access to
the map.
- synchronizedSet(Set<E>) - Static method in class java.util.Collections
-
Returns a wrapper on the specified set which synchronizes all access to
the set.
- synchronizedSortedMap(SortedMap<K, V>) - Static method in class java.util.Collections
-
Returns a wrapper on the specified sorted map which synchronizes all
access to the sorted map.
- synchronizedSortedSet(SortedSet<E>) - Static method in class java.util.Collections
-
Returns a wrapper on the specified sorted set which synchronizes all
access to the sorted set.
- System - Class in java.lang
-
The System class contains several useful class fields and methods.
- System() - Constructor for class java.lang.System
-
- tailMap(K, boolean) - Method in interface java.util.NavigableMap
-
Answers a view of the tail of the map whose keys are bigger than (or
equal to, depends on inclusive argument) startKey.
- tailMap(K) - Method in interface java.util.SortedMap
-
Returns a sorted map over a range of this sorted map with all keys that
are greater than or equal to the specified startKey.
- tailMap(K, boolean) - Method in class java.util.TreeMap
-
Answers a view of the tail of the map whose keys are bigger than (or
equal to, depends on inclusive argument) startKey.
- tailMap(K) - Method in class java.util.TreeMap
-
Returns a sorted map over a range of this sorted map with all keys that
are greater than or equal to the specified startKey.
- tailSet(E, boolean) - Method in interface java.util.NavigableSet
-
Answers a NavigableSet of the specified portion of this set which
contains elements greater (or equal to, depends on startInclusive) the
start element.
- tailSet(E) - Method in interface java.util.SortedSet
-
Returns a SortedSet of the specified portion of this
SortedSet which contains elements greater or equal to the start
element.
- tailSet(E, boolean) - Method in class java.util.TreeSet
-
Answers a NavigableSet of the specified portion of this set which
contains elements greater (or equal to, depends on startInclusive) the
start element.
- tailSet(E) - Method in class java.util.TreeSet
-
Answers a SortedSet of the specified portion of this TreeSet which
contains elements greater or equal to the start element.
- tan(double) - Static method in class java.lang.Math
-
Returns the trigonometric tangent of an angle.
- Target - Annotation Type in java.lang.annotation
-
- 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 with a specific target object whose run method is called.
- Thread(Runnable, String) - Constructor for class java.lang.Thread
-
Allocates a new Thread object with the given target and name.
- Thread(String) - Constructor for class java.lang.Thread
-
Allocates a new Thread object with the given name.
- ThreadLocal<T> - Class in java.lang
-
- ThreadLocal() - Constructor for class java.lang.ThreadLocal
-
- ThreadLocalRandom - Class in java.util.concurrent
-
- 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 error message string.
- 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) - Constructor for class java.lang.Throwable
-
Constructs a new Throwable with the specified error message.
- Throwable(String, Throwable) - Constructor for class java.lang.Throwable
-
Constructs a new throwable with the specified detail message and cause.
- throwException(Class<?>, Class<? extends Throwable>) - Static method in class java.lang.invoke.MethodHandles
-
Deprecated.
- THURSDAY - Static variable in class java.util.Calendar
-
Value of the DAY_OF_WEEK field indicating Thursday.
- 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.
- Timer - Class in java.util
-
- Timer() - Constructor for class java.util.Timer
-
- TimerTask - Class in java.util
-
- TimerTask() - Constructor for class java.util.TimerTask
-
- TimeZone - Class in java.util
-
TimeZone represents a time zone offset, and also figures out daylight savings.
- TimeZone() - Constructor for class java.util.TimeZone
-
- toArray() - Method in class java.util.AbstractCollection
-
Returns a new array containing all elements contained in this
ArrayList.
- toArray(T[]) - Method in class java.util.AbstractCollection
-
Returns an array containing all elements contained in this
ArrayList.
- toArray() - Method in class java.util.AbstractList
-
Returns a new array containing all elements contained in this
ArrayList.
- toArray(T[]) - Method in class java.util.AbstractList
-
Returns an array containing all elements contained in this
ArrayList.
- toArray() - Method in class java.util.ArrayList
-
Returns a new array containing all elements contained in this
ArrayList.
- toArray(T[]) - Method in class java.util.ArrayList
-
Returns an array containing all elements contained in this
ArrayList.
- toArray() - Method in interface java.util.Collection
-
Returns a new array containing all elements contained in this Collection.
- toArray(T[]) - Method in interface java.util.Collection
-
Returns an array containing all elements contained in this Collection.
- toArray() - Method in class java.util.LinkedList
-
Returns a new array containing all elements contained in this
LinkedList.
- toArray(T[]) - Method in class java.util.LinkedList
-
Returns an array containing all elements contained in this
LinkedList.
- toArray() - Method in interface java.util.List
-
Returns an array containing all elements contained in this List.
- toArray(T[]) - Method in interface java.util.List
-
Returns an array containing all elements contained in this List.
- toArray() - Method in class java.util.PriorityQueue
-
Returns all the elements in an array.
- toArray(T[]) - Method in class java.util.PriorityQueue
-
Returns all the elements in an array, and the type of the result array is
the type of the argument array.
- toArray() - Method in interface java.util.Set
-
Returns an array containing all elements contained in this set.
- toArray(T[]) - Method in interface java.util.Set
-
Returns an array containing all elements contained in this set.
- toArray() - Method in class java.util.Vector
-
Returns a new array containing all elements contained in this vector.
- toArray(T[]) - Method in class java.util.Vector
-
Returns an array containing all elements contained in this vector.
- toASCIIString() - Method in class java.net.URI
-
- toBinaryString(int) - Static method in class java.lang.Integer
-
Creates a string representation of the integer argument as an unsigned integer in base
2.
- toByteArray() - Method in class java.io.ByteArrayOutputStream
-
Creates a newly allocated byte array.
- 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 Unicode code point, codePoint, into a UTF-16
encoded sequence and copies the value(s) into the
char[] dst, starting at the index
dstIndex.
- toChars(int) - Static method in class java.lang.Character
-
Converts the Unicode code point, codePoint, into a UTF-16
encoded sequence that is returned as a char[].
- toCodePoint(char, char) - Static method in class java.lang.Character
-
Converts a surrogate pair into a Unicode code point.
- toDegrees(double) - Static method in class java.lang.Math
-
Converts an angle measured in radians to the equivalent angle measured in degrees.
- toHexString(int) - Static method in class java.lang.Integer
-
Creates a string representation of the integer argument as an unsigned integer in base
16.
- toLowerCase(char) - Static method in class java.lang.Character
-
The given character is mapped to its lowercase equivalent; if the character has no lowercase equivalent, the character itself is returned.
- toLowerCase() - Method in class java.lang.String
-
Converts all of the characters in this String to lower case.
- toOctalString(int) - Static method in class java.lang.Integer
-
Creates a string representation of the integer argument as an unsigned integer in base 8.
- toPattern() - Method in class java.text.SimpleDateFormat
-
Deprecated.
- toRadians(double) - Static method in class java.lang.Math
-
Converts an angle measured in degrees to the equivalent angle measured in radians.
- toString() - Method in class java.io.ByteArrayOutputStream
-
Converts the buffer's contents into a string, translating bytes into characters according to the platform's default character encoding.
- toString() - Method in class java.io.StringWriter
-
- toString() - Method in interface java.lang.annotation.Annotation
-
Returns a string representation of this annotation.
- toString() - Method in class java.lang.Boolean
-
Returns a String object representing this Boolean's value.
- toString() - Method in class java.lang.Byte
-
Returns a String object representing this Byte's value.
- toString() - Method in class java.lang.Character
-
Returns a String object representing this character's value.
- toString() - Method in interface java.lang.CharSequence
-
Returns a string with the same characters in the same order as in this
sequence.
- toString() - Method in class java.lang.Class
-
Converts the object to a string.
- toString() - Method in class java.lang.Double
-
Returns a String representation of this Double object.
- toString(double) - Static method in class java.lang.Double
-
Creates a string representation of the double argument.
- toString() - Method in class java.lang.Enum
-
- toString() - Method in class java.lang.Float
-
Returns a String representation of this Float object.
- toString(float) - Static method in class java.lang.Float
-
Returns a String representation for the specified float value.
- toString() - Method in class java.lang.Integer
-
Returns a String object representing this Integer's value.
- toString(int) - Static method in class java.lang.Integer
-
Returns a new String object representing the specified integer.
- toString(int, int) - Static method in class java.lang.Integer
-
Creates a string representation of the first argument in the radix specified by the second argument.
- toString() - Method in class java.lang.Long
-
Returns a String object representing this Long's value.
- toString(long) - Static method in class java.lang.Long
-
Returns a new String object representing the specified integer.
- toString(long, int) - Static method in class java.lang.Long
-
Creates a string representation of the first argument in the radix specified by the second argument.
- toString() - Method in class java.lang.Object
-
Returns a string representation of the object.
- toString() - Method in class java.lang.Short
-
Returns a String object representing this Short's value.
- toString() - Method in class java.lang.String
-
This object (which is already a string!) is itself returned.
- toString() - Method in class java.lang.StringBuffer
-
Converts to a string representing the data in this string buffer.
- toString() - Method in class java.lang.StringBuilder
-
Converts to a string representing the data in this string builder.
- toString() - Method in class java.lang.Thread
-
Returns a string representation of this thread, including the thread's name and priority.
- toString() - Method in class java.lang.Throwable
-
Returns a short description of this Throwable object.
- toString() - Method in class java.net.URI
-
- toString() - Method in class java.util.AbstractCollection
-
Returns the string representation of this Collection.
- toString() - Method in class java.util.AbstractMap.SimpleEntry
-
Answers a String representation of this entry.
- toString() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Answers a String representation of this entry.
- toString() - Method in class java.util.AbstractMap
-
Returns the string representation of this map.
- toString(boolean[]) - Static method in class java.util.Arrays
-
Creates a String representation of the boolean[] passed.
- toString(byte[]) - Static method in class java.util.Arrays
-
Creates a String representation of the byte[] passed.
- toString(char[]) - Static method in class java.util.Arrays
-
Creates a String representation of the char[] passed.
- toString(double[]) - Static method in class java.util.Arrays
-
Creates a String representation of the double[] passed.
- toString(float[]) - Static method in class java.util.Arrays
-
Creates a String representation of the float[] passed.
- toString(int[]) - Static method in class java.util.Arrays
-
Creates a String representation of the int[] passed.
- toString(long[]) - Static method in class java.util.Arrays
-
Creates a String representation of the long[] passed.
- toString(short[]) - Static method in class java.util.Arrays
-
Creates a String representation of the short[] passed.
- toString(Object[]) - Static method in class java.util.Arrays
-
Creates a String representation of the Object[] passed.
- toString() - Method in class java.util.BitSet
-
Returns a string containing a concise, human-readable description of the
receiver.
- toString() - Method in class java.util.Date
-
Converts this Date object to a String of the form: dow mon dd hh:mm:ss zzz yyyy where: dow is the day of the week (Sun, Mon, Tue, Wed, Thu, Fri, Sat).
- toString() - Method in class java.util.Hashtable
-
Returns the string representation of this Hashtable.
- toString(Object) - Static method in class java.util.Objects
-
- toString(Object, String) - Static method in class java.util.Objects
-
- toString() - Method in class java.util.Vector
-
Returns the string representation of this vector.
- totalMemory() - Method in class java.lang.Runtime
-
Returns the total amount of memory in the Java Virtual Machine.
- toUpperCase(char) - Static method in class java.lang.Character
-
Converts the character argument to uppercase; if the character has no uppercase equivalent, the character itself is returned.
- toUpperCase() - Method in class java.lang.String
-
Converts all of the characters in this String to upper case.
- TreeMap<K,V> - Class in java.util
-
TreeMap is an implementation of SortedMap.
- TreeMap() - Constructor for class java.util.TreeMap
-
Constructs a new empty TreeMap instance.
- TreeMap(Comparator<? super K>) - Constructor for class java.util.TreeMap
-
Constructs a new empty TreeMap instance with the specified
comparator.
- TreeMap(Map<? extends K, ? extends V>) - Constructor for class java.util.TreeMap
-
Constructs a new TreeMap instance containing the mappings from
the specified map and using natural ordering.
- TreeMap(SortedMap<K, ? extends V>) - Constructor for class java.util.TreeMap
-
Constructs a new TreeMap instance containing the mappings from
the specified SortedMap and using the same comparator.
- TreeSet<E> - Class in java.util
-
TreeSet is an implementation of SortedSet.
- TreeSet() - Constructor for class java.util.TreeSet
-
Constructs a new empty instance of TreeSet which uses natural
ordering.
- TreeSet(Collection<? extends E>) - Constructor for class java.util.TreeSet
-
Constructs a new instance of TreeSet which uses natural ordering
and containing the unique elements in the specified collection.
- TreeSet(Comparator<? super E>) - Constructor for class java.util.TreeSet
-
Constructs a new empty instance of TreeSet which uses the
specified comparator.
- TreeSet(SortedSet<E>) - Constructor for class java.util.TreeSet
-
Constructs a new instance of TreeSet containing the elements of
the specified SortedSet and using the same Comparator.
- trim() - Method in class java.lang.String
-
Removes white space from both ends of this string.
- trimToSize() - Method in class java.lang.StringBuffer
-
- trimToSize() - Method in class java.lang.StringBuilder
-
- trimToSize() - Method in class java.util.ArrayList
-
Sets the capacity of this ArrayList to be the same as the current
size.
- trimToSize() - Method in class java.util.Vector
-
Sets the capacity of this vector to be the same as the size.
- TRUE - Static variable in class java.lang.Boolean
-
The Boolean object corresponding to the primitive value true.
- TUESDAY - Static variable in class java.util.Calendar
-
Value of the DAY_OF_WEEK field indicating Tuesday.
- TWITTER_SEARCH - Static variable in class java.text.DateFormatPatterns
-
Pattern for parsing/formatting Twitter search timestamp.
- TWITTER_TIMELINE - Static variable in class java.text.DateFormatPatterns
-
Pattern for parsing/formatting Twitter timeline timestamp.
- TYPE - Static variable in class java.lang.Byte
-
- TYPE - Static variable in class java.lang.Double
-
- TYPE - Static variable in class java.lang.Integer
-
- type() - Method in class java.lang.invoke.CallSite
-
Deprecated.
- type() - Method in class java.lang.invoke.MethodHandle
-
Deprecated.
- TYPE - Static variable in class java.lang.Long
-
- Type - Interface in java.lang.reflect
-
- TYPE - Static variable in class java.lang.Void
-
- valueOf(String) - Static method in enum java.lang.annotation.ElementType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum java.lang.annotation.RetentionPolicy
-
Returns the enum constant of this type with the specified name.
- valueOf(boolean) - Static method in class java.lang.Boolean
-
Returns the object instance of i
- valueOf(String) - Static method in class java.lang.Boolean
-
- valueOf(byte) - Static method in class java.lang.Byte
-
Returns the object instance of i
- valueOf(char) - Static method in class java.lang.Character
-
Returns the object instance of i
- valueOf(String) - Static method in class java.lang.Double
-
Returns a new Double object initialized to the value represented by the specified string.
- valueOf(double) - Static method in class java.lang.Double
-
Returns the object instance of i
- valueOf(Class<T>, String) - Static method in class java.lang.Enum
-
- valueOf(String) - Static method in class java.lang.Float
-
Returns the floating point value represented by the specified String.
- valueOf(float) - Static method in class java.lang.Float
-
Returns the object instance of i
- valueOf(String) - Static method in class java.lang.Integer
-
Returns a new Integer object initialized to the value of the specified String.
- valueOf(String, int) - Static method in class java.lang.Integer
-
Returns a new Integer object initialized to the value of the specified String.
- valueOf(int) - Static method in class java.lang.Integer
-
Returns the object instance of i
- valueOf(long) - Static method in class java.lang.Long
-
Returns the object instance of i
- valueOf(short) - Static method in class java.lang.Short
-
Returns the object instance of i
- valueOf(boolean) - Static method in class java.lang.String
-
Returns the string representation of the boolean argument.
- valueOf(char) - Static method in class java.lang.String
-
Returns the string representation of the char argument.
- valueOf(char[], int, int) - Static method in class java.lang.String
-
Returns the string representation of a specific subarray of the char array argument.
- valueOf(double) - Static method in class java.lang.String
-
Returns the string representation of the double argument.
- valueOf(float) - Static method in class java.lang.String
-
Returns the string representation of the float argument.
- valueOf(int) - Static method in class java.lang.String
-
Returns the string representation of the int argument.
- valueOf(long) - Static method in class java.lang.String
-
Returns the string representation of the long argument.
- valueOf(Object) - Static method in class java.lang.String
-
Returns the string representation of the Object argument.
- values() - Static method in enum java.lang.annotation.ElementType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum java.lang.annotation.RetentionPolicy
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Method in class java.util.AbstractMap
-
Returns a collection of the values contained in this map.
- values() - Method in class java.util.HashMap
-
Returns a collection of the values contained in this map.
- values() - Method in class java.util.Hashtable
-
Returns a collection of the values contained in this Hashtable.
- values() - Method in class java.util.IdentityHashMap
-
Returns a collection of the values contained in this map.
- values() - Method in class java.util.LinkedHashMap
-
Returns a collection of the values contained in this map.
- values() - Method in interface java.util.Map
-
Returns a Collection of the values contained in this Map.
- values() - Method in class java.util.TreeMap
-
Returns a collection of the values contained in this map.
- Vector<E> - Class in java.util
-
Vector is a variable size contiguous indexable array of objects.
- Vector() - Constructor for class java.util.Vector
-
Constructs a new vector using the default capacity.
- Vector(int) - Constructor for class java.util.Vector
-
Constructs a new vector using the specified capacity.
- Vector(int, int) - Constructor for class java.util.Vector
-
Constructs a new vector using the specified capacity and capacity
increment.
- Vector(Collection<? extends E>) - Constructor for class java.util.Vector
-
Constructs a new instance of Vector containing the elements in
collection.
- VERBOSE_DATE - Static variable in class java.text.DateFormatPatterns
-
Pattern for a verbose date
- VERBOSE_TIME - Static variable in class java.text.DateFormatPatterns
-
Pattern for a verbose time
- VERBOSE_TIMESTAMP - Static variable in class java.text.DateFormatPatterns
-
Pattern for a verbose timestamp
- VirtualMachineError - Error in java.lang
-
Thrown to indicate that the Java Virtual Machine is broken or has run out of resources necessary for it to continue operating.
- VirtualMachineError() - Constructor for error java.lang.VirtualMachineError
-
Constructs a VirtualMachineError with no detail message.
- VirtualMachineError(String) - Constructor for error java.lang.VirtualMachineError
-
Constructs a VirtualMachineError with the specified detail message.
- Void - Class in java.lang
-
- Void() - Constructor for class java.lang.Void
-
- wait() - Method in class java.lang.Object
-
Causes current thread to wait until another thread invokes the
method or the
method for this object.
- wait(long) - Method in class java.lang.Object
-
Causes current thread to wait until either another thread invokes the
method or the
method for this object, or a specified amount of time has elapsed.
- wait(long, int) - Method in class java.lang.Object
-
Causes current thread to wait until another thread invokes the
method or the
method for this object, or some other thread interrupts the current thread, or a certain amount of real time has elapsed.
- WeakReference - Class in java.lang.ref
-
This class provides support for weak references.
- WeakReference(Object) - Constructor for class java.lang.ref.WeakReference
-
Creates a new weak reference that refers to the given object.
- WEDNESDAY - Static variable in class java.util.Calendar
-
Value of the DAY_OF_WEEK field indicating Wednesday.
- WEEK_OF_MONTH - Static variable in class java.util.Calendar
-
Field number for get and set indicating the
week number within the current month.
- WEEK_OF_YEAR - Static variable in class java.util.Calendar
-
Field number for get and set indicating the
week number within the current year.
- wrap() - Method in class java.lang.invoke.MethodType
-
Deprecated.
- write(byte[], int, int) - Method in class java.io.ByteArrayOutputStream
-
Writes len bytes from the specified byte array starting at offset off to this byte array output stream.
- write(int) - Method in class java.io.ByteArrayOutputStream
-
Writes the specified byte to this byte array output stream.
- write(byte[]) - Method in interface java.io.DataOutput
-
Writes to the output stream all the bytes in array b.
- write(byte[], int, int) - Method in interface java.io.DataOutput
-
Writes len bytes from array b, in order, to the output stream.
- write(int) - Method in interface java.io.DataOutput
-
Writes to the output stream the eight low-order bits of the argument b.
- write(byte[], int, int) - Method in class java.io.DataOutputStream
-
Writes len bytes from the specified byte array starting at offset off to the underlying output stream.
- write(int) - Method in class java.io.DataOutputStream
-
Writes the specified byte (the low eight bits of the argument b) to the underlying output stream.
- write(byte[]) - Method in class java.io.OutputStream
-
Writes b.length bytes from the specified byte array to this output stream.
- write(byte[], int, int) - Method in class java.io.OutputStream
-
Writes len bytes from the specified byte array starting at offset off to this output stream.
- write(int) - Method in class java.io.OutputStream
-
Writes the specified byte to this output stream.
- write(char[], int, int) - Method in class java.io.OutputStreamWriter
-
Write a portion of an array of characters.
- write(int) - Method in class java.io.OutputStreamWriter
-
Write a single character.
- write(String, int, int) - Method in class java.io.OutputStreamWriter
-
Write a portion of a string.
- write(byte[], int, int) - Method in class java.io.PrintStream
-
Write len bytes from the specified byte array starting at offset off to this stream.
- write(int) - Method in class java.io.PrintStream
-
Write the specified byte to this stream.
- write(char[], int, int) - Method in class java.io.StringWriter
-
- write(String, int, int) - Method in class java.io.StringWriter
-
- write(int) - Method in class java.io.StringWriter
-
- write(String) - Method in class java.io.StringWriter
-
- write(char[]) - Method in class java.io.StringWriter
-
- write(char[]) - Method in class java.io.Writer
-
Write an array of characters.
- write(char[], int, int) - Method in class java.io.Writer
-
Write a portion of an array of characters.
- write(int) - Method in class java.io.Writer
-
Write a single character.
- write(String) - Method in class java.io.Writer
-
Write a string.
- write(String, int, int) - Method in class java.io.Writer
-
Write a portion of a string.
- writeBoolean(boolean) - Method in interface java.io.DataOutput
-
Writes a boolean value to this output stream.
- writeBoolean(boolean) - Method in class java.io.DataOutputStream
-
Writes a boolean to the underlying output stream as a 1-byte value.
- writeByte(int) - Method in interface java.io.DataOutput
-
Writes to the output stream the eight low- order bits of the argument v.
- writeByte(int) - Method in class java.io.DataOutputStream
-
Writes out a byte to the underlying output stream as a 1-byte value.
- writeChar(int) - Method in interface java.io.DataOutput
-
Writes a char value, which is comprised of two bytes, to the output stream.
- writeChar(int) - Method in class java.io.DataOutputStream
-
Writes a char to the underlying output stream as a 2-byte value, high byte first.
- writeChars(String) - Method in interface java.io.DataOutput
-
Writes every character in the string s, to the output stream, in order, two bytes per character.
- writeChars(String) - Method in class java.io.DataOutputStream
-
Writes a string to the underlying output stream as a sequence of characters.
- writeDouble(double) - Method in interface java.io.DataOutput
-
Writes a double value, which is comprised of eight bytes, to the output stream.
- writeDouble(double) - Method in class java.io.DataOutputStream
-
Converts the double argument to a long using the doubleToLongBits method in class Double, and then writes that long value to the underlying output stream as an 8-byte quantity, high byte first.
- writeFloat(float) - Method in interface java.io.DataOutput
-
Writes a float value, which is comprised of four bytes, to the output stream.
- writeFloat(float) - Method in class java.io.DataOutputStream
-
Converts the float argument to an int using the floatToIntBits method in class Float, and then writes that int value to the underlying output stream as a 4-byte quantity, high byte first.
- writeInt(int) - Method in interface java.io.DataOutput
-
Writes an int value, which is comprised of four bytes, to the output stream.
- writeInt(int) - Method in class java.io.DataOutputStream
-
Writes an int to the underlying output stream as four bytes, high byte first.
- writeLong(long) - Method in interface java.io.DataOutput
-
Writes an long value, which is comprised of four bytes, to the output stream.
- writeLong(long) - Method in class java.io.DataOutputStream
-
Writes a long to the underlying output stream as eight bytes, high byte first.
- Writer - Class in java.io
-
Abstract class for writing to character streams.
- Writer() - Constructor for class java.io.Writer
-
Create a new character-stream writer whose critical sections will synchronize on the writer itself.
- Writer(Object) - Constructor for class java.io.Writer
-
Create a new character-stream writer whose critical sections will synchronize on the given object.
- writeShort(int) - Method in interface java.io.DataOutput
-
Writes two bytes to the output stream to represent the value of the argument.
- writeShort(int) - Method in class java.io.DataOutputStream
-
Writes a short to the underlying output stream as two bytes, high byte first.
- writeUTF(String) - Method in interface java.io.DataOutput
-
Writes two bytes of length information to the output stream, followed by the Java modified UTF representation of every character in the string s.
- writeUTF(String) - Method in class java.io.DataOutputStream
-
Writes a string to the underlying output stream using UTF-8 encoding in a machine-independent manner.