Uses of Class
acdp.misc.Layout.Seq

Packages that use Layout.Seq
Package
Description
Contains classes that are only needed in special cases.
  • Uses of Layout.Seq in acdp.misc

    Methods in acdp.misc that return Layout.Seq
    Modifier and Type
    Method
    Description
    Layout.Seq.add(Layout layout)
    Appends the specified layout to the end of this sequence.
    Layout.Seq.add(Layout.Seq seq)
    Appends the specified sequence to the end of this sequence.
    Layout.Seq.add(String value)
    Appends the specified string value to the end of this sequence.
    Layout.addSeq(String key)
    Creates a new sequence, adds it to this layout with the specified key and returns the new sequence.
    Layout.Seq.addSeq()
    Creates a new sequence, appends it to the end of this sequence and returns the new sequence.
    Layout.getSeq(String key)
    Returns the sequence with the specified key.
    Layout.Seq.getSeq(int index)
    Returns the sequence at the specified position in this sequence.
    Layout.getSeqByQualKey(String qualKey)
    Returns the sequence with the specified qualified key.
    Layout.getSeqByQualKey(String qualKey, char separator)
    Returns the sequence with the specified qualified key, the keys separated by the specified separator character.
    Layout.Seq.insert(int index, Layout layout)
    Inserts the specified layout at the specified position in this sequence.
    Layout.Seq.insert(int index, Layout.Seq seq)
    Inserts the specified sequence at the specified position in this sequence.
    Layout.Seq.insert(int index, String value)
    Inserts the specified string value at the specified position in this sequence.
    Layout.Seq.insertSeq(int index)
    Creates a new sequence, inserts it at the specified position in this sequence and returns the new sequence.
    Layout.Seq.remove(int index)
    Removes the element at the specified position in this sequence.
    Layout.Seq.replace(int index, Layout layout)
    Replaces the layout at the specified position in this sequence with the specified layout.
    Layout.Seq.replace(int index, Layout.Seq seq)
    Replaces the sequence at the specified position in this sequence with the specified sequence.
    Layout.Seq.replace(int index, String value)
    Replaces the string value at the specified position in this sequence with the specified string value.
    Methods in acdp.misc with parameters of type Layout.Seq
    Modifier and Type
    Method
    Description
    final Layout
    Layout.add(String key, Layout.Seq seq)
    Adds the specified sequence with the specified key.
    Layout.Seq.add(Layout.Seq seq)
    Appends the specified sequence to the end of this sequence.
    Layout.Seq.insert(int index, Layout.Seq seq)
    Inserts the specified sequence at the specified position in this sequence.
    final Layout
    Layout.replace(String key, Layout.Seq seq)
    Replaces the stored sequence having the specified key with the specified sequence.
    Layout.Seq.replace(int index, Layout.Seq seq)
    Replaces the sequence at the specified position in this sequence with the specified sequence.