Interface ValueCreateHandle<T>
-
- Type Parameters:
T- The value type.
- All Known Implementing Classes:
ConstructorValueCreateHandle,MethodHandleValueCreateHandle
public interface ValueCreateHandle<T> extends Function<Object[],T>
A handle enabling the creation of a value from an array of arguments: Java class constructor, ...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Tapply(Object[] objects)Tcreate(Object... arguments)booleanequals(Object obj)inthashCode()
-
-
-
Method Detail
-
equals
boolean equals(Object obj)
- Overrides:
equalsin classObject- Returns:
trueifobjis aValueCreateHandlereferencing the exact same value accessor: same API (java.lang.invoke or java.lang.reflect), same element (same field or method), ...
-
-