Uses of Interface
jsonvalues.ImmutableSeq
-
-
Uses of ImmutableSeq in jsonvalues
Methods in jsonvalues that return ImmutableSeq Modifier and Type Method Description ImmutableSeq
ImmutableSeq. add(int index, JsElem ele)
adds an element at the index, shifting elements at greater or equal indexes one position to the right.ImmutableSeq
ImmutableSeq. appendBack(JsElem elem)
appends the element to the back of the seqImmutableSeq
ImmutableSeq. appendFront(JsElem elem)
appends the element to the front of the seqImmutableSeq
ImmutableSeq. remove(int index)
removes the element located at the index.ImmutableSeq
ImmutableSeq. update(int index, JsElem ele)
updates the element located at the index with a new element.Method parameters in jsonvalues with type arguments of type ImmutableSeq Modifier and Type Method Description ImmutableJsons
ImmutableJsons. withSeq(Class<? extends ImmutableSeq> seq)
returns a new factory of immutable Jsons using as underlying data structure to store elements of Json arrays the given as a parameter
-