| Interface | Description |
|---|---|
| com.google.common.collect.MapConstraint |
Use
Preconditions for basic checks. In place of constrained maps, we
encourage you to check your preconditions explicitly instead of leaving that work to the map
implementation. For the specific case of rejecting null, consider ImmutableMap. This
class is scheduled for removal in Guava 21.0. |
| Class | Description |
|---|---|
| com.google.common.base.Objects.ToStringHelper |
Use
MoreObjects.ToStringHelper instead. This class is scheduled for removal
in Guava 21.0. |
| com.google.common.collect.MapConstraints |
Use
Preconditions for basic checks. In place of
constrained maps, we encourage you to check your preconditions
explicitly instead of leaving that work to the map implementation.
For the specific case of rejecting null, consider ImmutableMap.
This class is scheduled for removal in Guava 21.0. |
| Field | Description |
|---|---|
| com.google.common.base.CharMatcher.ANY |
Use
CharMatcher.any() instead. This constant is scheduled to be
removed in June 2018. |
| com.google.common.base.CharMatcher.ASCII |
Use
CharMatcher.ascii() instead. This constant is scheduled to be
removed in June 2018. |
| com.google.common.base.CharMatcher.BREAKING_WHITESPACE |
Use
CharMatcher.breakingWhitespace() instead. This constant is scheduled
to be removed in June 2018. |
| com.google.common.base.CharMatcher.DIGIT |
Use
CharMatcher.digit() instead. This constant is scheduled to be
removed in June 2018. |
| com.google.common.base.CharMatcher.INVISIBLE |
Use
CharMatcher.invisible() instead. This constant is scheduled to be
removed in June 2018. |
| com.google.common.base.CharMatcher.JAVA_DIGIT |
Use
CharMatcher.javaDigit() instead. This constant is scheduled to be
removed in June 2018. |
| com.google.common.base.CharMatcher.JAVA_ISO_CONTROL |
Use
CharMatcher.javaIsoControl() instead. This constant is scheduled to
be removed in June 2018. |
| com.google.common.base.CharMatcher.JAVA_LETTER |
Use
CharMatcher.javaLetter() instead. This constant is scheduled to be
removed in June 2018. |
| com.google.common.base.CharMatcher.JAVA_LETTER_OR_DIGIT |
Use
CharMatcher.javaLetterOrDigit() instead. This constant is scheduled
to be removed in June 2018. |
| com.google.common.base.CharMatcher.JAVA_LOWER_CASE |
Use
CharMatcher.javaLowerCase() instead. This constant is scheduled to
be removed in June 2018. |
| com.google.common.base.CharMatcher.JAVA_UPPER_CASE |
Use
CharMatcher.javaUpperCase() instead. This constant is scheduled to
be removed in June 2018. |
| com.google.common.base.CharMatcher.NONE |
Use
CharMatcher.none() instead. This constant is scheduled to be
removed in June 2018. |
| com.google.common.base.CharMatcher.SINGLE_WIDTH |
Use
CharMatcher.singleWidth() instead. This constant is scheduled to be
removed in June 2018. |
| com.google.common.base.CharMatcher.WHITESPACE |
Use
CharMatcher.whitespace() instead. This constant is scheduled to be
removed in June 2018. |