Package | Description |
---|---|
software.amazon.ion |
Public interfaces of the core Ion system.
|
Modifier and Type | Method and Description |
---|---|
ValueFactory |
IonDatagram.add(int index)
This inherited method is not yet supported by datagrams.
|
void |
IonDatagram.add(int index,
IonValue element)
This inherited method is not yet supported by datagrams.
|
void |
IonSequence.add(int index,
IonValue child)
Inserts a child value at the specified position in this sequence.
|
boolean |
IonSequence.add(IonValue child)
Appends a child value to the end of this sequence.
|
void |
IonStruct.add(String fieldName,
IonValue child)
Adds a new field to this struct.
|
void |
IonStruct.add(SymbolToken fieldName,
IonValue child)
Adds a new field to this struct using a given name and/or SID.
|
IonList |
ValueFactory.newList(IonSequence child)
Constructs a new
list with the given child. |
IonList |
ValueFactory.newList(IonValue... children)
Constructs a new
list with the given children. |
IonSexp |
ValueFactory.newSexp(IonSequence child)
Constructs a new
sexp with the given child. |
IonSexp |
ValueFactory.newSexp(IonValue... children)
Constructs a new
sexp with given child elements. |
void |
IonStruct.put(String fieldName,
IonValue child)
Puts a new field in this struct, replacing all existing fields
with the same name.
|