Module 
Package 
Class 
Use 
 Index 
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _
FlexDoc/Javadoc 2.0
Demo Java Doc

F
failedFuture(Throwable) - Static method in class java.util.concurrent.CompletableFuture
Returns a new CompletableFuture that is already completed exceptionally with the given exception.
failedStage(Throwable) - Static method in class java.util.concurrent.CompletableFuture
Returns a new CompletionStage that is already completed exceptionally with the given exception and supports only those methods in interface CompletionStage.
FALSE - Static variable in class java.lang.Boolean
The Boolean object corresponding to the primitive value false.
feature() - Method in class java.lang.Runtime.Version
Returns the value of the feature element of the version number.
FEBRUARY - Static variable in class java.util.Calendar
Value of the Calendar.MONTH field indicating the second month of the year in the Gregorian and Julian calendars.
FIELD - Constant in enum java.lang.annotation.ElementType
Field declaration (includes enum constants)
FIELD - Constant in enum jdk.javadoc.doclet.Taglet.Location
In the documentation for a field.
FIELD_COUNT - Static variable in class java.util.Calendar
The number of distinct fields recognized by get and set.
fields - Variable in class java.util.Calendar
The calendar field values for the currently set time for this calendar.
File - Class in java.io
An abstract representation of file and directory pathnames.
File(File, String) - Constructor for class java.io.File
Creates a new File instance from a parent abstract pathname and a child pathname string.
File(String) - Constructor for class java.io.File
Creates a new File instance by converting the given pathname string into an abstract pathname.
File(String, String) - Constructor for class java.io.File
Creates a new File instance from a parent pathname string and a child pathname string.
File(URI) - Constructor for class java.io.File
Creates a new File instance by converting the given file: URI into an abstract pathname.
file() - Method in class java.lang.ProcessBuilder.Redirect
Returns the File source or destination associated with this redirect, or null if there is no such file.
FileDescriptor - Class in java.io
Instances of the file descriptor class serve as an opaque handle to the underlying machine-specific structure representing an open file, an open socket, or another source or sink of bytes.
FileDescriptor() - Constructor for class java.io.FileDescriptor
Constructs an (invalid) FileDescriptor object.
FileFilter - Interface in java.io
A filter for abstract pathnames.
FileInputStream - Class in java.io
A FileInputStream obtains input bytes from a file in a file system.
FileInputStream(File) - Constructor for class java.io.FileInputStream
Creates a FileInputStream by opening a connection to an actual file, the file named by the File object file in the file system.
FileInputStream(FileDescriptor) - Constructor for class java.io.FileInputStream
Creates a FileInputStream by using the file descriptor fdObj, which represents an existing connection to an actual file in the file system.
FileInputStream(String) - Constructor for class java.io.FileInputStream
Creates a FileInputStream by opening a connection to an actual file, the file named by the path name name in the file system.
FilenameFilter - Interface in java.io
Instances of classes that implement this interface are used to filter filenames.
FileNotFoundException - Exception in java.io
Signals that an attempt to open the file denoted by a specified pathname has failed.
FileNotFoundException() - Constructor for exception java.io.FileNotFoundException
Constructs a FileNotFoundException with null as its error detail message.
FileNotFoundException(String) - Constructor for exception java.io.FileNotFoundException
Constructs a FileNotFoundException with the specified detail message.
FileOutputStream - Class in java.io
A file output stream is an output stream for writing data to a File or to a FileDescriptor.
FileOutputStream(File) - Constructor for class java.io.FileOutputStream
Creates a file output stream to write to the file represented by the specified File object.
FileOutputStream(File, boolean) - Constructor for class java.io.FileOutputStream
Creates a file output stream to write to the file represented by the specified File object.
FileOutputStream(FileDescriptor) - Constructor for class java.io.FileOutputStream
Creates a file output stream to write to the specified file descriptor, which represents an existing connection to an actual file in the file system.
FileOutputStream(String) - Constructor for class java.io.FileOutputStream
Creates a file output stream to write to the file with the specified name.
FileOutputStream(String, boolean) - Constructor for class java.io.FileOutputStream
Creates a file output stream to write to the file with the specified name.
FilePermission - Class in java.io
This class represents access to a file or directory.
FilePermission(String, String) - Constructor for class java.io.FilePermission
Creates a new FilePermission object with the specified actions.
FileReader - Class in java.io
Reads text from character files using a default buffer size.
FileReader(File) - Constructor for class java.io.FileReader
Creates a new FileReader, given the File to read, using the platform's default charset.
FileReader(File, Charset) - Constructor for class java.io.FileReader
Creates a new FileReader, given the File to read and the charset.
FileReader(FileDescriptor) - Constructor for class java.io.FileReader
Creates a new FileReader, given the FileDescriptor to read, using the platform's default charset.
FileReader(String) - Constructor for class java.io.FileReader
Creates a new FileReader, given the name of the file to read, using the platform's default charset.
FileReader(String, Charset) - Constructor for class java.io.FileReader
Creates a new FileReader, given the name of the file to read and the charset.
FILES - Constant in enum javax.xml.catalog.CatalogFeatures.Feature
The javax.xml.catalog.files property as described in item FILES of the Catalog Features table.
FileWriter - Class in java.io
Writes text to character files using a default buffer size.
FileWriter(File) - Constructor for class java.io.FileWriter
Constructs a FileWriter given the File to write, using the platform's default charset
FileWriter(File, Charset) - Constructor for class java.io.FileWriter
Constructs a FileWriter given the File to write and charset.
FileWriter(File, Charset, boolean) - Constructor for class java.io.FileWriter
Constructs a FileWriter given the File to write, charset and a boolean indicating whether to append the data written.
FileWriter(File, boolean) - Constructor for class java.io.FileWriter
Constructs a FileWriter given the File to write and a boolean indicating whether to append the data written, using the platform's default charset.
FileWriter(FileDescriptor) - Constructor for class java.io.FileWriter
Constructs a FileWriter given a file descriptor, using the platform's default charset.
FileWriter(String) - Constructor for class java.io.FileWriter
Constructs a FileWriter given a file name, using the platform's default charset
FileWriter(String, Charset) - Constructor for class java.io.FileWriter
Constructs a FileWriter given a file name and charset.
FileWriter(String, Charset, boolean) - Constructor for class java.io.FileWriter
Constructs a FileWriter given a file name, charset and a boolean indicating whether to append the data written.
FileWriter(String, boolean) - Constructor for class java.io.FileWriter
Constructs a FileWriter given a file name and a boolean indicating whether to append the data written, using the platform's default charset.
fill(Object[], Object) - Static method in class java.util.Arrays
Assigns the specified Object reference to each element of the specified array of Objects.
fill(Object[], int, int, Object) - Static method in class java.util.Arrays
Assigns the specified Object reference to each element of the specified range of the specified array of Objects.
fill(boolean[], boolean) - Static method in class java.util.Arrays
Assigns the specified boolean value to each element of the specified array of booleans.
fill(boolean[], int, int, boolean) - Static method in class java.util.Arrays
Assigns the specified boolean value to each element of the specified range of the specified array of booleans.
fill(byte[], byte) - Static method in class java.util.Arrays
Assigns the specified byte value to each element of the specified array of bytes.
fill(byte[], int, int, byte) - Static method in class java.util.Arrays
Assigns the specified byte value to each element of the specified range of the specified array of bytes.
fill(char[], char) - Static method in class java.util.Arrays
Assigns the specified char value to each element of the specified array of chars.
fill(char[], int, int, char) - Static method in class java.util.Arrays
Assigns the specified char value to each element of the specified range of the specified array of chars.
fill(double[], double) - Static method in class java.util.Arrays
Assigns the specified double value to each element of the specified array of doubles.
fill(double[], int, int, double) - Static method in class java.util.Arrays
Assigns the specified double value to each element of the specified range of the specified array of doubles.
fill(float[], float) - Static method in class java.util.Arrays
Assigns the specified float value to each element of the specified array of floats.
fill(float[], int, int, float) - Static method in class java.util.Arrays
Assigns the specified float value to each element of the specified range of the specified array of floats.
fill(int[], int) - Static method in class java.util.Arrays
Assigns the specified int value to each element of the specified array of ints.
fill(int[], int, int, int) - Static method in class java.util.Arrays
Assigns the specified int value to each element of the specified range of the specified array of ints.
fill(long[], int, int, long) - Static method in class java.util.Arrays
Assigns the specified long value to each element of the specified range of the specified array of longs.
fill(long[], long) - Static method in class java.util.Arrays
Assigns the specified long value to each element of the specified array of longs.
fill(short[], int, int, short) - Static method in class java.util.Arrays
Assigns the specified short value to each element of the specified range of the specified array of shorts.
fill(short[], short) - Static method in class java.util.Arrays
Assigns the specified short value to each element of the specified array of shorts.
fill(List<? super T>, T) - Static method in class java.util.Collections
Replaces all of the elements of the specified list with the specified element.
fillInStackTrace() - Method in exception java.lang.NullPointerException
Fills in the execution stack trace.
fillInStackTrace() - Method in class java.lang.Throwable
Fills in the execution stack trace.
filter(List<Locale.LanguageRange>, Collection<Locale>) - Static method in class java.util.Locale
Returns a list of matching Locale instances using the filtering mechanism defined in RFC 4647.
filter(List<Locale.LanguageRange>, Collection<Locale>, Locale.FilteringMode) - Static method in class java.util.Locale
Returns a list of matching Locale instances using the filtering mechanism defined in RFC 4647.
filter(Predicate<? super T>) - Method in class java.util.Optional
If a value is present, and the value matches the given predicate, returns an Optional describing the value, otherwise returns an empty Optional.
FilterInputStream - Class in java.io
A FilterInputStream contains some other input stream, which it uses as its basic source of data, possibly transforming the data along the way or providing additional functionality.
FilterInputStream(InputStream) - Constructor for class java.io.FilterInputStream
Creates a FilterInputStream by assigning the argument in to the field this.in so as to remember it for later use.
FilterOutputStream - Class in java.io
This class is the superclass of all classes that filter output streams.
FilterOutputStream(OutputStream) - Constructor for class java.io.FilterOutputStream
Creates an output stream filter built on top of the specified underlying output stream.
FilterReader - Class in java.io
Abstract class for reading filtered character streams.
FilterReader(Reader) - Constructor for class java.io.FilterReader
Creates a new filtered reader.
filterTags(List<Locale.LanguageRange>, Collection<String>) - Static method in class java.util.Locale
Returns a list of matching languages tags using the basic filtering mechanism defined in RFC 4647.
filterTags(List<Locale.LanguageRange>, Collection<String>, Locale.FilteringMode) - Static method in class java.util.Locale
Returns a list of matching languages tags using the basic filtering mechanism defined in RFC 4647.
FilterWriter - Class in java.io
Abstract class for writing filtered character streams.
FilterWriter(Writer) - Constructor for class java.io.FilterWriter
Create a new filtered writer.
FINAL_QUOTE_PUNCTUATION - Static variable in class java.lang.Character
General category "Pf" in the Unicode specification.
finalize() - Method in class java.lang.Enum
enum classes cannot have finalize methods.
finalize() - Method in class java.lang.Object
Deprecated. The finalization mechanism is inherently problematic.
finalize() - Method in class java.util.concurrent.ThreadPoolExecutor
Deprecated.
findAll(Pattern) - Method in class java.util.Scanner
Returns a stream of match results from this scanner.
findAll(String) - Method in class java.util.Scanner
Returns a stream of match results that match the provided pattern string.
findClass(String) - Method in class java.lang.ClassLoader
Finds the class with the specified binary name.
findClass(String, String) - Method in class java.lang.ClassLoader
Finds the class with the given binary name in a module defined to this class loader.
findFirst() - Method in class java.util.ServiceLoader
Load the first available service provider of this loader's service.
findInLine(Pattern) - Method in class java.util.Scanner
Attempts to find the next occurrence of the specified pattern ignoring delimiters.
findInLine(String) - Method in class java.util.Scanner
Attempts to find the next occurrence of a pattern constructed from the specified string, ignoring delimiters.
findLibrary(String) - Method in class java.lang.ClassLoader
Returns the absolute path name of a native library.
findLoadedClass(String) - Method in class java.lang.ClassLoader
Returns the class with the given binary name if this loader has been recorded by the Java virtual machine as an initiating loader of a class with that binary name.
findLoader(String) - Method in class java.lang.ModuleLayer
Returns the ClassLoader for the module with the given name.
findModule(String) - Method in class java.lang.ModuleLayer
Returns the module with the given name in this layer, or if not in this layer, the parent layers.
findResource(String) - Method in class java.lang.ClassLoader
Finds the resource with the given name.
findResource(String, String) - Method in class java.lang.ClassLoader
Returns a URL to a resource in a module defined to this class loader.
findResources(String) - Method in class java.lang.ClassLoader
Returns an enumeration of URL objects representing all the resources with the given name.
findSystemClass(String) - Method in class java.lang.ClassLoader
Finds a class with the specified binary name, loading it if necessary.
findWithinHorizon(Pattern, int) - Method in class java.util.Scanner
Attempts to find the next occurrence of the specified pattern.
findWithinHorizon(String, int) - Method in class java.util.Scanner
Attempts to find the next occurrence of a pattern constructed from the specified string, ignoring delimiters.
fireCaretUpdate(CaretEvent) - Method in class javax.swing.text.JTextComponent
Notifies all listeners that have registered interest for notification on this event type.
fireChangedUpdate(DocumentEvent) - Method in class javax.swing.text.html.HTMLDocument
Notifies all listeners that have registered interest for notification on this event type.
fireUndoableEditUpdate(UndoableEditEvent) - Method in class javax.swing.text.html.HTMLDocument
Notifies all listeners that have registered interest for notification on this event type.
first() - Method in interface java.util.SortedSet
Returns the first (lowest) element currently in this set.
first() - Method in class java.util.TreeSet
Returns the first (lowest) element currently in this set.
first() - Method in class java.util.concurrent.ConcurrentSkipListSet
Returns the first (lowest) element currently in this set.
firstComplete() - Method in class java.util.concurrent.CountedCompleter
If this task's pending count is zero, returns this task; otherwise decrements its pending count and returns null.
firstElement() - Method in class java.util.Vector
Returns the first component (the item at index 0) of this vector.
firstEntry() - Method in interface java.util.NavigableMap
Returns a key-value mapping associated with the least key in this map, or null if the map is empty.
firstEntry() - Method in class java.util.TreeMap
Returns a key-value mapping associated with the least key in this map, or null if the map is empty.
firstEntry() - Method in class java.util.concurrent.ConcurrentSkipListMap
Returns a key-value mapping associated with the least key in this map, or null if the map is empty.
firstKey() - Method in interface java.util.SortedMap
Returns the first (lowest) key currently in this map.
firstKey() - Method in class java.util.TreeMap
Returns the first (lowest) key currently in this map.
firstKey() - Method in class java.util.concurrent.ConcurrentSkipListMap
Returns the first (lowest) key currently in this map.
flatMap(Function<? super T, ? extends Optional<? extends U>>) - Method in class java.util.Optional
If a value is present, returns the result of applying the given Optional-bearing mapping function to the value, otherwise returns an empty Optional.
flip(int) - Method in class java.util.BitSet
Sets the bit at the specified index to the complement of its current value.
flip(int, int) - Method in class java.util.BitSet
Sets each bit from the specified fromIndex (inclusive) to the specified toIndex (exclusive) to the complement of its current value.
Float - Class in java.lang
The Float class wraps a value of primitive type float in an object.
Float(String) - Constructor for class java.lang.Float
Deprecated, for removal. It is rarely appropriate to use this constructor.
Float(double) - Constructor for class java.lang.Float
Deprecated, for removal. It is rarely appropriate to use this constructor.
Float(float) - Constructor for class java.lang.Float
Deprecated, for removal. It is rarely appropriate to use this constructor.
floatToIntBits(float) - Static method in class java.lang.Float
Returns a representation of the specified floating-point value according to the IEEE 754 floating-point "single format" bit layout.
floatToRawIntBits(float) - Static method in class java.lang.Float
Returns a representation of the specified floating-point value according to the IEEE 754 floating-point "single format" bit layout, preserving Not-a-Number (NaN) values.
floatValue() - Method in class java.lang.Byte
Returns the value of this Byte as a float after a widening primitive conversion.
floatValue() - Method in class java.lang.Double
Returns the value of this Double as a float after a narrowing primitive conversion.
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 after a widening primitive conversion.
floatValue() - Method in class java.lang.Long
Returns the value of this Long as a float after a widening primitive conversion.
floatValue() - Method in class java.lang.Number
Returns the value of the specified number as a float.
floatValue() - Method in class java.lang.Short
Returns the value of this Short as a float after a widening primitive conversion.
floor(double) - Static method in class java.lang.Math
Returns the largest (closest to positive infinity) double value that is less than or equal to the argument and is equal to a mathematical integer.
floor(double) - Static method in class java.lang.StrictMath
Returns the largest (closest to positive infinity) double value that is less than or equal to the argument and is equal to a mathematical integer.
floor(E) - Method in interface java.util.NavigableSet
Returns the greatest element in this set less than or equal to the given element, or null if there is no such element.
floor(E) - Method in class java.util.TreeSet
Returns the greatest element in this set less than or equal to the given element, or null if there is no such element.
floor(E) - Method in class java.util.concurrent.ConcurrentSkipListSet
Returns the greatest element in this set less than or equal to the given element, or null if there is no such element.
floorDiv(int, int) - Static method in class java.lang.Math
Returns the largest (closest to positive infinity) int value that is less than or equal to the algebraic quotient.
floorDiv(long, int) - Static method in class java.lang.Math
Returns the largest (closest to positive infinity) long value that is less than or equal to the algebraic quotient.
floorDiv(long, long) - Static method in class java.lang.Math
Returns the largest (closest to positive infinity) long value that is less than or equal to the algebraic quotient.
floorDiv(int, int) - Static method in class java.lang.StrictMath
Returns the largest (closest to positive infinity) int value that is less than or equal to the algebraic quotient.
floorDiv(long, int) - Static method in class java.lang.StrictMath
Returns the largest (closest to positive infinity) long value that is less than or equal to the algebraic quotient.
floorDiv(long, long) - Static method in class java.lang.StrictMath
Returns the largest (closest to positive infinity) long value that is less than or equal to the algebraic quotient.
floorEntry(K) - Method in interface java.util.NavigableMap
Returns a key-value mapping associated with the greatest key less than or equal to the given key, or null if there is no such key.
floorEntry(K) - Method in class java.util.TreeMap
Returns a key-value mapping associated with the greatest key less than or equal to the given key, or null if there is no such key.
floorEntry(K) - Method in class java.util.concurrent.ConcurrentSkipListMap
Returns a key-value mapping associated with the greatest key less than or equal to the given key, or null if there is no such key.
floorKey(K) - Method in interface java.util.NavigableMap
Returns the greatest key less than or equal to the given key, or null if there is no such key.
floorKey(K) - Method in class java.util.TreeMap
Returns the greatest key less than or equal to the given key, or null if there is no such key.
floorKey(K) - Method in class java.util.concurrent.ConcurrentSkipListMap
Returns the greatest key less than or equal to the given key, or null if there is no such key.
floorMod(int, int) - Static method in class java.lang.Math
Returns the floor modulus of the int arguments.
floorMod(long, int) - Static method in class java.lang.Math
Returns the floor modulus of the long and int arguments.
floorMod(long, long) - Static method in class java.lang.Math
Returns the floor modulus of the long arguments.
floorMod(int, int) - Static method in class java.lang.StrictMath
Returns the floor modulus of the int arguments.
floorMod(long, int) - Static method in class java.lang.StrictMath
Returns the floor modulus of the long and int arguments.
floorMod(long, long) - Static method in class java.lang.StrictMath
Returns the floor modulus of the long arguments.
Flow - Class in java.util.concurrent
Interrelated interfaces and static methods for establishing flow-controlled components in which Publishers produce items consumed by one or more Subscribers, each managed by a Subscription.
Flow.Processor<T,R> - Interface in java.util.concurrent
A component that acts as both a Subscriber and Publisher.
Flow.Publisher<T> - Interface in java.util.concurrent
A producer of items (and related control messages) received by Subscribers.
Flow.Subscriber<T> - Interface in java.util.concurrent
A receiver of messages.
Flow.Subscription - Interface in java.util.concurrent
Message control linking a Flow.Publisher and Flow.Subscriber.
flush() - Method in class java.io.BufferedOutputStream
Flushes this buffered output stream.
flush() - Method in class java.io.BufferedWriter
Flushes the stream.
flush() - Method in class java.io.CharArrayWriter
Flush the stream.
flush() - Method in class java.io.Console
Flushes the console and forces any buffered output to be written immediately .
flush() - Method in class java.io.DataOutputStream
Flushes this data output stream.
flush() - Method in class java.io.FilterOutputStream
Flushes this output stream and forces any buffered output bytes to be written out to the stream.
flush() - Method in class java.io.FilterWriter
Flushes the stream.
flush() - Method in interface java.io.Flushable
Flushes this stream by writing any buffered output to the underlying stream.
flush() - Method in interface java.io.ObjectOutput
Flushes the stream.
flush() - Method in class java.io.ObjectOutputStream
Flushes the stream.
flush() - Method in class java.io.OutputStream
Flushes this output stream and forces any buffered output bytes to be written out.
flush() - Method in class java.io.OutputStreamWriter
Flushes the stream.
flush() - Method in class java.io.PipedOutputStream
Flushes this output stream and forces any buffered output bytes to be written out.
flush() - Method in class java.io.PipedWriter
Flushes this output stream and forces any buffered output characters to be written out.
flush() - Method in class java.io.PrintStream
Flushes the stream.
flush() - Method in class java.io.PrintWriter
Flushes the stream.
flush() - Method in class java.io.StringWriter
Flush the stream.
flush() - Method in class java.io.Writer
Flushes the stream.
flush() - Method in class java.util.Formatter
Flushes this formatter.
flush() - Method in class javax.swing.text.html.HTMLDocument.HTMLReader
The last method called on the reader.
Flushable - Interface in java.io
A Flushable is a destination of data that can be flushed.
fma(double, double, double) - Static method in class java.lang.Math
Returns the fused multiply add of the three arguments; that is, returns the exact product of the first two arguments summed with the third argument and then rounded once to the nearest double.
fma(float, float, float) - Static method in class java.lang.Math
Returns the fused multiply add of the three arguments; that is, returns the exact product of the first two arguments summed with the third argument and then rounded once to the nearest float.
fma(double, double, double) - Static method in class java.lang.StrictMath
Returns the fused multiply add of the three arguments; that is, returns the exact product of the first two arguments summed with the third argument and then rounded once to the nearest double.
fma(float, float, float) - Static method in class java.lang.StrictMath
Returns the fused multiply add of the three arguments; that is, returns the exact product of the first two arguments summed with the third argument and then rounded once to the nearest float.
FOCUS_ACCELERATOR_KEY - Static variable in class javax.swing.text.JTextComponent
The bound property name for the focus accelerator.
forceTermination() - Method in class java.util.concurrent.Phaser
Forces this phaser to enter termination state.
forClass() - Method in class java.io.ObjectStreamClass
Return the class in the local VM that this version is mapped to.
forDigit(int, int) - Static method in class java.lang.Character
Determines the character representation for a specific digit in the specified radix.
forEach(Consumer<? super T>) - Method in interface java.lang.Iterable
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(Consumer<? super StackWalker.StackFrame>) - Method in class java.lang.StackWalker
Performs the given action on each element of StackFrame stream of the current thread, traversing from the top frame of the stack, which is the method calling this forEach method.
forEach(Consumer<? super E>) - Method in class java.util.ArrayDeque
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(Consumer<? super E>) - Method in class java.util.ArrayList
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(BiConsumer<? super K, ? super V>) - Method in class java.util.HashMap
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forEach(BiConsumer<? super K, ? super V>) - Method in class java.util.Hashtable
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forEach(BiConsumer<? super K, ? super V>) - Method in class java.util.IdentityHashMap
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forEach(BiConsumer<? super K, ? super V>) - Method in class java.util.LinkedHashMap
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forEach(BiConsumer<? super K, ? super V>) - Method in interface java.util.Map
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forEach(Consumer<? super E>) - Method in class java.util.PriorityQueue
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(BiConsumer<? super Object, ? super Object>) - Method in class java.util.Properties
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forEach(BiConsumer<? super K, ? super V>) - Method in class java.util.TreeMap
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forEach(Consumer<? super E>) - Method in class java.util.Vector
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(BiConsumer<? super K, ? super V>) - Method in class java.util.WeakHashMap
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forEach(Consumer<? super E>) - Method in class java.util.concurrent.ArrayBlockingQueue
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(Consumer<? super K>) - Method in class java.util.concurrent.ConcurrentHashMap.KeySetView
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(BiConsumer<? super K, ? super V>) - Method in class java.util.concurrent.ConcurrentHashMap
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forEach(long, BiConsumer<? super K, ? super V>) - Method in class java.util.concurrent.ConcurrentHashMap
Performs the given action for each (key, value).
forEach(long, BiFunction<? super K, ? super V, ? extends U>, Consumer<? super U>) - Method in class java.util.concurrent.ConcurrentHashMap
Performs the given action for each non-null transformation of each (key, value).
forEach(Consumer<? super E>) - Method in class java.util.concurrent.ConcurrentLinkedDeque
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(Consumer<? super E>) - Method in class java.util.concurrent.ConcurrentLinkedQueue
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(BiConsumer<? super K, ? super V>) - Method in interface java.util.concurrent.ConcurrentMap
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forEach(BiConsumer<? super K, ? super V>) - Method in class java.util.concurrent.ConcurrentSkipListMap
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forEach(Consumer<? super E>) - Method in class java.util.concurrent.CopyOnWriteArrayList
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(Consumer<? super E>) - Method in class java.util.concurrent.CopyOnWriteArraySet
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(Consumer<? super E>) - Method in class java.util.concurrent.LinkedBlockingDeque
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(Consumer<? super E>) - Method in class java.util.concurrent.LinkedBlockingQueue
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(Consumer<? super E>) - Method in class java.util.concurrent.LinkedTransferQueue
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEach(Consumer<? super E>) - Method in class java.util.concurrent.PriorityBlockingQueue
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
forEachEntry(long, Consumer<? super Map.Entry<K, V>>) - Method in class java.util.concurrent.ConcurrentHashMap
Performs the given action for each entry.
forEachEntry(long, Function<Map.Entry<K, V>, ? extends U>, Consumer<? super U>) - Method in class java.util.concurrent.ConcurrentHashMap
Performs the given action for each non-null transformation of each entry.
forEachKey(long, Consumer<? super K>) - Method in class java.util.concurrent.ConcurrentHashMap
Performs the given action for each key.
forEachKey(long, Function<? super K, ? extends U>, Consumer<? super U>) - Method in class java.util.concurrent.ConcurrentHashMap
Performs the given action for each non-null transformation of each key.
forEachRemaining(Consumer<? super E>) - Method in interface java.util.Iterator
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
forEachRemaining(Consumer<? super Double>) - Method in interface java.util.PrimitiveIterator.OfDouble
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
forEachRemaining(DoubleConsumer) - Method in interface java.util.PrimitiveIterator.OfDouble
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
forEachRemaining(Consumer<? super Integer>) - Method in interface java.util.PrimitiveIterator.OfInt
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
forEachRemaining(IntConsumer) - Method in interface java.util.PrimitiveIterator.OfInt
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
forEachRemaining(Consumer<? super Long>) - Method in interface java.util.PrimitiveIterator.OfLong
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
forEachRemaining(LongConsumer) - Method in interface java.util.PrimitiveIterator.OfLong
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
forEachRemaining(T_CONS) - Method in interface java.util.PrimitiveIterator
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
forEachRemaining(Consumer<? super Double>) - Method in interface java.util.Spliterator.OfDouble
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.
forEachRemaining(DoubleConsumer) - Method in interface java.util.Spliterator.OfDouble
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.
forEachRemaining(Consumer<? super Integer>) - Method in interface java.util.Spliterator.OfInt
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.
forEachRemaining(IntConsumer) - Method in interface java.util.Spliterator.OfInt
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.
forEachRemaining(Consumer<? super Long>) - Method in interface java.util.Spliterator.OfLong
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.
forEachRemaining(LongConsumer) - Method in interface java.util.Spliterator.OfLong
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.
forEachRemaining(T_CONS) - Method in interface java.util.Spliterator.OfPrimitive
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.
forEachRemaining(Consumer<? super T>) - Method in interface java.util.Spliterator
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.
forEachValue(long, Consumer<? super V>) - Method in class java.util.concurrent.ConcurrentHashMap
Performs the given action for each value.
forEachValue(long, Function<? super V, ? extends U>, Consumer<? super U>) - Method in class java.util.concurrent.ConcurrentHashMap
Performs the given action for each non-null transformation of each value.
fork() - Method in class java.util.concurrent.ForkJoinTask
Arranges to asynchronously execute this task in the pool the current task is running in, if applicable, or using the ForkJoinPool.commonPool() if not ForkJoinTask.inForkJoinPool().
ForkJoinPool - Class in java.util.concurrent
An ExecutorService for running ForkJoinTasks.
ForkJoinPool() - Constructor for class java.util.concurrent.ForkJoinPool
Creates a ForkJoinPool with parallelism equal to Runtime.availableProcessors(), using defaults for all other parameters (see ForkJoinPool.ForkJoinPool(int, ForkJoinWorkerThreadFactory, UncaughtExceptionHandler, boolean, int, int, int, Predicate, long, TimeUnit)).
ForkJoinPool(int) - Constructor for class java.util.concurrent.ForkJoinPool
Creates a ForkJoinPool with the indicated parallelism level, using defaults for all other parameters (see ForkJoinPool.ForkJoinPool(int, ForkJoinWorkerThreadFactory, UncaughtExceptionHandler, boolean, int, int, int, Predicate, long, TimeUnit)).
ForkJoinPool(int, ForkJoinPool.ForkJoinWorkerThreadFactory, Thread.UncaughtExceptionHandler, boolean) - Constructor for class java.util.concurrent.ForkJoinPool
Creates a ForkJoinPool with the given parameters (using defaults for others -- see ForkJoinPool.ForkJoinPool(int, ForkJoinWorkerThreadFactory, UncaughtExceptionHandler, boolean, int, int, int, Predicate, long, TimeUnit)).
ForkJoinPool(int, ForkJoinPool.ForkJoinWorkerThreadFactory, Thread.UncaughtExceptionHandler, boolean, int, int, int, Predicate<? super ForkJoinPool>, long, TimeUnit) - Constructor for class java.util.concurrent.ForkJoinPool
Creates a ForkJoinPool with the given parameters.
ForkJoinPool.ForkJoinWorkerThreadFactory - Interface in java.util.concurrent
Factory for creating new ForkJoinWorkerThreads.
ForkJoinPool.ManagedBlocker - Interface in java.util.concurrent
Interface for extending managed parallelism for tasks running in ForkJoinPools.
ForkJoinTask<V> - Class in java.util.concurrent
Abstract base class for tasks that run within a ForkJoinPool.
ForkJoinTask() - Constructor for class java.util.concurrent.ForkJoinTask
Constructor for subclasses to call.
ForkJoinWorkerThread - Class in java.util.concurrent
A thread managed by a ForkJoinPool, which executes ForkJoinTasks.
ForkJoinWorkerThread(ForkJoinPool) - Constructor for class java.util.concurrent.ForkJoinWorkerThread
Creates a ForkJoinWorkerThread operating in the given pool.
forLanguageTag(String) - Static method in class java.util.Locale
Returns a locale for the specified IETF BCP 47 language tag string.
FormAction() - Constructor for class javax.swing.text.html.HTMLDocument.HTMLReader.FormAction
Constructs a FormAction.
format(String, Object...) - Method in class java.io.Console
Writes a formatted string to this console's output stream using the specified format string and arguments.
format(Locale, String, Object...) - Method in class java.io.PrintStream
Writes a formatted string to this output stream using the specified format string and arguments.
format(String, Object...) - Method in class java.io.PrintStream
Writes a formatted string to this output stream using the specified format string and arguments.
format(Locale, String, Object...) - Method in class java.io.PrintWriter
Writes a formatted string to this writer using the specified format string and arguments.
format(String, Object...) - Method in class java.io.PrintWriter
Writes a formatted string to this writer using the specified format string and arguments.
FORMAT - Static variable in class java.lang.Character
General category "Cf" in the Unicode specification.
format(Locale, String, Object...) - Static method in class java.lang.String
Returns a formatted string using the specified locale, format string, and arguments.
format(String, Object...) - Static method in class java.lang.String
Returns a formatted string using the specified format string and arguments.
format(Locale, String, Object...) - Method in class java.util.Formatter
Writes a formatted string to this object's destination using the specified locale, format string, and arguments.
format(String, Object...) - Method in class java.util.Formatter
Writes a formatted string to this object's destination using the specified format string and arguments.
FORMAT - Constant in enum java.util.Locale.Category
Category used to represent the default locale for formatting dates, numbers, and/or currencies.
FORMAT_CLASS - Static variable in class java.util.ResourceBundle.Control
The class-only format List containing "java.class".
FORMAT_DEFAULT - Static variable in class java.util.ResourceBundle.Control
The default format List, which contains the strings "java.class" and "java.properties", in this order.
FORMAT_PROPERTIES - Static variable in class java.util.ResourceBundle.Control
The properties-only format List containing "java.properties".
FormatFlagsConversionMismatchException - Exception in java.util
Unchecked exception thrown when a conversion and flag are incompatible.
FormatFlagsConversionMismatchException(String, char) - Constructor for exception java.util.FormatFlagsConversionMismatchException
Constructs an instance of this class with the specified flag and conversion.
formatHex(A, byte[]) - Method in class java.util.HexFormat
Appends formatted hexadecimal strings from a byte array to the Appendable.
formatHex(A, byte[], int, int) - Method in class java.util.HexFormat
Appends formatted hexadecimal strings from a byte array range to the Appendable.
formatHex(byte[]) - Method in class java.util.HexFormat
Returns a hexadecimal string formatted from a byte array.
formatHex(byte[], int, int) - Method in class java.util.HexFormat
Returns a hexadecimal string formatted from a byte array range.
Formattable - Interface in java.util
The Formattable interface must be implemented by any class that needs to perform custom formatting using the 's' conversion specifier of Formatter.
FormattableFlags - Class in java.util
FormattableFlags are passed to the Formattable.formatTo() method and modify the output format for Formattables.
formatted(Object...) - Method in class java.lang.String
Formats using this string as the format string, and the supplied arguments.
Formatter - Class in java.util
An interpreter for printf-style format strings.
Formatter() - Constructor for class java.util.Formatter
Constructs a new formatter.
Formatter(Appendable) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified destination.
Formatter(Appendable, Locale) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified destination and locale.
Formatter(File) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified file.
Formatter(File, Charset, Locale) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified file, charset, and locale.
Formatter(File, String) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified file and charset.
Formatter(File, String, Locale) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified file, charset, and locale.
Formatter(Locale) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified locale.
Formatter(OutputStream) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified output stream.
Formatter(OutputStream, Charset, Locale) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified output stream, charset, and locale.
Formatter(OutputStream, String) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified output stream and charset.
Formatter(OutputStream, String, Locale) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified output stream, charset, and locale.
Formatter(PrintStream) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified print stream.
Formatter(String) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified file name.
Formatter(String, Charset, Locale) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified file name, charset, and locale.
Formatter(String, String) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified file name and charset.
Formatter(String, String, Locale) - Constructor for class java.util.Formatter
Constructs a new formatter with the specified file name, charset, and locale.
Formatter.BigDecimalLayoutForm - Enum in java.util
Enum for BigDecimal formatting.
FormatterClosedException - Exception in java.util
Unchecked exception thrown when the formatter has been closed.
FormatterClosedException() - Constructor for exception java.util.FormatterClosedException
Constructs an instance of this class.
formatTo(Formatter, int, int, int) - Method in interface java.util.Formattable
Formats the object using the provided formatter.
forName(String) - Static method in class java.lang.Character.UnicodeBlock
Returns the UnicodeBlock with the given name.
forName(String) - Static method in enum java.lang.Character.UnicodeScript
Returns the UnicodeScript constant with the given Unicode script name or the script name alias.
forName(Module, String) - Static method in class java.lang.Class
Returns the Class with the given binary name in the given module.
forName(String) - Static method in class java.lang.Class
Returns the Class object associated with the class or interface with the given string name.
forName(String, boolean, ClassLoader) - Static method in class java.lang.Class
Returns the Class object associated with the class or interface with the given string name, using the given class loader.
forRemoval - Element in annotation type java.lang.Deprecated
Indicates whether the annotated element is subject to removal in a future version.
foundType() - Method in exception java.lang.annotation.AnnotationTypeMismatchException
Returns the type of data found in the incorrectly typed element.
FRANCE - Static variable in class java.util.Locale
Useful constant for country.
freeMemory() - Method in class java.lang.Runtime
Returns the amount of free memory in the Java Virtual Machine.
FRENCH - Static variable in class java.util.Locale
Useful constant for language.
frequency(Collection<?>, Object) - Static method in class java.util.Collections
Returns the number of elements in the specified collection equal to the specified object.
FRIDAY - Static variable in class java.util.Calendar
Value of the Calendar.DAY_OF_WEEK field indicating Friday.
from(File) - Static method in class java.lang.ProcessBuilder.Redirect
Returns a redirect to read from the specified file.
from(Instant) - Static method in class java.util.Date
Obtains an instance of Date from an Instant object.
from(ZonedDateTime) - Static method in class java.util.GregorianCalendar
Obtains an instance of GregorianCalendar with the default locale from a ZonedDateTime object.
fromHexDigit(int) - Static method in class java.util.HexFormat
Returns the value for the hexadecimal character or codepoint.
fromHexDigits(CharSequence) - Static method in class java.util.HexFormat
Returns the int value parsed from a string of up to eight hexadecimal characters.
fromHexDigits(CharSequence, int, int) - Static method in class java.util.HexFormat
Returns the int value parsed from a string range of up to eight hexadecimal characters.
fromHexDigitsToLong(CharSequence) - Static method in class java.util.HexFormat
Returns the long value parsed from a string of up to sixteen hexadecimal characters.
fromHexDigitsToLong(CharSequence, int, int) - Static method in class java.util.HexFormat
Returns the long value parsed from a string range of up to sixteen hexadecimal characters.
fromString(String) - Static method in class java.util.UUID
Creates a UUID from the string standard representation as described in the UUID.toString() method.
FunctionalInterface - Annotation Type in java.lang
An informative annotation type used to indicate that an interface type declaration is intended to be a functional interface as defined by the Java Language Specification.
Future<V> - Interface in java.util.concurrent
A Future represents the result of an asynchronous computation.
FutureTask<V> - Class in java.util.concurrent
A cancellable asynchronous computation.
FutureTask(Callable<V>) - Constructor for class java.util.concurrent.FutureTask
Creates a FutureTask that will, upon running, execute the given Callable.
FutureTask(Runnable, V) - Constructor for class java.util.concurrent.FutureTask
Creates a FutureTask that will, upon running, execute the given Runnable, and arrange that get will return the given result on successful completion.

Module 
Package 
Class 
Use 
 Index 
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _
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