Interface WebProjectSettings

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean contains​(int id)
      Returns whether an item with the given ID exists in the collection.
      java.util.Enumeration elements()
      Returns a java.util.Enumeration containing the items in the collection.
      WebProjectSetting get​(int i)
      Returns the setting at the given index in the collection.
      WebProjectSetting getItemByID​(int id)
      Returns the setting with the given id in the collection.
      int size()
      Returns the number of settings in the collection.
    • Method Detail

      • size

        int size()
        Returns the number of settings in the collection.
        Returns:
        The number of settings in the collection.
      • get

        WebProjectSetting get​(int i)
        Returns the setting at the given index in the collection. Note that the items in the collection are not ordered in any way.
        Parameters:
        i - The index of the object to return.
        Returns:
        The WebProjectSetting object at the given index.
      • elements

        java.util.Enumeration elements()
        Returns a java.util.Enumeration containing the items in the collection.
        Returns:
        A java.util.Enumeration containing the items in the collection.