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 boolean
equals(Object o)
Object
get(R reference)
Get a value from thisTuple
with the given reference.Map<R,Object>
getValues()
int
hashCode()
Iterator<Object>
iterator()
void
put(R reference, Object value)
Put a value into thisTuple
with the given reference.void
setValues(Map<R,Object> values)
String
toString()
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:Tuple
Put a value into thisTuple
with the given reference.
-
get
public Object get(R reference)
Description copied from interface:Tuple
Get a value from thisTuple
with the given reference.
-
-