| Package | Description |
|---|---|
| de.flapdoodle.transition.initlike |
| Modifier and Type | Method and Description |
|---|---|
default TearDown<T> |
TearDown.andThen(TearDown<T> next) |
| Modifier and Type | Method and Description |
|---|---|
static <T> Optional<TearDown<T>> |
TearDown.aggregate(TearDown<T>... tearDowns) |
Optional<TearDown<T>> |
ImmutableState.onTearDown() |
Optional<TearDown<T>> |
State.onTearDown() |
| Modifier and Type | Method and Description |
|---|---|
static <T> Optional<TearDown<T>> |
TearDown.aggregate(TearDown<T>... tearDowns) |
default TearDown<T> |
TearDown.andThen(TearDown<T> next) |
static <A,B,D> State<D> |
State.merge(State<A> a,
State<B> b,
BiFunction<A,B,D> merge,
TearDown<D>... tearDowns) |
static <T> State<T> |
State.of(T current,
TearDown<T>... tearDowns) |
ImmutableState.Builder<T> |
ImmutableState.Builder.onTearDown(TearDown<T> onTearDown)
Initializes the optional value
onTearDown to onTearDown. |
ImmutableState<T> |
ImmutableState.withOnTearDown(TearDown<T> value)
Copy the current immutable object by setting a present value for the optional
onTearDown attribute. |
| Modifier and Type | Method and Description |
|---|---|
ImmutableState.Builder<T> |
ImmutableState.Builder.onTearDown(Optional<TearDown<T>> onTearDown)
Initializes the optional value
onTearDown to onTearDown. |
ImmutableState<T> |
ImmutableState.withOnTearDown(Optional<TearDown<T>> optional)
Copy the current immutable object by setting an optional value for the
onTearDown attribute. |
Copyright © 2017. All rights reserved.