| Package | Description |
|---|---|
| org.springframework.tuple |
Base package for tuple classes.
|
| org.springframework.tuple.kryo |
Contains tuple processor classes.
|
| org.springframework.tuple.processor |
Contains tuple processor classes.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableTuple
Extension of
Tuple that allows mutating and addition of fields. |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultMutableTuple
Extension of
DefaultTuple that also allows tuple mutation. |
class |
DefaultTuple
Default implementation of Tuple interface.
|
| Modifier and Type | Field and Description |
|---|---|
protected org.springframework.core.convert.converter.Converter<Tuple,String> |
DefaultTuple.tupleToStringConverter |
| Modifier and Type | Method and Description |
|---|---|
Tuple |
TupleBuilder.build() |
Tuple |
JsonBytesToTupleConverter.convert(byte[] source) |
Tuple |
JsonNodeToTupleConverter.convert(com.fasterxml.jackson.databind.JsonNode root) |
Tuple |
JsonStringToTupleConverter.convert(String source) |
static Tuple |
TupleBuilder.fromString(String source) |
Tuple |
Tuple.getTuple(int index)
Read the Tuple value given the index position
|
Tuple |
DefaultTuple.getTuple(int index) |
Tuple |
Tuple.getTuple(String name)
Read the
Tuple value given the field 'name'. |
Tuple |
DefaultTuple.getTuple(String name) |
protected Tuple |
TupleBuilder.newTuple(List<String> names,
List<Object> values) |
Tuple |
TupleBuilder.of(String k1,
Object v1) |
Tuple |
TupleBuilder.of(String k1,
Object v1,
String k2,
Object v2) |
Tuple |
TupleBuilder.of(String k1,
Object v1,
String k2,
Object v2,
String k3,
Object v3) |
Tuple |
TupleBuilder.of(String k1,
Object v1,
String k2,
Object v2,
String k3,
Object v3,
String k4,
Object v4) |
Tuple |
TupleBuilder.ofNamesAndValues(List<String> names,
List<Object> values) |
Tuple |
Tuple.select(String expression)
Use SpEL expression to return a subset of the tuple that matches the expression
|
Tuple |
DefaultTuple.select(String expression) |
Tuple |
TupleStringMarshaller.toTuple(String source) |
| Modifier and Type | Method and Description |
|---|---|
String |
TupleToJsonStringConverter.convert(Tuple source) |
String |
TupleStringMarshaller.fromTuple(Tuple source) |
TupleBuilder |
TupleBuilder.putAll(Tuple tuple)
Add all names and values of the tuple to the built tuple.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
DefaultTuple.setTupleToStringConverter(org.springframework.core.convert.converter.Converter<Tuple,String> tupleToStringConverter) |
| Constructor and Description |
|---|
TupleStringMarshaller(org.springframework.core.convert.converter.Converter<Tuple,String> tupleToStringConverter,
org.springframework.core.convert.converter.Converter<String,Tuple> stringToTupleConverter) |
TupleStringMarshaller(org.springframework.core.convert.converter.Converter<Tuple,String> tupleToStringConverter,
org.springframework.core.convert.converter.Converter<String,Tuple> stringToTupleConverter) |
| Modifier and Type | Method and Description |
|---|---|
Tuple |
DefaultTupleSerializer.read(com.esotericsoftware.kryo.Kryo kryo,
com.esotericsoftware.kryo.io.Input input,
Class<Tuple> type) |
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultTupleSerializer.write(com.esotericsoftware.kryo.Kryo kryo,
com.esotericsoftware.kryo.io.Output output,
Tuple tuple) |
| Modifier and Type | Method and Description |
|---|---|
Tuple |
DefaultTupleSerializer.read(com.esotericsoftware.kryo.Kryo kryo,
com.esotericsoftware.kryo.io.Input input,
Class<Tuple> type) |
| Modifier and Type | Method and Description |
|---|---|
Tuple |
TupleProcessor.process(Tuple tuple) |
| Modifier and Type | Method and Description |
|---|---|
Tuple |
TupleProcessor.process(Tuple tuple) |
Copyright © 2016 Pivotal Software, Inc.. All rights reserved.