| Package | Description | 
|---|---|
| com.google.common.base | Basic utility libraries and interfaces. | 
| com.google.common.collect | This package contains generic collection interfaces and implementations, and
 other utilities for working with collections. | 
| com.google.common.primitives | Static utilities for working with the eight primitive types and  void,
 and value types for treating them as unsigned. | 
| Modifier and Type | Method and Description | 
|---|---|
| <C> Converter<A,C> | Converter. andThen(Converter<B,C> secondConverter)Returns a converter whose  convertmethod appliessecondConverterto the result
 of this converter. | 
| Converter<String,String> | CaseFormat. converterTo(CaseFormat targetFormat)Returns a  Converterthat converts strings from this format totargetFormat. | 
| static <A,B> Converter<A,B> | Converter. from(Function<? super A,? extends B> forwardFunction,
        Function<? super B,? extends A> backwardFunction)Returns a converter based on existing forward and backward functions. | 
| static <T> Converter<T,T> | Converter. identity()Returns a serializable converter that always converts or reverses an object to itself. | 
| Converter<B,A> | Converter. reverse()Returns the reversed view of this converter, which converts  this.convert(a)back to a
 value roughly equivalent toa. | 
| static <T extends Enum<T>>  | Enums. stringConverter(Class<T> enumClass)Returns a converter that converts between strings and  enumvalues of typeenumClassusingEnum.valueOf(Class, String)andEnum.name(). | 
| Modifier and Type | Method and Description | 
|---|---|
| <C> Converter<A,C> | Converter. andThen(Converter<B,C> secondConverter)Returns a converter whose  convertmethod appliessecondConverterto the result
 of this converter. | 
| Modifier and Type | Method and Description | 
|---|---|
| static <A,B> Converter<A,B> | Maps. asConverter(BiMap<A,B> bimap)Returns a  Converterthat converts values usingbimap.get(),
 and whose inverse view converts values usingbimap.inverse().get(). | 
| Modifier and Type | Method and Description | 
|---|---|
| static Converter<String,Double> | Doubles. stringConverter()Returns a serializable converter object that converts between strings and
 doubles using  Double.valueOf(java.lang.String)andDouble.toString(). | 
| static Converter<String,Integer> | Ints. stringConverter()Returns a serializable converter object that converts between strings and
 integers using  Integer.decode(java.lang.String)andInteger.toString(). | 
| static Converter<String,Short> | Shorts. stringConverter()Returns a serializable converter object that converts between strings and
 shorts using  Short.decode(java.lang.String)andShort.toString(). | 
| static Converter<String,Float> | Floats. stringConverter()Returns a serializable converter object that converts between strings and
 floats using  Float.valueOf(java.lang.String)andFloat.toString(). | 
| static Converter<String,Long> | Longs. stringConverter()Returns a serializable converter object that converts between strings and
 longs using  Long.decode(java.lang.String)andLong.toString(). | 
Copyright © 2010-2015. All Rights Reserved.