TypeValueToTuple
See javadoc - uk.gov.gchq.gaffer.data.element.function.TypeValueToTuple
Available since Gaffer version 1.19.0
Converts an TypeValue into a Tuple
Examples
Basic example
Java
JSON
Full JSON
Python
final TypeValueToTuple function = new TypeValueToTuple();
{
"class" : "TypeValueToTuple"
}
{
"class" : "uk.gov.gchq.gaffer.data.element.function.TypeValueToTuple"
}
g.TypeValueToTuple()
Input type:
uk.gov.gchq.gaffer.types.TypeValue
Example inputs:
Input Type | Input | Result Type | Result |
---|---|---|---|
uk.gov.gchq.gaffer.types.TypeValue | TypeValue[type=type,value=value] | [java.lang.String, java.lang.String] | [type, value] |
null | null |