Que<T> |
Que.andAccept(Accepter<? super T> accepter) |
This method will accept na Accepter type variable.
|
Que<T> |
Que.andCall(Callable<? extends T> callable) |
This method will execute Callable type variable.
|
Que<T> |
Que.andConsume(Consumer<? super T> consumer) |
This method will consume a Consumer type variable.
|
Que<T> |
Que.andDeal(Dealer<? extends T> dealer) |
This method will deal data value variable.
|
Que<T> |
Que.andExecute(Executable executable) |
Use when Operation will throw an exception.
|
Que<T> |
Que.andRun(Runnable runnable) |
This method will execute a Runnable type variable.
|
Que<T> |
Que.andSupply(Supplier<? extends T> supplier) |
This method will supply data value variable.
|
static <T> Que<T> |
Que.as(Dealer<? extends T> dealer) |
This method will take a Dealer of Type t and will set value and returns
instance of Que for other sequential Operations.
|
Que<T> |
Que.execute(Accepter<? super T> accepter) |
This method will Accept and execute Accepter type variable.
|
static <T> Que<T> |
Que.execute(Executable executable) |
This method will run a Executable instance Use when Operation will throw an exception.
|
static <T> Que<T> |
Que.of(Supplier<? extends T> supplier) |
This method will take a Supplier of Type t and will set value and returns
instance of Que for other sequential Operations.
|
static <T> Que<T> |
Que.of(T value) |
This method will set value and returns instance of Que for other sequential
Operations.
|
static <T> Que<T> |
Que.run(Runnable runnable) |
This method will run a Runnable instance.
|
Que<T> |
Que.run(Consumer<? super T> consumer) |
This method will consume execute Consumer type variable.
|