| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use GwtIncompatible | |
|---|---|
| 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. | 
| Uses of GwtIncompatible in com.google.common.base | 
|---|
| Methods in com.google.common.base with annotations of type GwtIncompatible | |
|---|---|
| static Predicate<CharSequence> | Predicates.contains(Pattern pattern)Returns a predicate that evaluates to trueif theCharSequencebeing tested contains any match for the given
 regular expression pattern. | 
| static Predicate<CharSequence> | Predicates.containsPattern(String pattern)Returns a predicate that evaluates to trueif theCharSequencebeing tested contains any match for the given
 regular expression pattern. | 
| static Predicate<Object> | Predicates.instanceOf(Class<?> clazz)Returns a predicate that evaluates to trueif the object being
 tested is an instance of the given class. | 
| static Splitter | Splitter.on(Pattern separatorPattern)Returns a splitter that considers any subsequence matching patternto be a separator. | 
| static Splitter | Splitter.onPattern(String separatorPattern)Returns a splitter that considers any subsequence matching a given pattern (regular expression) to be a separator. | 
| Uses of GwtIncompatible in com.google.common.collect | 
|---|
| Methods in com.google.common.collect with annotations of type GwtIncompatible | ||
|---|---|---|
| static
 | ObjectArrays.concat(T[] first,
             T[] second,
             Class<T> type)Returns a new array that contains the concatenated contents of two arrays. | |
|  MapMaker | MapMaker.concurrencyLevel(int concurrencyLevel)Guides the allowed concurrency among update operations. | |
| static
 | Iterables.filter(Iterable<?> unfiltered,
             Class<T> type)Returns all instances of class typeinunfiltered. | |
| static
 | Iterators.filter(Iterator<?> unfiltered,
             Class<T> type)Returns all instances of class typeinunfiltered. | |
|  MapMaker | MapMaker.softKeys()Specifies that each key (not value) stored in the map should be wrapped in a SoftReference(by default, strong references
 are used). | |
|  MapMaker | MapMaker.softValues()Specifies that each value (not key) stored in the map should be wrapped in a SoftReference(by default, strong references
 are used). | |
|  MapMaker | MapMaker.weakKeys()Specifies that each key (not value) stored in the map should be wrapped in a WeakReference(by default, strong references
 are used). | |
|  MapMaker | MapMaker.weakValues()Specifies that each value (not key) stored in the map should be wrapped in a WeakReference(by default, strong references
 are used). | |
| Uses of GwtIncompatible in com.google.common.primitives | 
|---|
| Methods in com.google.common.primitives with annotations of type GwtIncompatible | |
|---|---|
| static char | Chars.fromByteArray(byte[] bytes)Returns the charvalue whose big-endian representation is
 stored in the first 2 bytes ofbytes; equivalent toByteBuffer.wrap(bytes).getChar(). | 
| static short | Shorts.fromByteArray(byte[] bytes)Returns the shortvalue whose big-endian representation is stored
 in the first 2 bytes ofbytes; equivalent toByteBuffer.wrap(bytes).getShort(). | 
| static int | Ints.fromByteArray(byte[] bytes)Returns the intvalue whose big-endian representation is stored in
 the first 4 bytes ofbytes; equivalent toByteBuffer.wrap(bytes).getInt(). | 
| static long | Longs.fromByteArray(byte[] bytes)Returns the longvalue whose big-endian representation is
 stored in the first 8 bytes ofbytes; equivalent toByteBuffer.wrap(bytes).getLong(). | 
| static byte[] | Chars.toByteArray(char value)Returns a big-endian representation of valuein a 2-element byte
 array; equivalent toByteBuffer.allocate(2).putChar(value).array(). | 
| static byte[] | Ints.toByteArray(int value)Returns a big-endian representation of valuein a 4-element byte
 array; equivalent toByteBuffer.allocate(4).putInt(value).array(). | 
| static byte[] | Longs.toByteArray(long value)Returns a big-endian representation of valuein an 8-element byte
 array; equivalent toByteBuffer.allocate(8).putLong(value).array(). | 
| static byte[] | Shorts.toByteArray(short value)Returns a big-endian representation of valuein a 2-element byte
 array; equivalent toByteBuffer.allocate(2).putShort(value).array(). | 
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||