| Modifier and Type | Method and Description |
|---|---|
default DoubleUnarySQLOperator |
DoubleUnarySQLOperator.andThen(DoubleUnarySQLOperator after)
Returns a composed operator that first applies this operator to its input, and then applies the
after operator to the result. |
static DoubleUnarySQLOperator |
DoubleUnarySQLOperator.checked(DoubleUnaryOperator operator)
Returns a unary operator that applies the
operator operator to its input, and unwraps any UncheckedSQLException that is thrown
by throwing its cause. |
default DoubleUnarySQLOperator |
DoubleUnarySQLOperator.compose(DoubleUnarySQLOperator before)
Returns a composed operator that first applies the
before operator to its input, and then applies this operator to the result. |
static DoubleUnarySQLOperator |
DoubleUnarySQLOperator.identity()
Returns a unary operator that always returns its input argument.
|
| Modifier and Type | Method and Description |
|---|---|
default DoubleUnarySQLOperator |
DoubleUnarySQLOperator.andThen(DoubleUnarySQLOperator after)
Returns a composed operator that first applies this operator to its input, and then applies the
after operator to the result. |
default DoubleUnarySQLOperator |
DoubleUnarySQLOperator.compose(DoubleUnarySQLOperator before)
Returns a composed operator that first applies the
before operator to its input, and then applies this operator to the result. |
static DoubleUnaryOperator |
DoubleUnarySQLOperator.unchecked(DoubleUnarySQLOperator operator)
Returns a unary operator that applies the
operator operator to its input, and wraps any SQLException that is thrown in an
UncheckedSQLException. |
Copyright © 2017. All rights reserved.