Searched defs:anotherDouble (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/
H A DDouble.java938 * @param anotherDouble the {@code Double} to be compared.
939 * @return the value {@code 0} if {@code anotherDouble} is
942 * is numerically less than {@code anotherDouble};
945 * {@code anotherDouble}.
949 public int compareTo(Double anotherDouble) { argument
950 return Double.compare(value, anotherDouble.value);

Completed in 1181 milliseconds