Package uk.gov.gchq.koryphe.tuple
Class MapTuple<R>
- java.lang.Object
-
- uk.gov.gchq.koryphe.tuple.MapTuple<R>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Objectget(R reference)Get a value from thisTuplewith the given reference.Map<R,Object>getValues()inthashCode()Iterator<Object>iterator()voidput(R reference, Object value)Put a value into thisTuplewith the given reference.voidsetValues(Map<R,Object> values)StringtoString()Iterable<Object>values()-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
put
public void put(R reference, Object value)
Description copied from interface:TuplePut a value into thisTuplewith the given reference.
-
get
public Object get(R reference)
Description copied from interface:TupleGet a value from thisTuplewith the given reference.
-
-