@FunctionalInterfacepublic interfaceLongUnaryOperator
long-valued operand that produces along-valued result. This is the primitive type specialization ofUnaryOperator forlong.This is afunctional interface whose functional method isapplyAsLong(long).
UnaryOperator| Modifier and Type | Method | Description |
|---|---|---|
defaultLongUnaryOperator | andThen(LongUnaryOperator after) | Returns a composed operator that first applies this operator to its input, and then applies the after operator to the result. |
long | applyAsLong(long operand) | Applies this operator to the given operand. |
defaultLongUnaryOperator | compose(LongUnaryOperator before) | Returns a composed operator that first applies the before operator to its input, and then applies this operator to the result. |
staticLongUnaryOperator | identity() | Returns a unary operator that always returns its input argument. |
long applyAsLong(long operand)
operand - the operanddefault LongUnaryOperator compose(LongUnaryOperator before)
before operator to its input, and then applies this operator to the result. If evaluation of either operator throws an exception, it is relayed to the caller of the composed operator.before - the operator to apply before this operator is appliedbefore operator and then applies this operatorNullPointerException - if before is nullandThen(LongUnaryOperator)default LongUnaryOperator andThen(LongUnaryOperator after)
after operator to the result. If evaluation of either operator throws an exception, it is relayed to the caller of the composed operator.after - the operator to apply after this operator is appliedafter operatorNullPointerException - if after is nullcompose(LongUnaryOperator)static LongUnaryOperator identity()