Class Functions.DoubleFunctionChain<T1,T2>
- java.lang.Object
-
- org.eclipse.collections.impl.block.factory.Functions.DoubleFunctionChain<T1,T2>
-
- All Implemented Interfaces:
java.io.Serializable
,java.util.function.ToDoubleFunction<T1>
,DoubleFunction<T1>
- Enclosing class:
- Functions
public static final class Functions.DoubleFunctionChain<T1,T2> extends java.lang.Object implements DoubleFunction<T1>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private Function<T1,T2>
function1
private DoubleFunction<? super T2>
function2
private static long
serialVersionUID
-
Constructor Summary
Constructors Modifier Constructor Description private
DoubleFunctionChain(Function<T1,T2> function1, DoubleFunction<? super T2> function2)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
doubleValueOf(T1 object)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.block.function.primitive.DoubleFunction
applyAsDouble
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
function2
private final DoubleFunction<? super T2> function2
-
-
Constructor Detail
-
DoubleFunctionChain
private DoubleFunctionChain(Function<T1,T2> function1, DoubleFunction<? super T2> function2)
-
-
Method Detail
-
doubleValueOf
public double doubleValueOf(T1 object)
- Specified by:
doubleValueOf
in interfaceDoubleFunction<T1>
-
-