Package com.redis.om.spring.tuple
Interface Quintuple<E1,E2,E3,E4,E5>
- All Superinterfaces:
GenericTuple<Object>,Tuple
- All Known Implementing Classes:
QuintupleImpl
-
Method Summary
Modifier and TypeMethodDescriptiondefault Objectget(int index) getFifth()static <E1,E2, E3, E4, E5>
FifthAccessor<Quintuple<E1,E2, E3, E4, E5>, E5> getFirst()static <E1,E2, E3, E4, E5>
FirstAccessor<Quintuple<E1,E2, E3, E4, E5>, E1> static <E1,E2, E3, E4, E5>
FourthAccessor<Quintuple<E1,E2, E3, E4, E5>, E4> static <E1,E2, E3, E4, E5>
SecondAccessor<Quintuple<E1,E2, E3, E4, E5>, E2> getThird()static <E1,E2, E3, E4, E5>
ThirdAccessor<Quintuple<E1,E2, E3, E4, E5>, E3> default intsize()Methods inherited from interface com.redis.om.spring.tuple.Tuple
labelledMap, stream, streamOf
-
Method Details
-
getFirst
E1 getFirst() -
getSecond
E2 getSecond() -
getThird
E3 getThird() -
getFourth
E4 getFourth() -
getFifth
E5 getFifth() -
size
default int size()- Specified by:
sizein interfaceGenericTuple<E1>
-
get
- Specified by:
getin interfaceGenericTuple<E1>
-
getFirstGetter
-
getSecondGetter
-
getThirdGetter
-
getFourthGetter
-
getFifthGetter
-