Module com.speedment.common.tuple
Interface TupleGetter7<T,T7>
-
- Type Parameters:
T- the type of the tuple to get a value fromT7- the type of the element to return
- All Superinterfaces:
Function<T,T7>,TupleGetter<T,T7>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface TupleGetter7<T,T7> extends TupleGetter<T,T7>
Specialization ofTupleGetterthat always returns the 7th element.Generated by com.speedment.sources.pattern.tuple.TupleGetterPattern
- Since:
- 3.1.0
- Author:
- Emil Forslund
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default intindex()Returns the index of the tuple element that this getter returns.
-
-
-
Method Detail
-
index
default int index()
Description copied from interface:TupleGetterReturns the index of the tuple element that this getter returns.- Specified by:
indexin interfaceTupleGetter<T,T7>- Returns:
- the index of the tuple element that this getter returns
-
-