Uses of Class
com.google.common.annotations.Beta
-
Packages that use Beta 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.escape Interfaces, utilities, and simple implementations of escapers and encoders.com.google.common.eventbus The EventBus allows publish-subscribe-style communication between components without requiring the components to explicitly register with one another (and thus be aware of each other).com.google.common.graph An API for representing graph (node and edge) data.com.google.common.hash Hash functions and related structures.com.google.common.html Escapers for HTML.com.google.common.io This package contains utility methods and classes for working with Java I/O; for example input streams, output streams, readers, writers, and files.com.google.common.math Arithmetic functions operating on primitive values andBigInteger
instances.com.google.common.net This package contains utility methods and classes for working with net addresses (numeric IP and domain names).com.google.common.primitives Static utilities for working with the eight primitive types andvoid
, and value types for treating them as unsigned.com.google.common.reflect This package contains utilities to work with Java reflection.com.google.common.util.concurrent Concurrency utilities.com.google.common.xml Escapers for XML.com.google.thirdparty.publicsuffix -
-
Uses of Beta in com.google.common.base
Classes in com.google.common.base with annotations of type Beta Modifier and Type Class Description static class
Splitter.MapSplitter
An object that splits strings into maps asSplitter
splits iterables and lists.class
Ticker
A time source; returns a time value representing the number of nanoseconds elapsed since some fixed but arbitrary point in time.class
Utf8
Low-level, high-performance utility methods related to the UTF-8 character encoding.Fields in com.google.common.base with annotations of type Beta Modifier and Type Field Description static CharMatcher
CharMatcher. ANY
Deprecated.UseCharMatcher.any()
instead.static CharMatcher
CharMatcher. ASCII
Deprecated.UseCharMatcher.ascii()
instead.static CharMatcher
CharMatcher. BREAKING_WHITESPACE
Deprecated.UseCharMatcher.breakingWhitespace()
instead.static CharMatcher
CharMatcher. DIGIT
Deprecated.Many digits are supplementary characters; see the class documentation.static CharMatcher
CharMatcher. INVISIBLE
Deprecated.Most invisible characters are supplementary characters; see the class documentation.static CharMatcher
CharMatcher. JAVA_DIGIT
Deprecated.Many digits are supplementary characters; see the class documentation.static CharMatcher
CharMatcher. JAVA_ISO_CONTROL
Deprecated.UseCharMatcher.javaIsoControl()
instead.static CharMatcher
CharMatcher. JAVA_LETTER
Deprecated.Most letters are supplementary characters; see the class documentation.static CharMatcher
CharMatcher. JAVA_LETTER_OR_DIGIT
Deprecated.Most letters and digits are supplementary characters; see the class documentation.static CharMatcher
CharMatcher. JAVA_LOWER_CASE
Deprecated.Some lowercase letters are supplementary characters; see the class documentation.static CharMatcher
CharMatcher. JAVA_UPPER_CASE
Deprecated.Some uppercase letters are supplementary characters; see the class documentation.static CharMatcher
CharMatcher. NONE
Deprecated.UseCharMatcher.none()
instead.static CharMatcher
CharMatcher. SINGLE_WIDTH
Deprecated.Many such characters are supplementary characters; see the class documentation.static CharMatcher
CharMatcher. WHITESPACE
Deprecated.UseCharMatcher.whitespace()
instead.Methods in com.google.common.base with annotations of type Beta Modifier and Type Method Description <A extends java.lang.Appendable>
AJoiner.MapJoiner. appendTo(A appendable, java.lang.Iterable<? extends java.util.Map.Entry<?,?>> entries)
Appends the string representation of each entry inentries
, using the previously configured separator and key-value separator, toappendable
.<A extends java.lang.Appendable>
AJoiner.MapJoiner. appendTo(A appendable, java.util.Iterator<? extends java.util.Map.Entry<?,?>> parts)
Appends the string representation of each entry inentries
, using the previously configured separator and key-value separator, toappendable
.java.lang.StringBuilder
Joiner.MapJoiner. appendTo(java.lang.StringBuilder builder, java.lang.Iterable<? extends java.util.Map.Entry<?,?>> entries)
Appends the string representation of each entry inentries
, using the previously configured separator and key-value separator, tobuilder
.java.lang.StringBuilder
Joiner.MapJoiner. appendTo(java.lang.StringBuilder builder, java.util.Iterator<? extends java.util.Map.Entry<?,?>> entries)
Appends the string representation of each entry inentries
, using the previously configured separator and key-value separator, tobuilder
.static java.util.List<java.lang.Throwable>
Throwables. getCausalChain(java.lang.Throwable throwable)
Gets aThrowable
cause chain as a list.static <X extends java.lang.Throwable>
XThrowables. getCauseAs(java.lang.Throwable throwable, java.lang.Class<X> expectedCauseType)
Returnsthrowable
's cause, cast toexpectedCauseType
.java.lang.String
Joiner.MapJoiner. join(java.lang.Iterable<? extends java.util.Map.Entry<?,?>> entries)
Returns a string containing the string representation of each entry inentries
, using the previously configured separator and key-value separator.java.lang.String
Joiner.MapJoiner. join(java.util.Iterator<? extends java.util.Map.Entry<?,?>> entries)
Returns a string containing the string representation of each entry inentries
, using the previously configured separator and key-value separator.static java.util.List<java.lang.StackTraceElement>
Throwables. lazyStackTrace(java.lang.Throwable throwable)
Returns the stack trace ofthrowable
, possibly providing slower iteration over the full trace but faster iteration over parts of the trace.static boolean
Throwables. lazyStackTraceIsLazy()
Returns whetherThrowables.lazyStackTrace(java.lang.Throwable)
will use the special implementation described in its documentation.abstract T
Optional. or(Supplier<? extends T> supplier)
Returns the contained instance if it is present;supplier.get()
otherwise.static <T> java.lang.Iterable<T>
Optional. presentInstances(java.lang.Iterable<? extends Optional<? extends T>> optionals)
Returns the value of each present instance from the suppliedoptionals
, in order, skipping over occurrences ofOptional.absent()
.java.util.List<java.lang.String>
Splitter. splitToList(java.lang.CharSequence sequence)
Splitssequence
into string components and returns them as an immutable list.static Predicate<java.lang.Class<?>>
Predicates. subtypeOf(java.lang.Class<?> clazz)
Returns a predicate that evaluates totrue
if the class being tested is assignable to (is a subtype of)clazz
.Splitter.MapSplitter
Splitter. withKeyValueSeparator(char separator)
Returns aMapSplitter
which splits entries based on this splitter, and splits entries into keys and values using the specified separator.Splitter.MapSplitter
Splitter. withKeyValueSeparator(Splitter keyValueSplitter)
Returns aMapSplitter
which splits entries based on this splitter, and splits entries into keys and values using the specified key-value splitter.Splitter.MapSplitter
Splitter. withKeyValueSeparator(java.lang.String separator)
Returns aMapSplitter
which splits entries based on this splitter, and splits entries into keys and values using the specified separator. -
Uses of Beta in com.google.common.collect
Classes in com.google.common.collect with annotations of type Beta Modifier and Type Class Description class
ArrayTable<R,C,V>
Fixed-sizeTable
implementation backed by a two-dimensional array.class
Comparators
Provides static methods for working withComparator
instances.class
EvictingQueue<E>
A non-blocking queue which automatically evicts elements from the head of the queue when attempting to add new elements onto the queue and it is full.protected class
ForwardingMap.StandardEntrySet
A sensible implementation ofMap.entrySet()
in terms of the following methods:ForwardingMap.clear()
,ForwardingMap.containsKey(java.lang.Object)
,ForwardingMap.get(java.lang.Object)
,ForwardingMap.isEmpty()
,ForwardingMap.remove(java.lang.Object)
, andForwardingMap.size()
.protected class
ForwardingMap.StandardKeySet
A sensible implementation ofMap.keySet()
in terms of the following methods:ForwardingMap.clear()
,ForwardingMap.containsKey(java.lang.Object)
,ForwardingMap.isEmpty()
,ForwardingMap.remove(java.lang.Object)
,ForwardingMap.size()
, and theSet.iterator()
method ofForwardingMap.entrySet()
.protected class
ForwardingMap.StandardValues
A sensible implementation ofMap.values()
in terms of the following methods:ForwardingMap.clear()
,ForwardingMap.containsValue(java.lang.Object)
,ForwardingMap.isEmpty()
,ForwardingMap.size()
, and theSet.iterator()
method ofForwardingMap.entrySet()
.protected class
ForwardingMultiset.StandardElementSet
A sensible implementation ofMultiset.elementSet()
in terms of the following methods:ForwardingCollection.clear()
,ForwardingCollection.contains(java.lang.Object)
,ForwardingCollection.containsAll(java.util.Collection<?>)
,ForwardingMultiset.count(java.lang.Object)
,ForwardingCollection.isEmpty()
, theSet.size()
andSet.iterator()
methods ofForwardingMultiset.entrySet()
, andForwardingMultiset.remove(Object, int)
.protected class
ForwardingNavigableMap.StandardDescendingMap
A sensible implementation ofNavigableMap.descendingMap()
in terms of the methods of thisNavigableMap
.protected class
ForwardingNavigableMap.StandardNavigableKeySet
A sensible implementation ofNavigableMap.navigableKeySet()
in terms of the methods of thisNavigableMap
.protected class
ForwardingNavigableSet.StandardDescendingSet
A sensible implementation ofNavigableSet.descendingSet()
in terms of the other methods ofNavigableSet
, notably includingNavigableSet.descendingIterator()
.protected class
ForwardingSortedMap.StandardKeySet
A sensible implementation ofSortedMap.keySet()
in terms of the methods ofForwardingSortedMap
.class
ForwardingSortedMultiset<E>
A sorted multiset which forwards all its method calls to another sorted multiset.class
ImmutableRangeMap<K extends java.lang.Comparable<?>,V>
ARangeMap
whose contents will never change, with many other important properties detailed atImmutableCollection
.class
ImmutableRangeSet<C extends java.lang.Comparable>
ARangeSet
whose contents will never change, with many other important properties detailed atImmutableCollection
.interface
Interner<E>
Provides equivalent behavior toString.intern()
for other immutable types.class
Interners
Contains static methods pertaining to instances ofInterner
.class
MinMaxPriorityQueue<E>
A double-ended priority queue, which provides constant-time access to both its least element and its greatest element, as determined by the queue's specified comparator.static class
MinMaxPriorityQueue.Builder<B>
The builder class used in creation of min-max priority queues.class
MoreCollectors
Collectors not present injava.util.stream.Collectors
that are not otherwise associated with acom.google.common
type.class
MultimapBuilder<K0,V0>
A builder for a multimap implementation that allows customization of the backing map and value collection implementations used in a particular multimap.interface
RangeMap<K extends java.lang.Comparable,V>
A mapping from disjoint nonempty ranges to non-null values.interface
RangeSet<C extends java.lang.Comparable>
class
Streams
Static utility methods related toStream
instances.static interface
Streams.DoubleFunctionWithIndex<R>
An analogue ofDoubleFunction
also accepting an index.static interface
Streams.FunctionWithIndex<T,R>
An analogue ofFunction
also accepting an index.static interface
Streams.IntFunctionWithIndex<R>
An analogue ofIntFunction
also accepting an index.static interface
Streams.LongFunctionWithIndex<R>
An analogue ofLongFunction
also accepting an index.class
TreeRangeMap<K extends java.lang.Comparable,V>
An implementation ofRangeMap
based on aTreeMap
, supporting all optional operations.class
TreeRangeSet<C extends java.lang.Comparable<?>>
An implementation ofRangeSet
backed by aTreeMap
.class
TreeTraverser<T>
Deprecated.UseTraverser
instead.Methods in com.google.common.collect with annotations of type Beta Modifier and Type Method Description FluentIterable<E>
FluentIterable. append(E... elements)
Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable, followed byelements
.FluentIterable<E>
FluentIterable. append(java.lang.Iterable<? extends E> other)
Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable, followed by those ofother
.static <A,B>
Converter<A,B>Maps. asConverter(BiMap<A,B> bimap)
Returns aConverter
that converts values usingbimap.get()
, and whose inverse view converts values usingbimap.inverse()
.get()
.static <K,V>
java.util.Map<K,java.util.List<V>>Multimaps. asMap(ListMultimap<K,V> multimap)
static <K,V>
java.util.Map<K,java.util.Collection<V>>Multimaps. asMap(Multimap<K,V> multimap)
Returnsmultimap.asMap()
.static <K,V>
java.util.Map<K,java.util.Set<V>>Multimaps. asMap(SetMultimap<K,V> multimap)
static <K,V>
java.util.Map<K,java.util.SortedSet<V>>Multimaps. asMap(SortedSetMultimap<K,V> multimap)
Returnsmultimap.asMap()
, with its type corrected fromMap<K, Collection<V>>
toMap<K, SortedSet<V>>
.static <K,V>
ImmutableBiMap.Builder<K,V>ImmutableBiMap. builderWithExpectedSize(int expectedSize)
Returns a new builder, expecting the specified number of entries to be added.static <E> ImmutableList.Builder<E>
ImmutableList. builderWithExpectedSize(int expectedSize)
Returns a new builder, expecting the specified number of elements to be added.static <K,V>
ImmutableMap.Builder<K,V>ImmutableMap. builderWithExpectedSize(int expectedSize)
Returns a new builder, expecting the specified number of entries to be added.static <E> ImmutableSet.Builder<E>
ImmutableSet. builderWithExpectedSize(int expectedSize)
Returns a new builder, expecting the specified number of distinct elements to be added.static java.util.List<java.lang.Character>
Lists. charactersOf(java.lang.CharSequence sequence)
Returns a view of the specifiedCharSequence
as aList<Character>
, viewingsequence
as a sequence of Unicode code units.static ContiguousSet<java.lang.Integer>
ContiguousSet. closed(int lower, int upper)
Returns a nonempty contiguous set containing allint
values fromlower
(inclusive) toupper
(inclusive).static ContiguousSet<java.lang.Long>
ContiguousSet. closed(long lower, long upper)
Returns a nonempty contiguous set containing alllong
values fromlower
(inclusive) toupper
(inclusive).static ContiguousSet<java.lang.Integer>
ContiguousSet. closedOpen(int lower, int upper)
Returns a contiguous set containing allint
values fromlower
(inclusive) toupper
(exclusive).static ContiguousSet<java.lang.Long>
ContiguousSet. closedOpen(long lower, long upper)
Returns a contiguous set containing alllong
values fromlower
(inclusive) toupper
(exclusive).static <E> java.util.Set<java.util.Set<E>>
Sets. combinations(java.util.Set<E> set, int size)
Returns the set of all subsets ofset
of sizesize
.static <T> FluentIterable<T>
FluentIterable. concat(java.lang.Iterable<? extends java.lang.Iterable<? extends T>> inputs)
Returns a fluent iterable that combines several iterables.static <T> FluentIterable<T>
FluentIterable. concat(java.lang.Iterable<? extends T>... inputs)
Returns a fluent iterable that combines several iterables.static <T> FluentIterable<T>
FluentIterable. concat(java.lang.Iterable<? extends T> a, java.lang.Iterable<? extends T> b)
Returns a fluent iterable that combines two iterables.static <T> FluentIterable<T>
FluentIterable. concat(java.lang.Iterable<? extends T> a, java.lang.Iterable<? extends T> b, java.lang.Iterable<? extends T> c)
Returns a fluent iterable that combines three iterables.static <T> FluentIterable<T>
FluentIterable. concat(java.lang.Iterable<? extends T> a, java.lang.Iterable<? extends T> b, java.lang.Iterable<? extends T> c, java.lang.Iterable<? extends T> d)
Returns a fluent iterable that combines four iterables.static <E> ImmutableMultiset<E>
Multisets. copyHighestCountFirst(Multiset<E> multiset)
Returns a copy ofmultiset
as anImmutableMultiset
whose iteration order is highest count first, with ties broken by the iteration order of the original multiset.static <K,V>
ImmutableBiMap<K,V>ImmutableBiMap. copyOf(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Returns an immutable bimap containing the given entries.static <K,V>
ImmutableListMultimap<K,V>ImmutableListMultimap. copyOf(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Returns an immutable multimap containing the specified entries.static <K,V>
ImmutableMap<K,V>ImmutableMap. copyOf(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Returns an immutable map containing the specified entries.static <K,V>
ImmutableMultimap<K,V>ImmutableMultimap. copyOf(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Returns an immutable multimap containing the specified entries.static <K,V>
ImmutableSetMultimap<K,V>ImmutableSetMultimap. copyOf(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Returns an immutable multimap containing the specified entries.static <K,V>
ImmutableSortedMap<K,V>ImmutableSortedMap. copyOf(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Returns an immutable map containing the given entries, with keys sorted by the provided comparator.static <K,V>
ImmutableSortedMap<K,V>ImmutableSortedMap. copyOf(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries, java.util.Comparator<? super K> comparator)
Returns an immutable map containing the given entries, with keys sorted by the provided comparator.static <E> ConcurrentHashMultiset<E>
ConcurrentHashMultiset. create(java.util.concurrent.ConcurrentMap<E,java.util.concurrent.atomic.AtomicInteger> countMap)
Creates a new, emptyConcurrentHashMultiset
usingcountMap
as the internal backing map.static <E> Multiset<E>
Multisets. difference(Multiset<E> multiset1, Multiset<?> multiset2)
Returns an unmodifiable view of the difference of two multisets.static <E> int
Queues. drain(java.util.concurrent.BlockingQueue<E> q, java.util.Collection<? super E> buffer, int numElements, long timeout, java.util.concurrent.TimeUnit unit)
Drains the queue asBlockingQueue.drainTo(Collection, int)
, but if the requestednumElements
elements are not available, it will wait for them up to the specified timeout.static <E> int
Queues. drainUninterruptibly(java.util.concurrent.BlockingQueue<E> q, java.util.Collection<? super E> buffer, int numElements, long timeout, java.util.concurrent.TimeUnit unit)
Drains the queue as Queues.drain(BlockingQueue, Collection, int, long, TimeUnit), but with a different behavior in case it is interrupted while waiting.static <T> java.util.Comparator<java.util.Optional<T>>
Comparators. emptiesFirst(java.util.Comparator<? super T> valueComparator)
Returns a comparator ofOptional
values which treatsOptional.empty()
as less than all other values, and orders the rest usingvalueComparator
on the contained value.static <T> java.util.Comparator<java.util.Optional<T>>
Comparators. emptiesLast(java.util.Comparator<? super T> valueComparator)
Returns a comparator ofOptional
values which treatsOptional.empty()
as greater than all other values, and orders the rest usingvalueComparator
on the contained value.static <E> Multiset<E>
Multisets. filter(Multiset<E> unfiltered, Predicate<? super E> predicate)
Returns a view of the elements ofunfiltered
that satisfy a predicate.static <T,K,V>
java.util.stream.Collector<T,?,ImmutableListMultimap<K,V>>ImmutableListMultimap. flatteningToImmutableListMultimap(java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends java.util.stream.Stream<? extends V>> valuesFunction)
Returns aCollector
accumulating entries into anImmutableListMultimap
.static <T,K,V>
java.util.stream.Collector<T,?,ImmutableSetMultimap<K,V>>ImmutableSetMultimap. flatteningToImmutableSetMultimap(java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends java.util.stream.Stream<? extends V>> valuesFunction)
Returns aCollector
accumulating entries into anImmutableSetMultimap
.static <T,K,V,M extends Multimap<K,V>>
java.util.stream.Collector<T,?,M>Multimaps. flatteningToMultimap(java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends java.util.stream.Stream<? extends V>> valueFunction, java.util.function.Supplier<M> multimapSupplier)
Returns aCollector
accumulating entries into aMultimap
generated from the specified supplier.default void
Multiset. forEachEntry(java.util.function.ObjIntConsumer<? super E> action)
Runs the specified action for each distinct element in this multiset, and the number of occurrences of that element.static <E> FluentIterable<E>
FluentIterable. from(E[] elements)
Returns a fluent iterable containingelements
in the specified order.static <K extends java.lang.Enum<K>,V>
ImmutableMap<K,V>Maps. immutableEnumMap(java.util.Map<K,? extends V> map)
Returns an immutable map instance containing the given entries.java.lang.String
FluentIterable. join(Joiner joiner)
Returns aString
containing all of the elements of this fluent iterable joined withjoiner
.static <T> java.lang.Iterable<T>
Iterables. mergeSorted(java.lang.Iterable<? extends java.lang.Iterable<? extends T>> iterables, java.util.Comparator<? super T> comparator)
Returns an iterable over the merged contents of all giveniterables
.static <T> UnmodifiableIterator<T>
Iterators. mergeSorted(java.lang.Iterable<? extends java.util.Iterator<? extends T>> iterators, java.util.Comparator<? super T> comparator)
Returns an iterator over the merged contents of all giveniterators
, traversing every element of the input iterators.static <R,C,V>
Table<R,C,V>Tables. newCustomTable(java.util.Map<R,java.util.Map<C,V>> backingMap, Supplier<? extends java.util.Map<C,V>> factory)
Creates a table that uses the specified backing map and factory.static <E> FluentIterable<E>
FluentIterable. of()
Returns a fluent iterable containing no elements.static <E> FluentIterable<E>
FluentIterable. of(E element, E... elements)
Returns a fluent iterable containing the specified elements in order.static <E extends java.lang.Comparable<? super E>>
java.util.Collection<java.util.List<E>>Collections2. orderedPermutations(java.lang.Iterable<E> elements)
Returns aCollection
of all the permutations of the specifiedIterable
.static <E> java.util.Collection<java.util.List<E>>
Collections2. orderedPermutations(java.lang.Iterable<E> elements, java.util.Comparator<? super E> comparator)
Returns aCollection
of all the permutations of the specifiedIterable
using the specifiedComparator
for establishing the lexicographical ordering.ImmutableBiMap.Builder<K,V>
ImmutableBiMap.Builder. orderEntriesByValue(java.util.Comparator<? super V> valueComparator)
Configures thisBuilder
to order entries by value according to the specified comparator.ImmutableMap.Builder<K,V>
ImmutableMap.Builder. orderEntriesByValue(java.util.Comparator<? super V> valueComparator)
Configures thisBuilder
to order entries by value according to the specified comparator.ImmutableSortedMap.Builder<K,V>
ImmutableSortedMap.Builder. orderEntriesByValue(java.util.Comparator<? super V> valueComparator)
Deprecated.Unsupported by ImmutableSortedMap.Builder.static <E> java.util.Collection<java.util.List<E>>
Collections2. permutations(java.util.Collection<E> elements)
Returns aCollection
of all the permutations of the specifiedCollection
.ImmutableBiMap.Builder<K,V>
ImmutableBiMap.Builder. putAll(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Adds all of the given entries to the built bimap.ImmutableListMultimap.Builder<K,V>
ImmutableListMultimap.Builder. putAll(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Adds entries to the built multimap.ImmutableMap.Builder<K,V>
ImmutableMap.Builder. putAll(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Adds all of the given entries to the built map.ImmutableMultimap.Builder<K,V>
ImmutableMultimap.Builder. putAll(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Adds entries to the built multimap.ImmutableSetMultimap.Builder<K,V>
ImmutableSetMultimap.Builder. putAll(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Adds entries to the built multimap.ImmutableSortedMap.Builder<K,V>
ImmutableSortedMap.Builder. putAll(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries)
Adds all the given entries to the built map.protected boolean
ForwardingMultiset. standardAddAll(java.util.Collection<? extends E> elementsToAdd)
A sensible definition ofForwardingCollection.addAll(Collection)
in terms ofForwardingCollection.add(Object)
andForwardingMultiset.add(Object, int)
.protected boolean
ForwardingSortedSet. standardContains(java.lang.Object object)
A sensible definition ofForwardingCollection.contains(java.lang.Object)
in terms of thefirst()
method ofForwardingSortedSet.tailSet(E)
.protected boolean
ForwardingMap. standardContainsKey(java.lang.Object key)
A sensible, albeit inefficient, definition ofForwardingMap.containsKey(java.lang.Object)
in terms of theiterator
method ofForwardingMap.entrySet()
.protected boolean
ForwardingSortedMap. standardContainsKey(java.lang.Object key)
A sensible definition ofForwardingMap.containsKey(java.lang.Object)
in terms of thefirstKey()
method ofForwardingSortedMap.tailMap(K)
.protected int
ForwardingMultiset. standardCount(java.lang.Object object)
A sensible, albeit inefficient, definition ofForwardingMultiset.count(java.lang.Object)
in terms ofForwardingMultiset.entrySet()
.protected java.util.NavigableSet<K>
ForwardingNavigableMap. standardDescendingKeySet()
A sensible definition ofForwardingNavigableMap.descendingKeySet()
as thenavigableKeySet
ofForwardingNavigableMap.descendingMap()
.protected boolean
ForwardingList. standardEquals(java.lang.Object object)
A sensible definition ofForwardingList.equals(Object)
in terms ofForwardingCollection.size()
andForwardingCollection.iterator()
.protected int
ForwardingList. standardHashCode()
A sensible definition ofForwardingList.hashCode()
in terms ofForwardingCollection.iterator()
.protected java.util.ListIterator<E>
ForwardingList. standardListIterator(int start)
A sensible default implementation ofForwardingList.listIterator(int)
, in terms ofForwardingCollection.size()
,ForwardingList.get(int)
,ForwardingList.set(int, Object)
,ForwardingList.add(int, Object)
, andForwardingList.remove(int)
.protected V
ForwardingMap. standardRemove(java.lang.Object key)
A sensible, albeit inefficient, definition ofForwardingMap.remove(java.lang.Object)
in terms of theiterator
method ofForwardingMap.entrySet()
.protected boolean
ForwardingSortedSet. standardRemove(java.lang.Object object)
A sensible definition ofForwardingCollection.remove(java.lang.Object)
in terms of theiterator()
method ofForwardingSortedSet.tailSet(E)
.protected java.util.List<E>
ForwardingList. standardSubList(int fromIndex, int toIndex)
A sensible default implementation ofForwardingList.subList(int, int)
.protected java.util.SortedMap<K,V>
ForwardingSortedMap. standardSubMap(K fromKey, K toKey)
A sensible default implementation ofForwardingSortedMap.subMap(Object, Object)
in terms ofForwardingSortedMap.headMap(Object)
andForwardingSortedMap.tailMap(Object)
.protected java.util.NavigableSet<E>
ForwardingNavigableSet. standardSubSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
A sensible definition ofForwardingNavigableSet.subSet(Object, boolean, Object, boolean)
in terms of theheadSet
andtailSet
methods.protected java.util.SortedSet<E>
ForwardingSortedSet. standardSubSet(E fromElement, E toElement)
A sensible default implementation ofForwardingSortedSet.subSet(Object, Object)
in terms ofForwardingSortedSet.headSet(Object)
andForwardingSortedSet.tailSet(Object)
.protected java.lang.String
ForwardingMapEntry. standardToString()
A sensible definition ofForwardingObject.toString()
in terms ofForwardingMapEntry.getKey()
andForwardingMapEntry.getValue()
.static <K extends java.lang.Comparable<? super K>,V>
java.util.NavigableMap<K,V>Maps. subMap(java.util.NavigableMap<K,V> map, Range<K> range)
Returns a view of the portion ofmap
whose keys are contained byrange
.static <K extends java.lang.Comparable<? super K>>
java.util.NavigableSet<K>Sets. subSet(java.util.NavigableSet<K> set, Range<K> range)
Returns a view of the portion ofset
whose elements are contained byrange
.static <E> Multiset<E>
Multisets. sum(Multiset<? extends E> multiset1, Multiset<? extends E> multiset2)
Returns an unmodifiable view of the sum of two multisets.static <T,K,V>
java.util.stream.Collector<T,?,ImmutableBiMap<K,V>>ImmutableBiMap. toImmutableBiMap(java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends V> valueFunction)
Returns aCollector
that accumulates elements into anImmutableBiMap
whose keys and values are the result of applying the provided mapping functions to the input elements.static <T,K extends java.lang.Enum<K>,V>
java.util.stream.Collector<T,?,ImmutableMap<K,V>>Maps. toImmutableEnumMap(java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends V> valueFunction)
Returns aCollector
that accumulates elements into anImmutableMap
whose keys and values are the result of applying the provided mapping functions to the input elements.static <T,K extends java.lang.Enum<K>,V>
java.util.stream.Collector<T,?,ImmutableMap<K,V>>Maps. toImmutableEnumMap(java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends V> valueFunction, java.util.function.BinaryOperator<V> mergeFunction)
Returns aCollector
that accumulates elements into anImmutableMap
whose keys and values are the result of applying the provided mapping functions to the input elements.static <E extends java.lang.Enum<E>>
java.util.stream.Collector<E,?,ImmutableSet<E>>Sets. toImmutableEnumSet()
Returns aCollector
that accumulates the input elements into a newImmutableSet
with an implementation specialized for enums.static <E> java.util.stream.Collector<E,?,ImmutableList<E>>
ImmutableList. toImmutableList()
Returns aCollector
that accumulates the input elements into a newImmutableList
, in encounter order.static <T,K,V>
java.util.stream.Collector<T,?,ImmutableListMultimap<K,V>>ImmutableListMultimap. toImmutableListMultimap(java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends V> valueFunction)
Returns aCollector
that accumulates elements into anImmutableListMultimap
whose keys and values are the result of applying the provided mapping functions to the input elements.static <T,K,V>
java.util.stream.Collector<T,?,ImmutableMap<K,V>>ImmutableMap. toImmutableMap(java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends V> valueFunction)
Returns aCollector
that accumulates elements into anImmutableMap
whose keys and values are the result of applying the provided mapping functions to the input elements.static <T,K,V>
java.util.stream.Collector<T,?,ImmutableMap<K,V>>ImmutableMap. toImmutableMap(java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends V> valueFunction, java.util.function.BinaryOperator<V> mergeFunction)
Returns aCollector
that accumulates elements into anImmutableMap
whose keys and values are the result of applying the provided mapping functions to the input elements.static <E> java.util.stream.Collector<E,?,ImmutableMultiset<E>>
ImmutableMultiset. toImmutableMultiset()
Returns aCollector
that accumulates the input elements into a newImmutableMultiset
.static <T,K extends java.lang.Comparable<? super K>,V>
java.util.stream.Collector<T,?,ImmutableRangeMap<K,V>>ImmutableRangeMap. toImmutableRangeMap(java.util.function.Function<? super T,Range<K>> keyFunction, java.util.function.Function<? super T,? extends V> valueFunction)
Returns aCollector
that accumulates the input elements into a newImmutableRangeMap
.static <E extends java.lang.Comparable<? super E>>
java.util.stream.Collector<Range<E>,?,ImmutableRangeSet<E>>ImmutableRangeSet. toImmutableRangeSet()
Returns aCollector
that accumulates the input elements into a newImmutableRangeSet
.static <E> java.util.stream.Collector<E,?,ImmutableSet<E>>
ImmutableSet. toImmutableSet()
Returns aCollector
that accumulates the input elements into a newImmutableSet
.static <T,K,V>
java.util.stream.Collector<T,?,ImmutableSetMultimap<K,V>>ImmutableSetMultimap. toImmutableSetMultimap(java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends V> valueFunction)
Returns aCollector
that accumulates elements into anImmutableSetMultimap
whose keys and values are the result of applying the provided mapping functions to the input elements.static <T,K,V>
java.util.stream.Collector<T,?,ImmutableSortedMap<K,V>>ImmutableSortedMap. toImmutableSortedMap(java.util.Comparator<? super K> comparator, java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends V> valueFunction)
Returns aCollector
that accumulates elements into anImmutableSortedMap
whose keys and values are the result of applying the provided mapping functions to the input elements.static <T,K,V>
java.util.stream.Collector<T,?,ImmutableSortedMap<K,V>>ImmutableSortedMap. toImmutableSortedMap(java.util.Comparator<? super K> comparator, java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends V> valueFunction, java.util.function.BinaryOperator<V> mergeFunction)
Returns aCollector
that accumulates elements into anImmutableSortedMap
whose keys and values are the result of applying the provided mapping functions to the input elements.static <E> java.util.stream.Collector<E,?,ImmutableSortedMultiset<E>>
ImmutableSortedMultiset. toImmutableSortedMultiset(java.util.Comparator<? super E> comparator)
Returns aCollector
that accumulates the input elements into a newImmutableMultiset
.static <E> java.util.stream.Collector<E,?,ImmutableSortedSet<E>>
ImmutableSortedSet. toImmutableSortedSet(java.util.Comparator<? super E> comparator)
Returns aCollector
that accumulates the input elements into a newImmutableSortedSet
, ordered by the specified comparator.static <T,R,C,V>
java.util.stream.Collector<T,?,ImmutableTable<R,C,V>>ImmutableTable. toImmutableTable(java.util.function.Function<? super T,? extends R> rowFunction, java.util.function.Function<? super T,? extends C> columnFunction, java.util.function.Function<? super T,? extends V> valueFunction)
Returns aCollector
that accumulates elements into anImmutableTable
.static <T,K,V,M extends Multimap<K,V>>
java.util.stream.Collector<T,?,M>Multimaps. toMultimap(java.util.function.Function<? super T,? extends K> keyFunction, java.util.function.Function<? super T,? extends V> valueFunction, java.util.function.Supplier<M> multimapSupplier)
Returns aCollector
accumulating entries into aMultimap
generated from the specified supplier.static <T,R,C,V,I extends Table<R,C,V>>
java.util.stream.Collector<T,?,I>Tables. toTable(java.util.function.Function<? super T,? extends R> rowFunction, java.util.function.Function<? super T,? extends C> columnFunction, java.util.function.Function<? super T,? extends V> valueFunction, java.util.function.Supplier<I> tableSupplier)
Returns aCollector
that accumulates elements into aTable
created using the specified supplier, whose cells are generated by applying the provided mapping functions to the input elements.static <R,C,V1,V2>
Table<R,C,V2>Tables. transformValues(Table<R,C,V1> fromTable, Function<? super V1,V2> function)
Returns a view of a table where each value is transformed by a function.static <E> Multiset<E>
Multisets. union(Multiset<? extends E> multiset1, Multiset<? extends E> multiset2)
Returns an unmodifiable view of the union of two multisets.static <R,C,V>
RowSortedTable<R,C,V>Tables. unmodifiableRowSortedTable(RowSortedTable<R,? extends C,? extends V> table)
Returns an unmodifiable view of the specified row-sorted table.static <E> SortedMultiset<E>
Multisets. unmodifiableSortedMultiset(SortedMultiset<E> sortedMultiset)
Returns an unmodifiable view of the specified sorted multiset. -
Uses of Beta in com.google.common.escape
Classes in com.google.common.escape with annotations of type Beta Modifier and Type Class Description class
ArrayBasedCharEscaper
ACharEscaper
that uses an array to quickly look up replacement characters for a givenchar
value.class
ArrayBasedEscaperMap
An implementation-specific parameter class suitable for initializingArrayBasedCharEscaper
orArrayBasedUnicodeEscaper
instances.class
ArrayBasedUnicodeEscaper
AUnicodeEscaper
that uses an array to quickly look up replacement characters for a given code point.class
CharEscaper
An object that converts literal text into a format safe for inclusion in a particular context (such as an XML document).class
CharEscaperBuilder
Simple helper class to build a "sparse" array of objects based on the indexes that were added to it.class
Escapers
Static utility methods pertaining toEscaper
instances.static class
Escapers.Builder
A builder for simple, fast escapers.class
UnicodeEscaper
AnEscaper
that converts literal text into a format safe for inclusion in a particular context (such as an XML document). -
Uses of Beta in com.google.common.eventbus
Classes in com.google.common.eventbus with annotations of type Beta Modifier and Type Class Description interface
AllowConcurrentEvents
Marks an event subscriber method as being thread-safe.class
AsyncEventBus
AnEventBus
that takes the Executor of your choice and uses it to dispatch events, allowing dispatch to occur asynchronously.class
DeadEvent
Wraps an event that was posted, but which had no subscribers and thus could not be delivered.class
EventBus
Dispatches events to listeners, and provides ways for listeners to register themselves.interface
Subscribe
Marks a method as an event subscriber. -
Uses of Beta in com.google.common.graph
Classes in com.google.common.graph with annotations of type Beta Modifier and Type Class Description class
AbstractGraph<N>
This class provides a skeletal implementation ofGraph
.class
AbstractNetwork<N,E>
This class provides a skeletal implementation ofNetwork
.class
AbstractValueGraph<N,V>
This class provides a skeletal implementation ofValueGraph
.class
ElementOrder<T>
Used to represent the order of elements in a data structure that supports different options for iteration order guarantees.class
EndpointPair<N>
An immutable pair representing the two endpoints of an edge in a graph.interface
Graph<N>
An interface for graph-structured data, whose edges are anonymous entities with no identity or information of their own.class
GraphBuilder<N>
A builder for constructing instances ofMutableGraph
with user-defined properties.class
Graphs
class
ImmutableGraph<N>
AGraph
whose elements and structural relationships will never change.class
ImmutableNetwork<N,E>
ANetwork
whose elements and structural relationships will never change.class
ImmutableValueGraph<N,V>
AValueGraph
whose elements and structural relationships will never change.interface
MutableGraph<N>
A subinterface ofGraph
which adds mutation methods.interface
MutableNetwork<N,E>
A subinterface ofNetwork
which adds mutation methods.interface
MutableValueGraph<N,V>
A subinterface ofValueGraph
which adds mutation methods.interface
Network<N,E>
An interface for graph-structured data, whose edges are unique objects.class
NetworkBuilder<N,E>
A builder for constructing instances ofMutableNetwork
with user-defined properties.interface
PredecessorsFunction<N>
A functional interface for graph-structured data.interface
SuccessorsFunction<N>
A functional interface for graph-structured data.class
Traverser<N>
An object that can traverse the nodes that are reachable from a specified (set of) start node(s) using a specifiedSuccessorsFunction
.interface
ValueGraph<N,V>
An interface for graph-structured data, whose edges have associated non-unique values.class
ValueGraphBuilder<N,V>
A builder for constructing instances ofMutableValueGraph
with user-defined properties. -
Uses of Beta in com.google.common.hash
Classes in com.google.common.hash with annotations of type Beta Modifier and Type Class Description class
BloomFilter<T>
A Bloom filter for instances ofT
.interface
Funnel<T>
An object which can send data from an object of typeT
into aPrimitiveSink
.class
Funnels
Funnels for common types.class
HashCode
An immutable hash code of arbitrary bit length.interface
Hasher
APrimitiveSink
that can compute a hash code after reading the input.interface
HashFunction
A hash function is a collision-averse pure function that maps an arbitrary block of data to a number called a hash code.class
Hashing
Static methods to obtainHashFunction
instances, and other static hashing-related utilities.class
HashingInputStream
AnInputStream
that maintains a hash of the data read from it.class
HashingOutputStream
AnOutputStream
that maintains a hash of the data written to it.interface
PrimitiveSink
An object which can receive a stream of primitive values. -
Uses of Beta in com.google.common.html
Classes in com.google.common.html with annotations of type Beta Modifier and Type Class Description class
HtmlEscapers
Escaper
instances suitable for strings to be included in HTML attribute values and most elements' text contents. -
Uses of Beta in com.google.common.io
Classes in com.google.common.io with annotations of type Beta Modifier and Type Interface Description interface
ByteProcessor<T>
A callback interface to process bytes from a stream.class
ByteStreams
Provides utility methods for working with byte arrays and I/O streams.class
CharStreams
Provides utility methods for working with character streams.class
Closeables
Utility methods for working withCloseable
objects.class
Closer
class
CountingInputStream
AnInputStream
that counts the number of bytes read.class
CountingOutputStream
An OutputStream that counts the number of bytes written.class
FileBackedOutputStream
AnOutputStream
that starts buffering to a byte array, but switches to file buffering once the data reaches a configurable size.class
Files
Provides utility methods for working with files.class
Flushables
Utility methods for working withFlushable
objects.class
InsecureRecursiveDeleteException
Exception indicating that a recursive delete can't be performed because the file system does not have the support necessary to guarantee that it is not vulnerable to race conditions that would allow it to delete files and directories outside of the directory being deleted (i.e.,SecureDirectoryStream
is not supported).interface
LineProcessor<T>
A callback to be used with the streamingreadLines
methods.class
LineReader
A class for reading lines of text.class
LittleEndianDataInputStream
An implementation ofDataInput
that uses little-endian byte ordering for readingshort
,int
,float
,double
, andlong
values.class
LittleEndianDataOutputStream
An implementation ofDataOutput
that uses little-endian byte ordering for writingchar
,short
,int
,float
,double
, andlong
values.class
MoreFiles
Static utilities for use withPath
instances, intended to complementFiles
.class
PatternFilenameFilter
File name filter that only accepts files matching a regular expression.class
RecursiveDeleteOption
Options for use with recursive delete methods (MoreFiles.deleteRecursively(java.nio.file.Path, com.google.common.io.RecursiveDeleteOption...)
andMoreFiles.deleteDirectoryContents(java.nio.file.Path, com.google.common.io.RecursiveDeleteOption...)
).class
Resources
Provides utility methods for working with resources in the classpath.Methods in com.google.common.io with annotations of type Beta Modifier and Type Method Description ByteSource
CharSource. asByteSource(java.nio.charset.Charset charset)
Returns aByteSource
view of this char source that encodes chars read from this source as bytes using the givenCharset
.void
CharSource. forEachLine(java.util.function.Consumer<? super java.lang.String> action)
Reads all lines of text from this source, running the givenaction
for each line as it is read.long
CharSource. length()
Returns the length of this source in chars, even if doing so requires opening and traversing an entire stream.Optional<java.lang.Long>
CharSource. lengthIfKnown()
Returns the size of this source in chars, if the size can be easily determined without actually opening the data stream.java.util.stream.Stream<java.lang.String>
CharSource. lines()
Opens a newStream
for reading text one line at a time from this source.<T> T
ByteSource. read(ByteProcessor<T> processor)
Reads the contents of this byte source using the givenprocessor
to process bytes as they are read.<T> T
CharSource. readLines(LineProcessor<T> processor)
Reads lines of text from this source, processing each line as it is read using the givenprocessor
.Optional<java.lang.Long>
ByteSource. sizeIfKnown()
Returns the size of this source in bytes, if the size can be easily determined without actually opening the data stream.void
CharSink. writeLines(java.util.stream.Stream<? extends java.lang.CharSequence> lines)
Writes the given lines of text to this sink with each line (including the last) terminated with the operating system's default line separator.void
CharSink. writeLines(java.util.stream.Stream<? extends java.lang.CharSequence> lines, java.lang.String lineSeparator)
Writes the given lines of text to this sink with each line (including the last) terminated with the given line separator. -
Uses of Beta in com.google.common.math
Classes in com.google.common.math with annotations of type Beta Modifier and Type Class Description class
LinearTransformation
The representation of a linear transformation between real numbersx
andy
.class
PairedStats
An immutable value object capturing some basic statistics about a collection of paired double values (e.g.class
PairedStatsAccumulator
A mutable object which accumulates paired double values (e.g.class
Quantiles
Provides a fluent API for calculating quantiles.class
Stats
A bundle of statistical summary values -- sum, count, mean/average, min and max, and several forms of variance -- that were computed from a single set of zero or more floating-point values.class
StatsAccumulator
A mutable object which accumulates double values and tracks some basic statistics over all the values added so far.Methods in com.google.common.math with annotations of type Beta Modifier and Type Method Description static java.math.BigInteger
BigIntegerMath. ceilingPowerOfTwo(java.math.BigInteger x)
Returns the smallest power of two greater than or equal tox
.static int
IntMath. ceilingPowerOfTwo(int x)
Returns the smallest power of two greater than or equal tox
.static long
LongMath. ceilingPowerOfTwo(long x)
Returns the smallest power of two greater than or equal tox
.static java.math.BigInteger
BigIntegerMath. floorPowerOfTwo(java.math.BigInteger x)
Returns the largest power of two less than or equal tox
.static int
IntMath. floorPowerOfTwo(int x)
Returns the largest power of two less than or equal tox
.static long
LongMath. floorPowerOfTwo(long x)
Returns the largest power of two less than or equal tox
.static boolean
IntMath. isPrime(int n)
Returnstrue
ifn
is a prime number: an integer greater than one that cannot be factored into a product of smaller positive integers.static boolean
LongMath. isPrime(long n)
Returnstrue
ifn
is a prime number: an integer greater than one that cannot be factored into a product of smaller positive integers.static int
IntMath. saturatedAdd(int a, int b)
Returns the sum ofa
andb
unless it would overflow or underflow in which caseInteger.MAX_VALUE
orInteger.MIN_VALUE
is returned, respectively.static long
LongMath. saturatedAdd(long a, long b)
Returns the sum ofa
andb
unless it would overflow or underflow in which caseLong.MAX_VALUE
orLong.MIN_VALUE
is returned, respectively.static int
IntMath. saturatedMultiply(int a, int b)
Returns the product ofa
andb
unless it would overflow or underflow in which caseInteger.MAX_VALUE
orInteger.MIN_VALUE
is returned, respectively.static long
LongMath. saturatedMultiply(long a, long b)
Returns the product ofa
andb
unless it would overflow or underflow in which caseLong.MAX_VALUE
orLong.MIN_VALUE
is returned, respectively.static int
IntMath. saturatedPow(int b, int k)
Returns theb
to thek
th power, unless it would overflow or underflow in which caseInteger.MAX_VALUE
orInteger.MIN_VALUE
is returned, respectively.static long
LongMath. saturatedPow(long b, int k)
Returns theb
to thek
th power, unless it would overflow or underflow in which caseLong.MAX_VALUE
orLong.MIN_VALUE
is returned, respectively.static int
IntMath. saturatedSubtract(int a, int b)
Returns the difference ofa
andb
unless it would overflow or underflow in which caseInteger.MAX_VALUE
orInteger.MIN_VALUE
is returned, respectively.static long
LongMath. saturatedSubtract(long a, long b)
Returns the difference ofa
andb
unless it would overflow or underflow in which caseLong.MAX_VALUE
orLong.MIN_VALUE
is returned, respectively. -
Uses of Beta in com.google.common.net
Classes in com.google.common.net with annotations of type Beta Modifier and Type Class Description class
HostAndPort
An immutable representation of a host and port.class
HostSpecifier
A syntactically valid host specifier, suitable for use in a URI.class
InetAddresses
Static utility methods pertaining toInetAddress
instances.static class
InetAddresses.TeredoInfo
A simple immutable data class to encapsulate the information to be found in a Teredo address.class
InternetDomainName
An immutable well-formed internet domain name, such ascom
orfoo.co.uk
.class
MediaType
Represents an Internet Media Type (also known as a MIME Type or Content Type).class
PercentEscaper
AUnicodeEscaper
that escapes some set of Java characters using a UTF-8 based percent encoding scheme.Fields in com.google.common.net with annotations of type Beta Modifier and Type Field Description static java.lang.String
HttpHeaders. FOLLOW_ONLY_WHEN_PRERENDER_SHOWN
The HTTPFollow-Only-When-Prerender-Shown
header field name.static java.lang.String
HttpHeaders. PUBLIC_KEY_PINS
The HTTPPublic-Key-Pins
header field name.static java.lang.String
HttpHeaders. PUBLIC_KEY_PINS_REPORT_ONLY
The HTTPPublic-Key-Pins-Report-Only
header field name.static java.lang.String
HttpHeaders. X_DOWNLOAD_OPTIONS
The HTTPX-Download-Options
header field name. -
Uses of Beta in com.google.common.primitives
Classes in com.google.common.primitives with annotations of type Beta Modifier and Type Class Description class
ImmutableDoubleArray
An immutable array ofdouble
values, with an API resemblingList
.class
ImmutableIntArray
An immutable array ofint
values, with an API resemblingList
.class
ImmutableLongArray
An immutable array oflong
values, with an API resemblingList
.class
UnsignedInts
Static utility methods pertaining toint
primitives that interpret values as unsigned (that is, any negative valuex
is treated as the positive value2^32 + x
).class
UnsignedLongs
Static utility methods pertaining tolong
primitives that interpret values as unsigned (that is, any negative valuex
is treated as the positive value2^64 + x
).Methods in com.google.common.primitives with annotations of type Beta Modifier and Type Method Description static char
Chars. constrainToRange(char value, char min, char max)
Returns the value nearest tovalue
which is within the closed range[min..max]
.static double
Doubles. constrainToRange(double value, double min, double max)
Returns the value nearest tovalue
which is within the closed range[min..max]
.static float
Floats. constrainToRange(float value, float min, float max)
Returns the value nearest tovalue
which is within the closed range[min..max]
.static int
Ints. constrainToRange(int value, int min, int max)
Returns the value nearest tovalue
which is within the closed range[min..max]
.static long
Longs. constrainToRange(long value, long min, long max)
Returns the value nearest tovalue
which is within the closed range[min..max]
.static short
Shorts. constrainToRange(short value, short min, short max)
Returns the value nearest tovalue
which is within the closed range[min..max]
.static int
Booleans. countTrue(boolean... values)
Returns the number ofvalues
that aretrue
.static java.util.Comparator<java.lang.Boolean>
Booleans. falseFirst()
Returns aComparator<Boolean>
that sortsfalse
beforetrue
.static byte
UnsignedBytes. parseUnsignedByte(java.lang.String string)
Returns the unsignedbyte
value represented by the given decimal string.static byte
UnsignedBytes. parseUnsignedByte(java.lang.String string, int radix)
Returns the unsignedbyte
value represented by a string with the given radix.static Converter<java.lang.String,java.lang.Double>
Doubles. stringConverter()
Returns a serializable converter object that converts between strings and doubles usingDouble.valueOf(java.lang.String)
andDouble.toString()
.static Converter<java.lang.String,java.lang.Float>
Floats. stringConverter()
Returns a serializable converter object that converts between strings and floats usingFloat.valueOf(java.lang.String)
andFloat.toString()
.static Converter<java.lang.String,java.lang.Integer>
Ints. stringConverter()
Returns a serializable converter object that converts between strings and integers usingInteger.decode(java.lang.String)
andInteger.toString()
.static Converter<java.lang.String,java.lang.Long>
Longs. stringConverter()
Returns a serializable converter object that converts between strings and longs usingLong.decode(java.lang.String)
andLong.toString()
.static Converter<java.lang.String,java.lang.Short>
Shorts. stringConverter()
Returns a serializable converter object that converts between strings and shorts usingShort.decode(java.lang.String)
andShort.toString()
.static java.lang.String
UnsignedBytes. toString(byte x)
Returns a string representation of x, where x is treated as unsigned.static java.lang.String
UnsignedBytes. toString(byte x, int radix)
Returns a string representation ofx
for the given radix, wherex
is treated as unsigned.static java.util.Comparator<java.lang.Boolean>
Booleans. trueFirst()
Returns aComparator<Boolean>
that sortstrue
beforefalse
.static java.lang.Double
Doubles. tryParse(java.lang.String string)
Parses the specified string as a double-precision floating point value.static java.lang.Float
Floats. tryParse(java.lang.String string)
Parses the specified string as a single-precision floating point value.static java.lang.Integer
Ints. tryParse(java.lang.String string)
Parses the specified string as a signed decimal integer value.static java.lang.Integer
Ints. tryParse(java.lang.String string, int radix)
Parses the specified string as a signed integer value using the specified radix.static java.lang.Long
Longs. tryParse(java.lang.String string)
Parses the specified string as a signed decimal long value.static java.lang.Long
Longs. tryParse(java.lang.String string, int radix)
Parses the specified string as a signed long value using the specified radix. -
Uses of Beta in com.google.common.reflect
Classes in com.google.common.reflect with annotations of type Beta Modifier and Type Class Description class
AbstractInvocationHandler
Abstract implementation ofInvocationHandler
that handlesObject.equals(java.lang.Object)
,Object.hashCode()
andObject.toString()
.class
ClassPath
Scans the source of aClassLoader
and finds all loadable classes and resources.static class
ClassPath.ClassInfo
Represents a class that can be loaded throughClassPath.ClassInfo.load()
.static class
ClassPath.ResourceInfo
Represents a class path resource that can be either a class file or any other resource file loadable from the class path.class
ImmutableTypeToInstanceMap<B>
A type-to-instance map backed by anImmutableMap
.static class
ImmutableTypeToInstanceMap.Builder<B>
A builder for creating immutable type-to-instance maps.class
Invokable<T,R>
Wrapper around either aMethod
or aConstructor
.class
MutableTypeToInstanceMap<B>
A mutable type-to-instance map.class
Parameter
Represents a method or constructor parameter.class
Reflection
Static utilities relating to Java reflection.class
TypeParameter<T>
Captures a free type variable that can be used inTypeToken.where(com.google.common.reflect.TypeParameter<X>, com.google.common.reflect.TypeToken<X>)
.class
TypeResolver
An object of this class encapsulates type mappings from type variables.interface
TypeToInstanceMap<B>
A map, each entry of which maps aTypeToken
to an instance of that type.class
TypeToken<T>
AType
with generics. -
Uses of Beta in com.google.common.util.concurrent
Classes in com.google.common.util.concurrent with annotations of type Beta Modifier and Type Class Description class
AbstractCheckedFuture<V,X extends java.lang.Exception>
Deprecated.CheckedFuture
cannot properly support the chained operations that are the primary goal ofListenableFuture
.class
AbstractExecutionThreadService
Base class for services that can implementAbstractExecutionThreadService.startUp()
,AbstractExecutionThreadService.run()
andAbstractExecutionThreadService.shutDown()
methods.class
AbstractIdleService
Base class for services that do not need a thread while "running" but may need one during startup and shutdown.class
AbstractListeningExecutorService
AbstractListeningExecutorService
implementation that createsListenableFuture
instances for eachRunnable
andCallable
submitted to it.class
AbstractScheduledService
Base class for services that can implementAbstractScheduledService.startUp()
andAbstractScheduledService.shutDown()
but while in the "running" state need to perform a periodic task.static class
AbstractScheduledService.CustomScheduler
AAbstractScheduledService.Scheduler
that provides a convenient way for theAbstractScheduledService
to use a dynamically changing schedule.protected static class
AbstractScheduledService.CustomScheduler.Schedule
A value object that represents an absolute delay until a task should be invoked.class
AbstractService
Base class for implementing services that can handleAbstractService.doStart()
andAbstractService.doStop()
requests, responding to them withAbstractService.notifyStarted()
andAbstractService.notifyStopped()
callbacks.interface
AsyncCallable<V>
Computes a value, possibly asynchronously.interface
CheckedFuture<V,X extends java.lang.Exception>
Deprecated.CheckedFuture
cannot properly support the chained operations that are the primary goal ofListenableFuture
.class
CycleDetectingLockFactory
TheCycleDetectingLockFactory
createsReentrantLock
instances andReentrantReadWriteLock
instances that detect potential deadlock by checking for cycles in lock acquisition order.static class
CycleDetectingLockFactory.Policies
Pre-definedCycleDetectingLockFactory.Policy
implementations.static interface
CycleDetectingLockFactory.Policy
Encapsulates the action to be taken when a potential deadlock is encountered.static class
CycleDetectingLockFactory.PotentialDeadlockException
Represents a detected cycle in lock acquisition ordering.static class
CycleDetectingLockFactory.WithExplicitOrdering<E extends java.lang.Enum<E>>
ACycleDetectingLockFactory.WithExplicitOrdering
provides the additional enforcement of an application-specified ordering of lock acquisitions.class
FakeTimeLimiter
A TimeLimiter implementation which actually does not attempt to limit time at all.class
FluentFuture<V>
AListenableFuture
that supports fluent chains of operations.class
ForwardingCheckedFuture<V,X extends java.lang.Exception>
Deprecated.CheckedFuture
cannot properly support the chained operations that are the primary goal ofListenableFuture
.static class
ForwardingCheckedFuture.SimpleForwardingCheckedFuture<V,X extends java.lang.Exception>
Deprecated.CheckedFuture
cannot properly support the chained operations that are the primary goal ofListenableFuture
.class
Futures
Static utility methods pertaining to theFuture
interface.static class
Futures.FutureCombiner<V>
A helper to create a newListenableFuture
whose result is generated from a combination of input futures.class
JdkFutureAdapters
Utilities necessary for working with libraries that supply plainFuture
instances.interface
ListenableScheduledFuture<V>
Helper interface to implement bothListenableFuture
andScheduledFuture
.interface
ListeningScheduledExecutorService
AScheduledExecutorService
that returnsListenableFuture
instances from itsExecutorService
methods.class
Monitor
A synchronization abstraction supporting waiting on arbitrary boolean conditions.static class
Monitor.Guard
A boolean condition for which a thread may wait.class
RateLimiter
A rate limiter.class
Runnables
Static utility methods pertaining to theRunnable
interface.interface
Service
An object with an operational state, plus asynchronousService.startAsync()
andService.stopAsync()
lifecycle methods to transition between states.static class
Service.Listener
A listener for the various state changes that aService
goes through in its lifecycle.static class
Service.State
The lifecycle states of a service.class
ServiceManager
A manager for monitoring and controlling a set of services.static class
ServiceManager.Listener
A listener for the aggregate state changes of the services that are under management.class
SimpleTimeLimiter
A TimeLimiter that runs method calls in the background using anExecutorService
.class
Striped<L>
A stripedLock/Semaphore/ReadWriteLock
.interface
TimeLimiter
Imposes a time limit on method calls.class
Uninterruptibles
Utilities for treating interruptible operations as uninterruptible.Methods in com.google.common.util.concurrent with annotations of type Beta Modifier and Type Method Description static void
MoreExecutors. addDelayedShutdownHook(java.util.concurrent.ExecutorService service, long terminationTimeout, java.util.concurrent.TimeUnit timeUnit)
Add a shutdown hook to wait for thread completion in the givenservice
.protected void
AbstractFuture. afterDone()
Callback method that is called exactly once after the future is completed.static <V> ListenableFuture<java.util.List<V>>
Futures. allAsList(ListenableFuture<? extends V>... futures)
Creates a newListenableFuture
whose value is a list containing the values of all its input futures, if all succeed.static <V> ListenableFuture<java.util.List<V>>
Futures. allAsList(java.lang.Iterable<? extends ListenableFuture<? extends V>> futures)
Creates a newListenableFuture
whose value is a list containing the values of all its input futures, if all succeed.static <T> AsyncCallable<T>
Callables. asAsyncCallable(java.util.concurrent.Callable<T> callable, ListeningExecutorService listeningExecutorService)
Creates anAsyncCallable
from aCallable
.static java.util.concurrent.ExecutorService
MoreExecutors. getExitingExecutorService(java.util.concurrent.ThreadPoolExecutor executor)
Converts the given ThreadPoolExecutor into an ExecutorService that exits when the application is complete.static java.util.concurrent.ExecutorService
MoreExecutors. getExitingExecutorService(java.util.concurrent.ThreadPoolExecutor executor, long terminationTimeout, java.util.concurrent.TimeUnit timeUnit)
Converts the given ThreadPoolExecutor into an ExecutorService that exits when the application is complete.static java.util.concurrent.ScheduledExecutorService
MoreExecutors. getExitingScheduledExecutorService(java.util.concurrent.ScheduledThreadPoolExecutor executor)
Converts the given ScheduledThreadPoolExecutor into a ScheduledExecutorService that exits when the application is complete.static java.util.concurrent.ScheduledExecutorService
MoreExecutors. getExitingScheduledExecutorService(java.util.concurrent.ScheduledThreadPoolExecutor executor, long terminationTimeout, java.util.concurrent.TimeUnit timeUnit)
Converts the given ScheduledThreadPoolExecutor into a ScheduledExecutorService that exits when the application is complete.static <T> ImmutableList<ListenableFuture<T>>
Futures. inCompletionOrder(java.lang.Iterable<? extends ListenableFuture<? extends T>> futures)
Returns a list of delegate futures that correspond to the futures received in the order that they complete.static java.util.concurrent.Executor
MoreExecutors. newSequentialExecutor(java.util.concurrent.Executor delegate)
Returns anExecutor
that runs each task executed sequentially, such that no two tasks are running concurrently.static java.util.concurrent.ThreadFactory
MoreExecutors. platformThreadFactory()
Returns a default thread factory used to create new threads.boolean
AtomicLongMap. removeIfZero(K key)
Atomically removekey
from the map iff its associated value is 0.protected boolean
AbstractFuture. setFuture(ListenableFuture<? extends V> future)
Sets the result of thisFuture
to match the supplied inputFuture
once the suppliedFuture
is done, unless thisFuture
has already been cancelled or set (including "set asynchronously," defined below).boolean
SettableFuture. setFuture(ListenableFuture<? extends V> future)
static boolean
MoreExecutors. shutdownAndAwaitTermination(java.util.concurrent.ExecutorService service, long timeout, java.util.concurrent.TimeUnit unit)
Shuts down the given executor service gradually, first disabling new submissions and later, if necessary, cancelling remaining tasks.static <V> ListenableFuture<java.util.List<V>>
Futures. successfulAsList(ListenableFuture<? extends V>... futures)
Creates a newListenableFuture
whose value is a list containing the values of all its successful input futures.static <V> ListenableFuture<java.util.List<V>>
Futures. successfulAsList(java.lang.Iterable<? extends ListenableFuture<? extends V>> futures)
Creates a newListenableFuture
whose value is a list containing the values of all its successful input futures. -
Uses of Beta in com.google.common.xml
Classes in com.google.common.xml with annotations of type Beta Modifier and Type Class Description class
XmlEscapers
Escaper
instances suitable for strings to be included in XML attribute values and elements' text contents. -
Uses of Beta in com.google.thirdparty.publicsuffix
Classes in com.google.thirdparty.publicsuffix with annotations of type Beta Modifier and Type Class Description class
PublicSuffixPatterns
Do not use this class directly.class
PublicSuffixType
Do not use this class directly.
-