- fill(long[], long) - Static method in class java.util.Arrays
-
Assigns the specified long value to each element of the specified array of longs.
- fill(long[], int, int, long) - Static method in class java.util.Arrays
-
Assigns the specified long value to each element of the specified range of the specified array of longs.
- fill(int[], int) - Static method in class java.util.Arrays
-
Assigns the specified int value to each element of the specified array of ints.
- fill(int[], int, int, int) - Static method in class java.util.Arrays
-
Assigns the specified int value to each element of the specified range of the specified array of ints.
- fill(short[], short) - Static method in class java.util.Arrays
-
Assigns the specified short value to each element of the specified array of shorts.
- fill(short[], int, int, short) - Static method in class java.util.Arrays
-
Assigns the specified short value to each element of the specified range of the specified array of shorts.
- fill(char[], char) - Static method in class java.util.Arrays
-
Assigns the specified char value to each element of the specified array of chars.
- fill(char[], int, int, char) - Static method in class java.util.Arrays
-
Assigns the specified char value to each element of the specified range of the specified array of chars.
- fill(byte[], byte) - Static method in class java.util.Arrays
-
Assigns the specified byte value to each element of the specified array of bytes.
- fill(byte[], int, int, byte) - Static method in class java.util.Arrays
-
Assigns the specified byte value to each element of the specified range of the specified array of bytes.
- fill(boolean[], boolean) - Static method in class java.util.Arrays
-
Assigns the specified boolean value to each element of the specified array of booleans.
- fill(boolean[], int, int, boolean) - Static method in class java.util.Arrays
-
Assigns the specified boolean value to each element of the specified range of the specified array of booleans.
- fill(double[], double) - Static method in class java.util.Arrays
-
Assigns the specified double value to each element of the specified array of doubles.
- fill(double[], int, int, double) - Static method in class java.util.Arrays
-
Assigns the specified double value to each element of the specified range of the specified array of doubles.
- fill(float[], float) - Static method in class java.util.Arrays
-
Assigns the specified float value to each element of the specified array of floats.
- fill(float[], int, int, float) - Static method in class java.util.Arrays
-
Assigns the specified float value to each element of the specified range of the specified array of floats.
- fill(Object[], Object) - Static method in class java.util.Arrays
-
Assigns the specified Object reference to each element of the specified array of Objects.
- fill(Object[], int, int, Object) - Static method in class java.util.Arrays
-
Assigns the specified Object reference to each element of the specified range of the specified array of Objects.
- fill(List<? super T>, T) - Static method in class java.util.Collections
-
Replaces all of the elements of the specified list with the specified element.
- first() - Method in interface java.util.SortedSet
-
Returns the first (lowest) element currently in this set.
- first() - Method in class java.util.TreeSet
-
- firstEntry() - Method in interface java.util.NavigableMap
-
Returns a key-value mapping associated with the least key in this map, or null
if the map is empty.
- firstEntry() - Method in class java.util.TreeMap
-
- firstKey() - Method in interface java.util.SortedMap
-
Returns the first (lowest) key currently in this map.
- firstKey() - Method in class java.util.TreeMap
-
- floor(E) - Method in interface java.util.NavigableSet
-
Returns the greatest element in this set less than or equal to the given element, or null
if there is no
such element.
- floor(E) - Method in class java.util.TreeSet
-
- floorEntry(K) - Method in interface java.util.NavigableMap
-
Returns a key-value mapping associated with the greatest key less than or equal to the given key, or null
if there is no such key.
- floorEntry(K) - Method in class java.util.TreeMap
-
- floorKey(K) - Method in interface java.util.NavigableMap
-
Returns the greatest key less than or equal to the given key, or null
if there is no such key.
- floorKey(K) - Method in class java.util.TreeMap
-
- frequency(Collection<?>, Object) - Static method in class java.util.Collections
-
Returns the number of elements in the specified collection equal to the specified object.