Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Uses of Annotation Type
java.lang.Override
Packages that use Override
Provides for system input and output through data streams, serialization and the file system.
Provides classes that are fundamental to the design of the Java programming language.
Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
Utility classes commonly useful in concurrent programming.
Provides the classes for implementing XML Catalogs OASIS Standard V1.1, 7 October 2005.
The Doclet API provides an environment which, in conjunction with the Language Model API and Compiler Tree API, allows clients to inspect the source-level structures of programs and libraries, including API comments embedded in the source.
Uses of Override in java.io
Methods in java.io with annotations of type Override
void
BufferedOutputStream.flush()
Flushes this buffered output stream.
void
BufferedOutputStream.write(byte[] b, int off, int len)
Writes len bytes from the specified byte array starting at offset off to this buffered output stream.
void
BufferedOutputStream.write(int b)
Writes the specified byte to this buffered output stream.
int
CharArrayReader.read(CharBuffer target)
Attempts to read characters into the specified character buffer.
boolean
FilePermission.equals(Object obj)
Checks two FilePermission objects for equality.
FilePermission.getActions()
Returns the "canonical string representation" of the actions.
int
FilePermission.hashCode()
Returns the hash code value for this object.
boolean
FilePermission.implies(Permission p)
Checks if this FilePermission object "implies" the specified permission.
FilePermission.newPermissionCollection()
Returns a new PermissionCollection object for storing FilePermission objects.
void
FilterOutputStream.close()
Closes this output stream and releases any system resources associated with the stream.
void
FilterOutputStream.flush()
Flushes this output stream and forces any buffered output bytes to be written out to the stream.
void
FilterOutputStream.write(byte[] b)
Writes b.length bytes to this output stream.
void
FilterOutputStream.write(byte[] b, int off, int len)
Writes len bytes from the specified byte array starting at offset off to this output stream.
void
FilterOutputStream.write(int b)
Writes the specified byte to this output stream.
OutputStreamWriter.append(CharSequence csq)
Appends the specified character sequence to this writer.
OutputStreamWriter.append(CharSequence csq, int start, int end)
Appends a subsequence of the specified character sequence to this writer.
void
PrintStream.close()
Closes the stream.
void
PrintStream.flush()
Flushes the stream.
void
PrintStream.write(byte[] buf)
Writes all bytes from the specified byte array to this stream.
void
PrintStream.write(byte[] buf, int off, int len)
Writes len bytes from the specified byte array starting at offset off to this stream.
void
PrintStream.write(int b)
Writes the specified byte to this stream.
UncheckedIOException.getCause()
Returns the cause of this exception.
WriteAbortedException.getCause()
Returns the exception that terminated the operation (the cause).
Uses of Override in java.lang
Methods in java.lang with annotations of type Override
Returns an Optional containing the nominal descriptor for this instance.
int
Boolean.hashCode()
Returns a hash code for this Boolean object.
Returns an Optional containing the nominal descriptor for this instance.
int
Byte.hashCode()
Returns a hash code for this Byte; equal to the result of invoking intValue().
Character.describeConstable()
Returns an Optional containing the nominal descriptor for this instance.
int
Character.hashCode()
Returns a hash code for this Character; equal to the result of invoking charValue().
Class.arrayType()
Returns a Class for an array type whose component type is described by this Class.
Returns the component type of this Class, if it describes an array type, or null otherwise.
Returns a nominal descriptor for this instance, if one can be constructed, or an empty Optional if one cannot be.
Returns the descriptor string of the entity (class, interface, array class, primitive type, or void) represented by this Class object.
<A extends AnnotationA
Class.getAnnotation(Class<A> annotationClass)
Returns this element's annotation for the specified type if such an annotation is present, else null.
Returns annotations that are present on this element.
<A extends AnnotationA[]
Class.getAnnotationsByType(Class<A> annotationClass)
Returns annotations that are associated with this element.
<A extends AnnotationA
Class.getDeclaredAnnotation(Class<A> annotationClass)
Returns this element's annotation for the specified type if such an annotation is directly present, else null.
Returns annotations that are directly present on this element.
<A extends AnnotationA[]
Class.getDeclaredAnnotationsByType(Class<A> annotationClass)
Returns this element's annotation(s) for the specified type if such annotations are either directly present or indirectly present.
boolean
Class.isAnnotationPresent(Class<? extends Annotation> annotationClass)
Returns true if an annotation for the specified type is present on this element, else false.
Returns an Optional containing the nominal descriptor for this instance, which is the instance itself.
int
Double.hashCode()
Returns a hash code for this Double object.
Resolves this instance as a ConstantDesc, the result of which is the instance itself.
Returns an enum descriptor EnumDesc for this instance, if one can be constructed, or an empty Optional if one cannot be.
Resolves this descriptor reflectively, emulating the resolution behavior of JVMS 5.4.3 and the access control behavior of JVMS 5.4.4.
Enum.EnumDesc.toString()
Returns a compact textual description of this constant description, including the bootstrap method, the constant name and type, and the static bootstrap arguments.
Returns an Optional containing the nominal descriptor for this instance, which is the instance itself.
int
Float.hashCode()
Returns a hash code for this Float object.
Resolves this instance as a ConstantDesc, the result of which is the instance itself.
Returns an Optional containing the nominal descriptor for this instance, which is the instance itself.
int
Integer.hashCode()
Returns a hash code for this Integer.
Resolves this instance as a ConstantDesc, the result of which is the instance itself.
Returns an Optional containing the nominal descriptor for this instance, which is the instance itself.
int
Long.hashCode()
Returns a hash code for this Long.
Resolves this instance as a ConstantDesc, the result of which is the instance itself.
<T extends AnnotationT
Module.getAnnotation(Class<T> annotationClass)
Returns this element's annotation for the specified type if such an annotation is present, else null. This method returns null when invoked on an unnamed module.
Returns annotations that are present on this element. This method returns an empty array when invoked on an unnamed module.
Returns annotations that are directly present on this element. This method returns an empty array when invoked on an unnamed module.
Module.toString()
Returns the string representation of this module.
ModuleLayer.toString()
Returns a string describing this module layer.
<A extends AnnotationA
Package.getAnnotation(Class<A> annotationClass)
Returns this element's annotation for the specified type if such an annotation is present, else null.
Package.getAnnotations()
Returns annotations that are present on this element.
<A extends AnnotationA[]
Package.getAnnotationsByType(Class<A> annotationClass)
Returns annotations that are associated with this element.
<A extends AnnotationA
Package.getDeclaredAnnotation(Class<A> annotationClass)
Returns this element's annotation for the specified type if such an annotation is directly present, else null.
Returns annotations that are directly present on this element.
<A extends AnnotationA[]
Package.getDeclaredAnnotationsByType(Class<A> annotationClass)
Returns this element's annotation(s) for the specified type if such annotations are either directly present or indirectly present.
int
Package.hashCode()
Return the hash code computed from the package name.
boolean
Package.isAnnotationPresent(Class<? extends Annotation> annotationClass)
Returns true if an annotation for the specified type is present on this element, else false.
Package.toString()
Returns the string representation of this Package.
int
ProcessHandle.compareTo(ProcessHandle other)
Compares this ProcessHandle with the specified ProcessHandle for order.
boolean
ProcessHandle.equals(Object other)
Returns true if other object is non-null, is of the same implementation, and represents the same system process; otherwise it returns false.
int
ProcessHandle.hashCode()
Returns a hash code value for this ProcessHandle.
abstract boolean
Record.equals(Object obj)
Indicates whether some other object is "equal to" this one.
abstract int
Record.hashCode()
Returns a hash code value for the record.
abstract String
Record.toString()
Returns a string representation of the record.
int
Runtime.Version.compareTo(Runtime.Version obj)
Compares this version to another.
boolean
Runtime.Version.equals(Object obj)
Determines whether this Version is equal to another object.
int
Runtime.Version.hashCode()
Returns the hash code of this version.
Runtime.Version.toString()
Returns a string representation of this version.
Returns an Optional containing the nominal descriptor for this instance.
int
Short.hashCode()
Returns a hash code for this Short; equal to the result of invoking intValue().
String.chars()
Returns a stream of int zero-extending the char values from this sequence.
String.codePoints()
Returns a stream of code point values from this sequence.
Returns an Optional containing the nominal descriptor for this instance, which is the instance itself.
boolean
String.isEmpty()
Returns true if, and only if, String.length() is 0.
Resolves this instance as a ConstantDesc, the result of which is the instance itself.
StringBuffer.append(boolean b)
Appends the string representation of the boolean argument to the sequence.
StringBuffer.append(char c)
Appends the string representation of the char argument to this sequence.
StringBuffer.append(char[] str)
Appends the string representation of the char array argument to this sequence.
StringBuffer.append(char[] str, int offset, int len)
Appends the string representation of a subarray of the char array argument to this sequence.
StringBuffer.append(CharSequence s)
Appends the specified CharSequence to this sequence.
StringBuffer.append(CharSequence s, int start, int end)
Appends a subsequence of the specified CharSequence to this sequence.
StringBuffer.append(double d)
Appends the string representation of the double argument to this sequence.
StringBuffer.append(float f)
Appends the string representation of the float argument to this sequence.
StringBuffer.append(int i)
Appends the string representation of the int argument to this sequence.
StringBuffer.append(long lng)
Appends the string representation of the long argument to this sequence.
StringBuffer.append(Object obj)
Appends the string representation of the Object argument.
StringBuffer.append(String str)
Appends the specified string to this character sequence.
StringBuffer.appendCodePoint(int codePoint)
Appends the string representation of the codePoint argument to this sequence.
int
StringBuffer.capacity()
Returns the current capacity.
char
StringBuffer.charAt(int index)
Returns the char value in this sequence at the specified index.
StringBuffer.chars()
Returns a stream of int zero-extending the char values from this sequence.
int
StringBuffer.codePointAt(int index)
Returns the character (Unicode code point) at the specified index.
int
StringBuffer.codePointBefore(int index)
Returns the character (Unicode code point) before the specified index.
int
StringBuffer.codePointCount(int beginIndex, int endIndex)
Returns the number of Unicode code points in the specified text range of this sequence.
StringBuffer.codePoints()
Returns a stream of code point values from this sequence.
int
StringBuffer.compareTo(StringBuffer another)
Compares two StringBuffer instances lexicographically.
StringBuffer.delete(int start, int end)
Removes the characters in a substring of this sequence.
StringBuffer.deleteCharAt(int index)
Removes the char at the specified position in this sequence.
void
StringBuffer.ensureCapacity(int minimumCapacity)
Ensures that the capacity is at least equal to the specified minimum.
void
StringBuffer.getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
Characters are copied from this sequence into the destination character array dst.
int
StringBuffer.indexOf(String str)
Returns the index within this string of the first occurrence of the specified substring.
int
StringBuffer.indexOf(String str, int fromIndex)
Returns the index within this string of the first occurrence of the specified substring, starting at the specified index.
StringBuffer.insert(int dstOffset, CharSequence s)
Inserts the specified CharSequence into this sequence.
StringBuffer.insert(int dstOffset, CharSequence s, int start, int end)
Inserts a subsequence of the specified CharSequence into this sequence.
StringBuffer.insert(int index, char[] str, int offset, int len)
Inserts the string representation of a subarray of the str array argument into this sequence.
StringBuffer.insert(int offset, boolean b)
Inserts the string representation of the boolean argument into this sequence.
StringBuffer.insert(int offset, char c)
Inserts the string representation of the char argument into this sequence.
StringBuffer.insert(int offset, char[] str)
Inserts the string representation of the char array argument into this sequence.
StringBuffer.insert(int offset, double d)
Inserts the string representation of the double argument into this sequence.
StringBuffer.insert(int offset, float f)
Inserts the string representation of the float argument into this sequence.
StringBuffer.insert(int offset, int i)
Inserts the string representation of the second int argument into this sequence.
StringBuffer.insert(int offset, long l)
Inserts the string representation of the long argument into this sequence.
StringBuffer.insert(int offset, Object obj)
Inserts the string representation of the Object argument into this character sequence.
StringBuffer.insert(int offset, String str)
Inserts the string into this character sequence.
int
StringBuffer.lastIndexOf(String str)
Returns the index within this string of the last occurrence of the specified substring.
int
StringBuffer.lastIndexOf(String str, int fromIndex)
Returns the index within this string of the last occurrence of the specified substring, searching backward starting at the specified index.
int
StringBuffer.length()
Returns the length (character count).
int
StringBuffer.offsetByCodePoints(int index, int codePointOffset)
Returns the index within this sequence that is offset from the given index by codePointOffset code points.
StringBuffer.replace(int start, int end, String str)
Replaces the characters in a substring of this sequence with characters in the specified String.
StringBuffer.reverse()
Causes this character sequence to be replaced by the reverse of the sequence.
void
StringBuffer.setCharAt(int index, char ch)
The character at the specified index is set to ch.
void
StringBuffer.setLength(int newLength)
Sets the length of the character sequence.
StringBuffer.subSequence(int start, int end)
Returns a new character sequence that is a subsequence of this sequence.
StringBuffer.substring(int start)
Returns a new String that contains a subsequence of characters currently contained in this character sequence.
StringBuffer.substring(int start, int end)
Returns a new String that contains a subsequence of characters currently contained in this sequence.
StringBuffer.toString()
Returns a string representing the data in this sequence.
void
StringBuffer.trimToSize()
Attempts to reduce storage used for the character sequence.
StringBuilder.append(boolean b)
Appends the string representation of the boolean argument to the sequence.
StringBuilder.append(char c)
Appends the string representation of the char argument to this sequence.
StringBuilder.append(char[] str)
Appends the string representation of the char array argument to this sequence.
StringBuilder.append(char[] str, int offset, int len)
Appends the string representation of a subarray of the char array argument to this sequence.
StringBuilder.append(CharSequence s)
Appends the specified character sequence to this Appendable.
StringBuilder.append(CharSequence s, int start, int end)
Appends a subsequence of the specified CharSequence to this sequence.
StringBuilder.append(double d)
Appends the string representation of the double argument to this sequence.
StringBuilder.append(float f)
Appends the string representation of the float argument to this sequence.
StringBuilder.append(int i)
Appends the string representation of the int argument to this sequence.
StringBuilder.append(long lng)
Appends the string representation of the long argument to this sequence.
StringBuilder.append(Object obj)
Appends the string representation of the Object argument.
StringBuilder.append(String str)
Appends the specified string to this character sequence.
StringBuilder.appendCodePoint(int codePoint)
Appends the string representation of the codePoint argument to this sequence.
char
StringBuilder.charAt(int index)
Returns the char value in this sequence at the specified index.
StringBuilder.chars()
Returns a stream of int zero-extending the char values from this sequence.
StringBuilder.codePoints()
Returns a stream of code point values from this sequence.
int
StringBuilder.compareTo(StringBuilder another)
Compares two StringBuilder instances lexicographically.
StringBuilder.delete(int start, int end)
Removes the characters in a substring of this sequence.
StringBuilder.deleteCharAt(int index)
Removes the char at the specified position in this sequence.
int
StringBuilder.indexOf(String str)
Returns the index within this string of the first occurrence of the specified substring.
int
StringBuilder.indexOf(String str, int fromIndex)
Returns the index within this string of the first occurrence of the specified substring, starting at the specified index.
StringBuilder.insert(int dstOffset, CharSequence s)
Inserts the specified CharSequence into this sequence.
StringBuilder.insert(int dstOffset, CharSequence s, int start, int end)
Inserts a subsequence of the specified CharSequence into this sequence.
StringBuilder.insert(int index, char[] str, int offset, int len)
Inserts the string representation of a subarray of the str array argument into this sequence.
StringBuilder.insert(int offset, boolean b)
Inserts the string representation of the boolean argument into this sequence.
StringBuilder.insert(int offset, char c)
Inserts the string representation of the char argument into this sequence.
StringBuilder.insert(int offset, char[] str)
Inserts the string representation of the char array argument into this sequence.
StringBuilder.insert(int offset, double d)
Inserts the string representation of the double argument into this sequence.
StringBuilder.insert(int offset, float f)
Inserts the string representation of the float argument into this sequence.
StringBuilder.insert(int offset, int i)
Inserts the string representation of the second int argument into this sequence.
StringBuilder.insert(int offset, long l)
Inserts the string representation of the long argument into this sequence.
StringBuilder.insert(int offset, Object obj)
Inserts the string representation of the Object argument into this character sequence.
StringBuilder.insert(int offset, String str)
Inserts the string into this character sequence.
int
StringBuilder.lastIndexOf(String str)
Returns the index within this string of the last occurrence of the specified substring.
int
StringBuilder.lastIndexOf(String str, int fromIndex)
Returns the index within this string of the last occurrence of the specified substring, searching backward starting at the specified index.
int
StringBuilder.length()
Returns the length (character count).
StringBuilder.replace(int start, int end, String str)
Replaces the characters in a substring of this sequence with characters in the specified String.
StringBuilder.reverse()
Causes this character sequence to be replaced by the reverse of the sequence.
StringBuilder.subSequence(int start, int end)
Returns a new character sequence that is a subsequence of this sequence.
StringBuilder.toString()
Returns a string representing the data in this sequence.
protected Object
Thread.clone()
Throws CloneNotSupportedException as a Thread can not be meaningfully cloned.
void
Thread.run()
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.
Uses of Override in java.util
Methods in java.util with annotations of type Override
void
ArrayList.forEach(Consumer<? super E> action)
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
boolean
ArrayList.removeIf(Predicate<? super E> filter)
Removes all of the elements of this collection that satisfy the given predicate.
void
ArrayList.replaceAll(UnaryOperator<E> operator)
Replaces each element of this list with the result of applying the operator to that element.
void
ArrayList.sort(Comparator<? super E> c)
Sorts this list according to the order induced by the specified Comparator.
ArrayList.spliterator()
Creates a late-binding and fail-fast Spliterator over the elements in this list.
Calendar.clone()
Creates and returns a copy of this object.
int
Calendar.compareTo(Calendar anotherCalendar)
Compares the time values (millisecond offsets from the Epoch) represented by two Calendar objects.
boolean
Calendar.equals(Object obj)
Compares this Calendar to the specified Object.
int
Calendar.hashCode()
Returns a hash code for this calendar.
Calendar.toString()
Return a string representation of this calendar.
default Spliterator<E>
Collection.spliterator()
Creates a Spliterator over the elements in this collection.
Currency.toString()
Returns the ISO 4217 currency code of this currency.
void
DoubleSummaryStatistics.accept(double value)
Records another value into the summary information.
DoubleSummaryStatistics.toString()
Returns a non-empty string representation of this object suitable for debugging.
void
GregorianCalendar.add(int field, int amount)
Adds the specified (signed) amount of time to the given calendar field, based on the calendar's rules.
GregorianCalendar.clone()
Creates and returns a copy of this object.
protected void
GregorianCalendar.computeFields()
Converts the time value (millisecond offset from the Epoch) to calendar field values.
protected void
GregorianCalendar.computeTime()
Converts calendar field values to the time value (millisecond offset from the Epoch).
boolean
GregorianCalendar.equals(Object obj)
Compares this GregorianCalendar to the specified Object.
int
GregorianCalendar.getActualMaximum(int field)
Returns the maximum value that this calendar field could have, taking into consideration the given time value and the current values of the getFirstDayOfWeek, getMinimalDaysInFirstWeek, getGregorianChange and getTimeZone methods.
int
GregorianCalendar.getActualMinimum(int field)
Returns the minimum value that this calendar field could have, taking into consideration the given time value and the current values of the getFirstDayOfWeek, getMinimalDaysInFirstWeek, getGregorianChange and getTimeZone methods.
GregorianCalendar.getCalendarType()
Returns "gregory" as the calendar type.
int
GregorianCalendar.getGreatestMinimum(int field)
Returns the highest minimum value for the given calendar field of this GregorianCalendar instance.
int
GregorianCalendar.getLeastMaximum(int field)
Returns the lowest maximum value for the given calendar field of this GregorianCalendar instance.
int
GregorianCalendar.getMaximum(int field)
Returns the maximum value for the given calendar field of this GregorianCalendar instance.
int
GregorianCalendar.getMinimum(int field)
Returns the minimum value for the given calendar field of this GregorianCalendar instance.
GregorianCalendar.getTimeZone()
Gets the time zone.
int
GregorianCalendar.getWeeksInWeekYear()
Returns the number of weeks in the week year represented by this GregorianCalendar.
int
GregorianCalendar.getWeekYear()
Returns the week year represented by this GregorianCalendar.
int
GregorianCalendar.hashCode()
Generates the hash code for this GregorianCalendar object.
final boolean
GregorianCalendar.isWeekDateSupported()
Returns true indicating this GregorianCalendar supports week dates.
void
GregorianCalendar.roll(int field, boolean up)
Adds or subtracts (up/down) a single unit of time on the given time field without changing larger fields.
void
GregorianCalendar.roll(int field, int amount)
Adds a signed amount to the specified calendar field without changing larger fields.
void
GregorianCalendar.setTimeZone(TimeZone zone)
Sets the time zone with the given time zone value.
void
GregorianCalendar.setWeekDate(int weekYear, int weekOfYear, int dayOfWeek)
Sets this GregorianCalendar to the date given by the date specifiers - weekYear, weekOfYear, and dayOfWeek.
HashMap.clone()
Returns a shallow copy of this HashMap instance: the keys and values themselves are not cloned.
HashMap.compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
Attempts to compute a mapping for the specified key and its current mapped value (or null if there is no current mapping).
HashMap.computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)
If the specified key is not already associated with a value (or is mapped to null), attempts to compute its value using the given mapping function and enters it into this map unless null.
HashMap.computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
If the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value.
void
HashMap.forEach(BiConsumer<? super K,? super V> action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
HashMap.getOrDefault(Object key, V defaultValue)
Returns the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key.
HashMap.merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction)
If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value.
HashMap.putIfAbsent(K key, V value)
If the specified key is not already associated with a value (or is mapped to null) associates it with the given value and returns null, else returns the current value.
boolean
HashMap.remove(Object key, Object value)
Removes the entry for the specified key only if it is currently mapped to the specified value.
boolean
HashMap.replace(K key, V oldValue, V newValue)
Replaces the entry for the specified key only if currently mapped to the specified value.
HashMap.replace(K key, V value)
Replaces the entry for the specified key only if it is currently mapped to some value.
void
HashMap.replaceAll(BiFunction<? super K,? super V,? extends V> function)
Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.
HashSet.toArray()
Returns an array containing all of the elements in this collection.
<TT[]
HashSet.toArray(T[] a)
Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.
Hashtable.compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
Attempts to compute a mapping for the specified key and its current mapped value (or null if there is no current mapping).
Hashtable.computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)
If the specified key is not already associated with a value (or is mapped to null), attempts to compute its value using the given mapping function and enters it into this map unless null.
Hashtable.computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
If the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value.
void
Hashtable.forEach(BiConsumer<? super K,? super V> action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
Hashtable.getOrDefault(Object key, V defaultValue)
Returns the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key.
Hashtable.merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction)
If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value.
Hashtable.putIfAbsent(K key, V value)
If the specified key is not already associated with a value (or is mapped to null) associates it with the given value and returns null, else returns the current value.
boolean
Hashtable.remove(Object key, Object value)
Removes the entry for the specified key only if it is currently mapped to the specified value.
boolean
Hashtable.replace(K key, V oldValue, V newValue)
Replaces the entry for the specified key only if currently mapped to the specified value.
Hashtable.replace(K key, V value)
Replaces the entry for the specified key only if it is currently mapped to some value.
void
Hashtable.replaceAll(BiFunction<? super K,? super V,? extends V> function)
Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.
boolean
HexFormat.equals(Object o)
Returns true if the other object is a HexFormat with the same parameters.
int
HexFormat.hashCode()
Returns a hashcode for this HexFormat.
HexFormat.toString()
Returns a description of the formatter parameters for uppercase, delimiter, prefix, and suffix.
void
IdentityHashMap.forEach(BiConsumer<? super K,? super V> action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
void
IdentityHashMap.replaceAll(BiFunction<? super K,? super V,? extends V> function)
Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.
void
IntSummaryStatistics.accept(int value)
Records a new value into the summary information
IntSummaryStatistics.toString()
Returns a non-empty string representation of this object suitable for debugging.
LinkedHashSet.spliterator()
Creates a late-binding and fail-fast Spliterator over the elements in this set.
LinkedList.spliterator()
Creates a late-binding and fail-fast Spliterator over the elements in this list.
default Spliterator<E>
Creates a Spliterator over the elements in this list.
Locale.clone()
Overrides Cloneable.
boolean
Locale.equals(Object obj)
Returns true if this Locale is equal to another object.
int
Locale.hashCode()
Override hashCode.
final String
Locale.toString()
Returns a string representation of this Locale object, consisting of language, country, variant, script, and extensions as below: language + "_" + country + "_" + (variant + "_#" | "#") + script + "_" + extensions Language is always lower case, country is always upper case, script is always title case, and extensions are always lower case.
boolean
Locale.LanguageRange.equals(Object obj)
Compares this object to the specified object.
int
Locale.LanguageRange.hashCode()
Returns a hash code value for the object.
Locale.LanguageRange.toString()
Returns an informative string representation of this LanguageRange object, consisting of language range and weight if the range is weighted and the weight is less than the max weight.
void
LongSummaryStatistics.accept(int value)
Records a new int value into the summary information.
void
LongSummaryStatistics.accept(long value)
Records a new long value into the summary information.
LongSummaryStatistics.toString()
Returns a non-empty string representation of this object suitable for debugging.
boolean
Optional.equals(Object obj)
Indicates whether some other object is "equal to" this Optional.
int
Optional.hashCode()
Returns the hash code of the value, if present, otherwise 0 (zero) if no value is present.
Optional.toString()
Returns a non-empty string representation of this Optional suitable for debugging.
boolean
OptionalDouble.equals(Object obj)
Indicates whether some other object is "equal to" this OptionalDouble.
int
OptionalDouble.hashCode()
Returns the hash code of the value, if present, otherwise 0 (zero) if no value is present.
OptionalDouble.toString()
Returns a non-empty string representation of this OptionalDouble suitable for debugging.
boolean
OptionalInt.equals(Object obj)
Indicates whether some other object is "equal to" this OptionalInt.
int
OptionalInt.hashCode()
Returns the hash code of the value, if present, otherwise 0 (zero) if no value is present.
OptionalInt.toString()
Returns a non-empty string representation of this OptionalInt suitable for debugging.
boolean
OptionalLong.equals(Object obj)
Indicates whether some other object is "equal to" this OptionalLong.
int
OptionalLong.hashCode()
Returns the hash code of the value, if present, otherwise 0 (zero) if no value is present.
OptionalLong.toString()
Returns a non-empty string representation of this OptionalLong suitable for debugging.
default void
PrimitiveIterator.OfDouble.forEachRemaining(Consumer<? super Double> action)
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
default Double
PrimitiveIterator.OfDouble.next()
Returns the next element in the iteration.
default void
PrimitiveIterator.OfInt.forEachRemaining(Consumer<? super Integer> action)
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
default Integer
PrimitiveIterator.OfInt.next()
Returns the next element in the iteration.
default void
PrimitiveIterator.OfLong.forEachRemaining(Consumer<? super Long> action)
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
default Long
PrimitiveIterator.OfLong.next()
Returns the next element in the iteration.
void
Properties.clear()
Clears this hashtable so that it contains no keys.
Properties.clone()
Creates a shallow copy of this hashtable.
Properties.compute(Object key, BiFunction<? super Object,? super Object,?> remappingFunction)
Attempts to compute a mapping for the specified key and its current mapped value (or null if there is no current mapping).
Properties.computeIfAbsent(Object key, Function<? super Object,?> mappingFunction)
If the specified key is not already associated with a value (or is mapped to null), attempts to compute its value using the given mapping function and enters it into this map unless null.
Properties.computeIfPresent(Object key, BiFunction<? super Object,? super Object,?> remappingFunction)
If the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value.
boolean
Properties.contains(Object value)
Tests if some key maps into the specified value in this hashtable.
boolean
Properties.containsKey(Object key)
Tests if the specified object is a key in this hashtable.
boolean
Properties.containsValue(Object value)
Returns true if this hashtable maps one or more keys to this value.
Properties.elements()
Returns an enumeration of the values in this hashtable.
Properties.entrySet()
Returns a Set view of the mappings contained in this map.
boolean
Properties.equals(Object o)
Compares the specified Object with this Map for equality, as per the definition in the Map interface.
void
Properties.forEach(BiConsumer<? super Object,? super Object> action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
Properties.get(Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
Properties.getOrDefault(Object key, Object defaultValue)
Returns the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key.
int
Properties.hashCode()
Returns the hash code value for this Map as per the definition in the Map interface.
boolean
Properties.isEmpty()
Tests if this hashtable maps no keys to values.
Properties.keys()
Returns an enumeration of the keys in this hashtable.
Properties.keySet()
Returns a Set view of the keys contained in this map.
Properties.merge(Object key, Object value, BiFunction<? super Object,? super Object,?> remappingFunction)
If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value.
Properties.put(Object key, Object value)
Maps the specified key to the specified value in this hashtable.
void
Properties.putAll(Map<?,?> t)
Copies all of the mappings from the specified map to this hashtable.
Properties.putIfAbsent(Object key, Object value)
If the specified key is not already associated with a value (or is mapped to null) associates it with the given value and returns null, else returns the current value.
protected void
Properties.rehash()
Increases the capacity of and internally reorganizes this hashtable, in order to accommodate and access its entries more efficiently.
Properties.remove(Object key)
Removes the key (and its corresponding value) from this hashtable.
boolean
Properties.remove(Object key, Object value)
Removes the entry for the specified key only if it is currently mapped to the specified value.
boolean
Properties.replace(Object key, Object oldValue, Object newValue)
Replaces the entry for the specified key only if currently mapped to the specified value.
Properties.replace(Object key, Object value)
Replaces the entry for the specified key only if it is currently mapped to some value.
void
Properties.replaceAll(BiFunction<? super Object,? super Object,?> function)
Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.
int
Properties.size()
Returns the number of keys in this hashtable.
Properties.toString()
Returns a string representation of this Hashtable object in the form of a set of entries, enclosed in braces and separated by the ASCII characters "" (comma and space).
Properties.values()
Returns a Collection view of the values contained in this map.
boolean
PropertyPermission.equals(Object obj)
Checks two PropertyPermission objects for equality.
PropertyPermission.getActions()
Returns the "canonical string representation" of the actions.
int
PropertyPermission.hashCode()
Returns the hash code value for this object.
boolean
PropertyPermission.implies(Permission p)
Checks if this PropertyPermission object "implies" the specified permission.
PropertyPermission.newPermissionCollection()
Returns a new PermissionCollection object for storing PropertyPermission objects.
Random.doubles()
Returns an effectively unlimited stream of pseudorandom double values, each between zero (inclusive) and one (exclusive).
Random.doubles(double randomNumberOrigin, double randomNumberBound)
Returns an effectively unlimited stream of pseudorandom double values, each conforming to the given origin (inclusive) and bound (exclusive).
Random.doubles(long streamSize)
Returns a stream producing the given streamSize number of pseudorandom double values, each between zero (inclusive) and one (exclusive).
Random.doubles(long streamSize, double randomNumberOrigin, double randomNumberBound)
Returns a stream producing the given streamSize number of pseudorandom double values, each conforming to the given origin (inclusive) and bound (exclusive).
Random.ints()
Returns an effectively unlimited stream of pseudorandom int values.
Random.ints(int randomNumberOrigin, int randomNumberBound)
Returns an effectively unlimited stream of pseudorandom int values, each conforming to the given origin (inclusive) and bound (exclusive).
Random.ints(long streamSize)
Returns a stream producing the given streamSize number of pseudorandom int values.
Random.ints(long streamSize, int randomNumberOrigin, int randomNumberBound)
Returns a stream producing the given streamSize number of pseudorandom int values, each conforming to the given origin (inclusive) and bound (exclusive).
Random.longs()
Returns an effectively unlimited stream of pseudorandom long values.
Random.longs(long randomNumberOrigin, long randomNumberBound)
Returns an effectively unlimited stream of pseudorandom long values, each conforming to the given origin (inclusive) and bound (exclusive).
Random.longs(long streamSize)
Returns a stream producing the given streamSize number of pseudorandom long values.
Random.longs(long streamSize, long randomNumberOrigin, long randomNumberBound)
Returns a stream producing the given streamSize number of pseudorandom long, each conforming to the given origin (inclusive) and bound (exclusive).
boolean
Random.nextBoolean()
Returns the next pseudorandom, uniformly distributed boolean value from this random number generator's sequence.
void
Random.nextBytes(byte[] bytes)
Generates random bytes and places them into a user-supplied byte array.
double
Random.nextDouble()
Returns the next pseudorandom, uniformly distributed double value between 0.0 and 1.0 from this random number generator's sequence.
float
Random.nextFloat()
Returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0 from this random number generator's sequence.
double
Random.nextGaussian()
Returns the next pseudorandom, Gaussian ("normally") distributed double value with mean 0.0 and standard deviation 1.0 from this random number generator's sequence.
int
Random.nextInt()
Returns the next pseudorandom, uniformly distributed int value from this random number generator's sequence.
int
Random.nextInt(int bound)
Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence.
long
Random.nextLong()
Returns the next pseudorandom, uniformly distributed long value from this random number generator's sequence.
ServiceLoader.Provider.get()
Returns an instance of the provider.
default Spliterator<E>
Creates a Spliterator over the elements in this set.
boolean
SimpleTimeZone.observesDaylightTime()
Returns true if this SimpleTimeZone observes Daylight Saving Time.
default Spliterator<E>
SortedSet.spliterator()
Creates a Spliterator over the elements in this sorted set.
default void
Spliterator.OfDouble.forEachRemaining(Consumer<? super Double> action)
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
default void
Spliterator.OfDouble.forEachRemaining(DoubleConsumer action)
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
default boolean
Spliterator.OfDouble.tryAdvance(Consumer<? super Double> action)
If a remaining element exists, performs the given action on it, returning true; else returns false.
boolean
Spliterator.OfDouble.tryAdvance(DoubleConsumer action)
If a remaining element exists, performs the given action on it, returning true; else returns false.
Spliterator.OfDouble.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator.
default void
Spliterator.OfInt.forEachRemaining(Consumer<? super Integer> action)
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
default void
Spliterator.OfInt.forEachRemaining(IntConsumer action)
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
default boolean
Spliterator.OfInt.tryAdvance(Consumer<? super Integer> action)
If a remaining element exists, performs the given action on it, returning true; else returns false.
boolean
Spliterator.OfInt.tryAdvance(IntConsumer action)
If a remaining element exists, performs the given action on it, returning true; else returns false.
Spliterator.OfInt.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator.
default void
Spliterator.OfLong.forEachRemaining(Consumer<? super Long> action)
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
default void
Spliterator.OfLong.forEachRemaining(LongConsumer action)
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
default boolean
Spliterator.OfLong.tryAdvance(Consumer<? super Long> action)
If a remaining element exists, performs the given action on it, returning true; else returns false.
boolean
Spliterator.OfLong.tryAdvance(LongConsumer action)
If a remaining element exists, performs the given action on it, returning true; else returns false.
Spliterator.OfLong.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator.
Spliterator.OfPrimitive.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator.
int
Spliterators.AbstractDoubleSpliterator.characteristics()
Returns a set of characteristics of this Spliterator and its elements.
long
Spliterators.AbstractDoubleSpliterator.estimateSize()
Returns an estimate of the number of elements that would be encountered by a Spliterator.forEachRemaining(Consumer) traversal, or returns Long.MAX_VALUE if infinite, unknown, or too expensive to compute.
Spliterators.AbstractDoubleSpliterator.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator. This implementation permits limited parallelism.
int
Spliterators.AbstractIntSpliterator.characteristics()
Returns a set of characteristics of this Spliterator and its elements.
long
Spliterators.AbstractIntSpliterator.estimateSize()
Returns an estimate of the number of elements that would be encountered by a Spliterator.forEachRemaining(Consumer) traversal, or returns Long.MAX_VALUE if infinite, unknown, or too expensive to compute.
Spliterators.AbstractIntSpliterator.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator. This implementation permits limited parallelism.
int
Spliterators.AbstractLongSpliterator.characteristics()
Returns a set of characteristics of this Spliterator and its elements.
long
Spliterators.AbstractLongSpliterator.estimateSize()
Returns an estimate of the number of elements that would be encountered by a Spliterator.forEachRemaining(Consumer) traversal, or returns Long.MAX_VALUE if infinite, unknown, or too expensive to compute.
Spliterators.AbstractLongSpliterator.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator. This implementation permits limited parallelism.
int
Spliterators.AbstractSpliterator.characteristics()
Returns a set of characteristics of this Spliterator and its elements.
long
Spliterators.AbstractSpliterator.estimateSize()
Returns an estimate of the number of elements that would be encountered by a Spliterator.forEachRemaining(Consumer) traversal, or returns Long.MAX_VALUE if infinite, unknown, or too expensive to compute.
Spliterators.AbstractSpliterator.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator. This implementation permits limited parallelism.
SplittableRandom.doubles()
Returns an effectively unlimited stream of pseudorandom double values from this generator and/or one split from it; each value is between zero (inclusive) and one (exclusive).
SplittableRandom.doubles(double randomNumberOrigin, double randomNumberBound)
Returns an effectively unlimited stream of pseudorandom double values from this generator and/or one split from it; each value conforms to the given origin (inclusive) and bound (exclusive).
SplittableRandom.doubles(long streamSize)
Returns a stream producing the given streamSize number of pseudorandom double values from this generator and/or one split from it; each value is between zero (inclusive) and one (exclusive).
SplittableRandom.doubles(long streamSize, double randomNumberOrigin, double randomNumberBound)
Returns a stream producing the given streamSize number of pseudorandom double values from this generator and/or one split from it; each value conforms to the given origin (inclusive) and bound (exclusive).
SplittableRandom.ints()
Returns an effectively unlimited stream of pseudorandom int values from this generator and/or one split from it.
SplittableRandom.ints(int randomNumberOrigin, int randomNumberBound)
Returns an effectively unlimited stream of pseudorandom int values from this generator and/or one split from it; each value conforms to the given origin (inclusive) and bound (exclusive).
SplittableRandom.ints(long streamSize)
Returns a stream producing the given streamSize number of pseudorandom int values from this generator and/or one split from it.
SplittableRandom.ints(long streamSize, int randomNumberOrigin, int randomNumberBound)
Returns a stream producing the given streamSize number of pseudorandom int values from this generator and/or one split from it; each value conforms to the given origin (inclusive) and bound (exclusive).
SplittableRandom.longs()
Returns an effectively unlimited stream of pseudorandom long values from this generator and/or one split from it.
SplittableRandom.longs(long randomNumberOrigin, long randomNumberBound)
Returns an effectively unlimited stream of pseudorandom long values from this generator and/or one split from it; each value conforms to the given origin (inclusive) and bound (exclusive).
SplittableRandom.longs(long streamSize)
Returns a stream producing the given streamSize number of pseudorandom long values from this generator and/or one split from it.
SplittableRandom.longs(long streamSize, long randomNumberOrigin, long randomNumberBound)
Returns a stream producing the given streamSize number of pseudorandom long values from this generator and/or one split from it; each value conforms to the given origin (inclusive) and bound (exclusive).
void
SplittableRandom.nextBytes(byte[] bytes)
Fills a user-supplied byte array with generated byte values pseudorandomly chosen uniformly from the range of values between -128 (inclusive) and 127 (inclusive).
int
SplittableRandom.nextInt()
Returns a pseudorandomly chosen int value.
long
SplittableRandom.nextLong()
Returns a pseudorandomly chosen long value.
SplittableRandom.splits()
Returns an effectively unlimited stream of new pseudorandom number generators, each of which implements the RandomGenerator.SplittableGenerator interface.
SplittableRandom.splits(long streamSize)
Returns a stream producing the given streamSize number of new pseudorandom number generators, each of which implements the RandomGenerator.SplittableGenerator interface.
SplittableRandom.splits(long streamSize, RandomGenerator.SplittableGenerator source)
Returns a stream producing the given streamSize number of new pseudorandom number generators, each of which implements the RandomGenerator.SplittableGenerator interface.
Returns an effectively unlimited stream of new pseudorandom number generators, each of which implements the RandomGenerator.SplittableGenerator interface.
StringJoiner.toString()
Returns the current value, consisting of the prefix, the values added so far separated by the delimiter, and the suffix, unless no elements have been added in which case, the prefix + suffix or the emptyValue characters are returned.
TreeMap.compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
Attempts to compute a mapping for the specified key and its current mapped value (or null if there is no current mapping).
TreeMap.computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)
If the specified key is not already associated with a value (or is mapped to null), attempts to compute its value using the given mapping function and enters it into this map unless null.
TreeMap.computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
If the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value.
void
TreeMap.forEach(BiConsumer<? super K,? super V> action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
TreeMap.merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction)
If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value.
TreeMap.putIfAbsent(K key, V value)
If the specified key is not already associated with a value (or is mapped to null) associates it with the given value and returns null, else returns the current value.
boolean
TreeMap.replace(K key, V oldValue, V newValue)
Replaces the entry for the specified key only if currently mapped to the specified value.
TreeMap.replace(K key, V value)
Replaces the entry for the specified key only if it is currently mapped to some value.
void
TreeMap.replaceAll(BiFunction<? super K,? super V,? extends V> function)
Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.
int
UUID.compareTo(UUID val)
Compares this UUID with the specified UUID.
boolean
UUID.equals(Object obj)
Compares this object to the specified object.
int
UUID.hashCode()
Returns a hash code for this UUID.
UUID.toString()
Returns a String object representing this UUID.
void
Vector.forEach(Consumer<? super E> action)
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
boolean
Vector.removeIf(Predicate<? super E> filter)
Removes all of the elements of this collection that satisfy the given predicate.
void
Vector.replaceAll(UnaryOperator<E> operator)
Replaces each element of this list with the result of applying the operator to that element.
void
Vector.sort(Comparator<? super E> c)
Sorts this list according to the order induced by the specified Comparator.
Vector.spliterator()
Creates a late-binding and fail-fast Spliterator over the elements in this list.
void
WeakHashMap.forEach(BiConsumer<? super K,? super V> action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
void
WeakHashMap.replaceAll(BiFunction<? super K,? super V,? extends V> function)
Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.
Methods in java.util.concurrent with annotations of type Override
ConcurrentLinkedQueue.spliterator()
Returns a Spliterator over the elements in this queue.
default V
ConcurrentMap.compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
Attempts to compute a mapping for the specified key and its current mapped value (or null if there is no current mapping).
default V
ConcurrentMap.computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)
If the specified key is not already associated with a value (or is mapped to null), attempts to compute its value using the given mapping function and enters it into this map unless null.
default V
ConcurrentMap.computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
If the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value.
default void
ConcurrentMap.forEach(BiConsumer<? super K,? super V> action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
default V
ConcurrentMap.getOrDefault(Object key, V defaultValue)
Returns the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key.
default V
ConcurrentMap.merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction)
If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value.
default void
ConcurrentMap.replaceAll(BiFunction<? super K,? super V,? extends V> function)
Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.
protected final boolean
CountedCompleter.exec()
Implements execution conventions for CountedCompleters.
CountedCompleter.getRawResult()
Returns the result of the computation.
protected void
CountedCompleter.setRawResult(T t)
A method that result-bearing CountedCompleters may optionally use to help maintain result data.
void
ForkJoinPool.execute(Runnable task)
Executes the given command at some time in the future.
ForkJoinPool.invokeAll(Collection<? extends Callable<T>> tasks)
Executes the given tasks, returning a list of Futures holding their status and results when all complete.
ForkJoinPool.invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
Executes the given tasks, returning a list of Futures holding their status and results when all complete or the timeout expires, whichever happens first.
<TT
ForkJoinPool.invokeAny(Collection<? extends Callable<T>> tasks)
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do.
<TT
ForkJoinPool.invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do before the given timeout elapses.
protected <T> RunnableFuture<T>
ForkJoinPool.newTaskFor(Callable<T> callable)
Returns a RunnableFuture for the given callable task.
protected <T> RunnableFuture<T>
ForkJoinPool.newTaskFor(Runnable runnable, T value)
Returns a RunnableFuture for the given runnable and default value.
ForkJoinPool.submit(Callable<T> task)
Submits a value-returning task for execution and returns a Future representing the pending results of the task.
ForkJoinPool.submit(Runnable task)
Submits a Runnable task for execution and returns a Future representing that task.
ForkJoinPool.submit(Runnable task, T result)
Submits a Runnable task for execution and returns a Future representing that task.
ThreadLocalRandom.doubles()
Returns an effectively unlimited stream of pseudorandom double values, each between zero (inclusive) and one (exclusive).
ThreadLocalRandom.doubles(double randomNumberOrigin, double randomNumberBound)
Returns an effectively unlimited stream of pseudorandom double values, each conforming to the given origin (inclusive) and bound (exclusive).
ThreadLocalRandom.doubles(long streamSize)
Returns a stream producing the given streamSize number of pseudorandom double values, each between zero (inclusive) and one (exclusive).
ThreadLocalRandom.doubles(long streamSize, double randomNumberOrigin, double randomNumberBound)
Returns a stream producing the given streamSize number of pseudorandom double values, each conforming to the given origin (inclusive) and bound (exclusive).
ThreadLocalRandom.ints()
Returns an effectively unlimited stream of pseudorandom int values.
ThreadLocalRandom.ints(int randomNumberOrigin, int randomNumberBound)
Returns an effectively unlimited stream of pseudorandom int values, each conforming to the given origin (inclusive) and bound (exclusive).
ThreadLocalRandom.ints(long streamSize)
Returns a stream producing the given streamSize number of pseudorandom int values.
ThreadLocalRandom.ints(long streamSize, int randomNumberOrigin, int randomNumberBound)
Returns a stream producing the given streamSize number of pseudorandom int values, each conforming to the given origin (inclusive) and bound (exclusive).
ThreadLocalRandom.longs()
Returns an effectively unlimited stream of pseudorandom long values.
ThreadLocalRandom.longs(long randomNumberOrigin, long randomNumberBound)
Returns an effectively unlimited stream of pseudorandom long values, each conforming to the given origin (inclusive) and bound (exclusive).
ThreadLocalRandom.longs(long streamSize)
Returns a stream producing the given streamSize number of pseudorandom long values.
ThreadLocalRandom.longs(long streamSize, long randomNumberOrigin, long randomNumberBound)
Returns a stream producing the given streamSize number of pseudorandom long, each conforming to the given origin (inclusive) and bound (exclusive).
boolean
ThreadLocalRandom.nextBoolean()
Returns the next pseudorandom, uniformly distributed boolean value from this random number generator's sequence.
double
ThreadLocalRandom.nextDouble()
Returns the next pseudorandom, uniformly distributed double value between 0.0 and 1.0 from this random number generator's sequence.
double
ThreadLocalRandom.nextDouble(double bound)
Returns a pseudorandomly chosen double value between zero (inclusive) and the specified bound (exclusive).
double
ThreadLocalRandom.nextDouble(double origin, double bound)
Returns a pseudorandomly chosen double value between the specified origin (inclusive) and the specified bound (exclusive).
float
ThreadLocalRandom.nextFloat()
Returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0 from this random number generator's sequence.
float
ThreadLocalRandom.nextFloat(float bound)
Returns a pseudorandomly chosen float value between zero (inclusive) and the specified bound (exclusive).
float
ThreadLocalRandom.nextFloat(float origin, float bound)
Returns a pseudorandomly chosen float value between the specified origin (inclusive) and the specified bound (exclusive).
int
ThreadLocalRandom.nextInt()
Returns the next pseudorandom, uniformly distributed int value from this random number generator's sequence.
int
ThreadLocalRandom.nextInt(int bound)
Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence.
int
ThreadLocalRandom.nextInt(int origin, int bound)
Returns a pseudorandomly chosen int value between the specified origin (inclusive) and the specified bound (exclusive).
long
ThreadLocalRandom.nextLong()
Returns the next pseudorandom, uniformly distributed long value from this random number generator's sequence.
long
ThreadLocalRandom.nextLong(long bound)
Returns a pseudorandomly chosen long value between zero (inclusive) and the specified bound (exclusive).
long
ThreadLocalRandom.nextLong(long origin, long bound)
Returns a pseudorandomly chosen long value between the specified origin (inclusive) and the specified bound (exclusive).
Methods in javax.xml.catalog with annotations of type Override
CatalogResolver.resolve(String href, String base)
Implements URIResolver.
CatalogResolver.resolveEntity(String publicId, String systemId)
Implements EntityResolver.
CatalogResolver.resolveEntity(String publicId, String systemId, String baseUri, String namespace)
Implements XMLResolver.
CatalogResolver.resolveResource(String type, String namespaceUri, String publicId, String systemId, String baseUri)
Implements LSResourceResolver.
Methods in jdk.javadoc.doclet with annotations of type Override
StandardDoclet.getName()
Returns a name identifying the doclet.
Set<? extends Doclet.Option>
StandardDoclet.getSupportedOptions()
Returns all the supported options.
StandardDoclet.getSupportedSourceVersion()
Returns the version of the Java Programming Language supported by this doclet.
void
StandardDoclet.init(Locale locale, Reporter reporter)
Initializes this doclet with the given locale and error reporter.
boolean
StandardDoclet.run(DocletEnvironment docEnv)
The entry point of the doclet.

 Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz