- BaseStream<T,S extends BaseStream<T,S>> - Interface in java8.util.stream
-
Base interface for streams, which are sequences of elements supporting
sequential and parallel aggregate operations.
- BiConsumer<T,U> - Interface in java8.util.function
-
Represents an operation that accepts two input arguments and returns no
result.
- BiConsumers - Class in java8.util.function
-
A place for static default implementations of the new Java 8
default interface methods and static interface methods in the
BiConsumer
interface.
- BiFunction<T,U,R> - Interface in java8.util.function
-
Represents a function that accepts two arguments and produces a result.
- BiFunctions - Class in java8.util.function
-
A place for static default implementations of the new Java 8
default interface methods and static interface methods in the
BiFunction
interface.
- BinaryOperator<T> - Interface in java8.util.function
-
Represents an operation upon two operands of the same type, producing a result
of the same type as the operands.
- BinaryOperators - Class in java8.util.function
-
A place for static default implementations of the new Java 8
default interface methods and static interface methods in the
BinaryOperator
interface.
- BiPredicate<T,U> - Interface in java8.util.function
-
Represents a predicate (boolean-valued function) of two arguments.
- BiPredicates - Class in java8.util.function
-
A place for static default implementations of the new Java 8
default interface methods and static interface methods in the
BiPredicate
interface.
- block() - Method in interface java8.util.concurrent.ForkJoinPool.ManagedBlocker
-
Possibly blocks the current thread, for example waiting for
a lock or condition.
- BooleanSupplier - Interface in java8.util.function
-
Represents a supplier of boolean
-valued results.
- boxed() - Method in interface java8.util.stream.DoubleStream
-
Returns a Stream
consisting of the elements of this stream,
boxed to Double
.
- boxed() - Method in interface java8.util.stream.IntStream
-
Returns a Stream
consisting of the elements of this stream,
each boxed to an Integer
.
- boxed() - Method in interface java8.util.stream.LongStream
-
Returns a Stream
consisting of the elements of this stream,
each boxed to a Long
.
- build() - Method in interface java8.util.stream.DoubleStream.Builder
-
Builds the stream, transitioning this builder to the built state.
- build() - Method in interface java8.util.stream.IntStream.Builder
-
Builds the stream, transitioning this builder to the built state.
- build() - Method in interface java8.util.stream.LongStream.Builder
-
Builds the stream, transitioning this builder to the built state.
- build() - Method in interface java8.util.stream.Stream.Builder
-
Builds the stream, transitioning this builder to the built state.
- builder() - Static method in class java8.util.stream.DoubleStreams
-
Returns a builder for a DoubleStream
.
- builder() - Static method in class java8.util.stream.IntStreams
-
Returns a builder for an IntStream
.
- builder() - Static method in class java8.util.stream.LongStreams
-
Returns a builder for a LongStream
.
- builder() - Static method in class java8.util.stream.StreamSupport
-
Returns a builder for a Stream
.
- bulkRegister(int) - Method in class java8.util.concurrent.Phaser
-
Adds the given number of new unarrived parties to this phaser.