Uses of Annotation Type
com.google.common.annotations.Beta
Packages that use Beta
Package
Description
Collection interfaces and implementations, and other utilities for collections.
Hash functions and related structures.
Utility methods and classes for I/O; for example input streams, output streams, readers, writers,
and files.
Concurrency utilities.
-
Uses of Beta in com.google.common.collect
Classes in com.google.common.collect with annotations of type BetaMethods in com.google.common.collect with annotations of type BetaModifier and TypeMethodDescriptionStreams.forEachPair(Stream<A> streamA, Stream<B> streamB, BiConsumer<? super A, ? super B> consumer) Invokesconsumeronce for each pair of corresponding elements instreamAandstreamB.static <T> Stream<T> If a value is present inoptional, returns a stream containing only that element, otherwise returns an empty stream.static DoubleStreamStreams.stream(OptionalDouble optional) If a value is present inoptional, returns a stream containing only that element, otherwise returns an empty stream.static IntStreamStreams.stream(OptionalInt optional) If a value is present inoptional, returns a stream containing only that element, otherwise returns an empty stream.static LongStreamStreams.stream(OptionalLong optional) If a value is present inoptional, returns a stream containing only that element, otherwise returns an empty stream.static <A extends @Nullable Object, B extends @Nullable Object, R extends @Nullable Object>
Stream<R> Streams.zip(Stream<A> streamA, Stream<B> streamB, BiFunction<? super A, ? super B, R> function) Returns a stream in which each element is the result of passing the corresponding element of each ofstreamAandstreamBtofunction. -
Uses of Beta in com.google.common.hash
Classes in com.google.common.hash with annotations of type BetaModifier and TypeClassDescriptionfinal classBloomFilter<T extends @Nullable Object>A Bloom filter for instances ofT.interfaceAn object which can send data from an object of typeTinto aPrimitiveSink.final classFunnels for common types.interfaceAPrimitiveSinkthat can compute a hash code after reading the input.final classAnInputStreamthat maintains a hash of the data read from it.final classAnOutputStreamthat maintains a hash of the data written to it.interfaceAn object which can receive a stream of primitive values. -
Uses of Beta in com.google.common.io
Classes in com.google.common.io with annotations of type BetaModifier and TypeClassDescriptionfinal classAnOutputStreamthat starts buffering to a byte array, but switches to file buffering once the data reaches a configurable size.Methods in com.google.common.io with annotations of type BetaModifier and TypeMethodDescriptionstatic FileFiles.createTempDir()Deprecated.For Android users, see the Data and File Storage overview to select an appropriate temporary directory (perhapscontext.getCacheDir()), and create your own directory under that.static voidFlushables.flushQuietly(Flushable flushable) Equivalent to callingflush(flushable, true), but with noIOExceptionin the signature. -
Uses of Beta in com.google.common.util.concurrent
Classes in com.google.common.util.concurrent with annotations of type Beta
Traverserinstead.