Uses of Class
acdp.misc.Layout

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

    Methods in acdp.misc that return Layout
    Modifier and Type
    Method
    Description
    final Layout
    Layout.add(String key, Layout layout)
    Adds the specified layout with the specified key.
    final Layout
    Layout.add(String key, Layout.Seq seq)
    Adds the specified sequence with the specified key.
    final Layout
    Layout.add(String key, String value)
    Adds the specified string value with the specified key.
    final Layout
    Layout.addLayout(String key)
    Creates a new layout, adds it to this layout with the specified key and returns the new layout.
    final Layout
    Layout.Seq.addLayout()
    Creates a new layout, appends it to the end of this sequence and returns the new layout.
    static final Layout
    Layout.fromFile(Path file)
    Constructs a layout by reading it from the specified file.
    static final Layout
    Layout.fromInputStream(InputStream inputStream)
    Constructs a layout by reading it from the specified input stream.
    final Layout
    Layout.getLayout(String key)
    Returns the layout with the specified key.
    final Layout
    Layout.Seq.getLayout(int index)
    Returns the layout at the specified position in this sequence.
    final Layout
    Layout.getLayoutByQualKey(String qualKey)
    Returns the layout with the specified qualified key.
    final Layout
    Layout.getLayoutByQualKey(String qualKey, char separator)
    Returns the layout with the specified qualified key, the keys separated by the specified separator character.
    final Layout
    Layout.Seq.insertLayout(int index)
    Creates a new layout, inserts it at the specified position in this sequence and returns the new layout.
    final Layout
    Layout.remove(String key)
    Removes the entry with the specified key.
    final Layout
    Layout.replace(String key, Layout layout)
    Replaces the stored layout having the specified key with the specified layout.
    final Layout
    Layout.replace(String key, Layout.Seq seq)
    Replaces the stored sequence having the specified key with the specified sequence.
    final Layout
    Layout.replace(String key, String value)
    Replaces the stored string value having the specified key with the specified string value.
    final Layout
    Layout.replaceKey(String key, String newKey)
    Replaces the specified current key with the specified new key.
    Methods in acdp.misc with parameters of type Layout
    Modifier and Type
    Method
    Description
    final Layout
    Layout.add(String key, Layout layout)
    Adds the specified layout with the specified key.
    Layout.Seq.add(Layout layout)
    Appends the specified layout to the end of this sequence.
    Layout.Seq.insert(int index, Layout layout)
    Inserts the specified layout at the specified position in this sequence.
    final Layout
    Layout.replace(String key, Layout layout)
    Replaces the stored layout having the specified key with the specified layout.
    Layout.Seq.replace(int index, Layout layout)
    Replaces the layout at the specified position in this sequence with the specified layout.
    Constructors in acdp.misc with parameters of type Layout
    Modifier
    Constructor
    Description
     
    Layout(Layout layout)
    Copy constructor.