| 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 | 
|---|---|
| ComparisonChain | ComparisonChain. compare(Boolean left,
              Boolean right)Deprecated. 
 Use  compareFalseFirst(boolean, boolean); or, if the parameters passed
     are being either negated or reversed, undo the negation or reversal and
     usecompareTrueFirst(boolean, boolean). | 
| abstract ComparisonChain | ComparisonChain. compare(Comparable<?> left,
              Comparable<?> right)Compares two comparable objects as specified by  Comparable.compareTo(T), if the result of this comparison chain
 has not already been determined. | 
| abstract ComparisonChain | ComparisonChain. compare(double left,
              double right)Compares two  doublevalues as specified byDouble.compare(double, double), if the result of this comparison chain has not
 already been determined. | 
| abstract ComparisonChain | ComparisonChain. compare(float left,
              float right)Compares two  floatvalues as specified byFloat.compare(float, float), if the result of this comparison chain has not
 already been determined. | 
| abstract ComparisonChain | ComparisonChain. compare(int left,
              int right)Compares two  intvalues as specified byInts.compare(int, int),
 if the result of this comparison chain has not already been
 determined. | 
| abstract ComparisonChain | ComparisonChain. compare(long left,
              long right)Compares two  longvalues as specified byLongs.compare(long, long),
 if the result of this comparison chain has not already been
 determined. | 
| abstract <T> ComparisonChain | ComparisonChain. compare(T left,
              T right,
              Comparator<T> 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  booleanvalues, consideringfalseto be less
 thantrue, if the result of this comparison chain has not
 already been determined. | 
| abstract ComparisonChain | ComparisonChain. compareTrueFirst(boolean left,
                                boolean right)Compares two  booleanvalues, consideringtrueto be less
 thanfalse, if the result of this comparison chain has not
 already been determined. | 
| static ComparisonChain | ComparisonChain. start()Begins a new chained comparison statement. | 
Copyright © 2010-2015. All Rights Reserved.