Uses of Class
org.dtools.ini.IniItem

Uses of IniItem in org.dtools.ini
 

Methods in org.dtools.ini that return IniItem
 IniItem AdvancedIniSection.addItem(String name)
           
 IniItem IniSection.addItem(String itemName)
          Adds a new IniItem to this section with the given name.
 IniItem AdvancedIniSection.addItem(String itemName, int index)
           
 IniItem IniSection.addItem(String itemName, int index)
          Adds an IniItem to this section at the given index.
protected  IniItem AdvancedIniSection.createItem(String name)
           
protected  IniItem BasicIniSection.createItem(String name)
           
protected abstract  IniItem IniSection.createItem(String name)
          This method creates and returns a new instance of an IniItem with the same IniValidator and case sensitivity as this object.
 IniItem AdvancedIniSection.getItem(int index)
           
 IniItem BasicIniSection.getItem(int index)
           
abstract  IniItem IniSection.getItem(int index)
          Get the item which is at the given index.
 IniItem AdvancedIniSection.getItem(String name)
           
 IniItem IniSection.getItem(String name)
          Returns the item with the given name, or null if no item exists with the given name.
 IniItem IniSection.removeItem(int index)
          Removes the item that is at the given index from this section.
 IniItem IniSection.removeItem(String name)
          Removes an item whose name matches the given name the section.
 

Methods in org.dtools.ini that return types with arguments of type IniItem
 Collection<IniItem> AdvancedIniSection.getItems()
           
 Collection<IniItem> BasicIniSection.getItems()
           
abstract  Collection<IniItem> IniSection.getItems()
          Get a collection of all the items within this section.
 Iterator<IniItem> AdvancedIniSection.iterator()
           
 Iterator<IniItem> BasicIniSection.iterator()
           
 Collection<IniItem> IniSection.removeItems(String[] names)
          Removes all the items from this section whose names are within the given array.
 

Methods in org.dtools.ini with parameters of type IniItem
 boolean AdvancedIniSection.addItem(IniItem item)
           
 boolean IniSection.addItem(IniItem item)
          Adds an IniItem to this section.
 boolean AdvancedIniSection.addItem(IniItem item, int index)
           
 boolean BasicIniSection.addItem(IniItem item, int index)
           
abstract  boolean IniSection.addItem(IniItem item, int index)
          Adds an IniItem to this section at the given index.
 boolean AdvancedIniSection.hasItem(IniItem item)
           
 boolean IniSection.hasItem(IniItem item)
          Predicate that returns true if an item is in this section.
 int AdvancedIniSection.indexOf(IniItem item)
           
 int BasicIniSection.indexOf(IniItem item)
           
abstract  int IniSection.indexOf(IniItem item)
          Returns the index of item that is in this section.
 boolean AdvancedIniSection.removeItem(IniItem item)
           
 boolean BasicIniSection.removeItem(IniItem item)
           
abstract  boolean IniSection.removeItem(IniItem item)
          Removes the item this section.