Generated by
JDiff

Class java.util.Arrays

Documentation changed from old to new.

Changed Methods
int binarySearch(Object[], Object, Comparator) Documentation changed from old to new.
Searches the specified array for the specified object using the binary search algorithm.
boolean equals(double[], double[]) Documentation changed from old to new.
Returns true if the two specified arrays of doubles are equal to one another.
boolean equals(float[], float[]) Documentation changed from old to new.
Returns true if the two specified arrays of floats are equal to one another.
void fill(boolean[], int, int, boolean) Documentation changed from old to new.
Assigns the specified boolean value to each element of the specified range of the specified array of booleans.
void fill(byte[], int, int, byte) Documentation changed from old to new.
Assigns the specified byte value to each element of the specified range of the specified array of bytes.
void fill(char[], int, int, char) Documentation changed from old to new.
Assigns the specified char value to each element of the specified range of the specified array of chars.
void fill(double[], int, int, double) Documentation changed from old to new.
Assigns the specified double value to each element of the specified range of the specified array of doubles.
void fill(float[], int, int, float) Documentation changed from old to new.
Assigns the specified float value to each element of the specified range of the specified array of floats.
void fill(int[], int, int, int) Documentation changed from old to new.
Assigns the specified int value to each element of the specified range of the specified array of ints.
void fill(Object[], int, int, Object) Documentation changed from old to new.
Assigns the specified Object reference to each element of the specified range of the specified array of Objects.
void fill(long[], int, int, long) Documentation changed from old to new.
Assigns the specified long value to each element of the specified range of the specified array of longs.
void fill(short[], int, int, short) Documentation changed from old to new.
Assigns the specified short value to each element of the specified range of the specified array of shorts.
void sort(byte[], int, int) Documentation changed from old to new.
Sorts the specified range of the specified array of bytes into ascending numerical order.
void sort(char[], int, int) Documentation changed from old to new.
Sorts the specified range of the specified array of chars into ascending numerical order.
void sort(double[], int, int) Documentation changed from old to new.
Sorts the specified range of the specified array of doubles into ascending numerical order.
void sort(float[], int, int) Documentation changed from old to new.
Sorts the specified range of the specified array of floats into ascending numerical order.
void sort(int[], int, int) Documentation changed from old to new.
Sorts the specified range of the specified array of ints into ascending numerical order.
void sort(Object[], int, int) Documentation changed from old to new.
Sorts the specified range of the specified array of objects into ascending order according to the natural ordering of its elements.
void sort(Object[], int, int, Comparator) Documentation changed from old to new.
Sorts the specified range of the specified array of objects according to the order induced by the specified comparator.
void sort(Object[], Comparator) Documentation changed from old to new.
Sorts the specified array of objects according to the order induced by the specified comparator.
void sort(long[], int, int) Documentation changed from old to new.
Sorts the specified range of the specified array of longs into ascending numerical order.
void sort(short[], int, int) Documentation changed from old to new.
Sorts the specified range of the specified array of shorts into ascending numerical order.