| Package | Description |
|---|---|
| com.google.common.collect |
This package contains generic collection interfaces and implementations, and other utilities for working with collections.
|
| Modifier and Type | Method and Description |
|---|---|
abstract ComparisonChain |
ComparisonChain.compare(Comparable
Compares two comparable objects as specified by
Comparable,
if the result of this comparison chain has not already been determined.
|
abstract ComparisonChain |
ComparisonChain.compare(double left, double right)
Compares two
double values as specified by
Double,
if the result of this comparison chain has not already been determined.
|
abstract ComparisonChain |
ComparisonChain.compare(float left, float right)
Compares two
float values as specified by
Float,
if the result of this comparison chain has not already been determined.
|
abstract ComparisonChain |
ComparisonChain.compare(int left, int right)
Compares two
int values as specified by
Ints,
if the result of this comparison chain has not already been determined.
|
abstract ComparisonChain |
ComparisonChain.compare(long left, long right)
Compares two
long values as specified by
Longs,
if the result of this comparison chain has not already been determined.
|
abstract <T> ComparisonChain |
ComparisonChain.compare(T left, T right, Comparator
Compares two objects using a comparator,
if the result of this comparison chain has not already been determined.
|
abstract ComparisonChain |
ComparisonChain.compareFalseFirst(boolean left, boolean right)
Compares two
boolean values, considering
false to be less than
true,
if the result of this comparison chain has not already been determined.
|
abstract ComparisonChain |
ComparisonChain.compareTrueFirst(boolean left, boolean right)
Compares two
boolean values, considering
true to be less than
false,
if the result of this comparison chain has not already been determined.
|
static ComparisonChain |
ComparisonChain.start()
Begins a new chained comparison statement.
|