Uses of Class
com.postman.collection.RecursiveItemAddException

Packages that use RecursiveItemAddException
Package
Description
Encapsulates a Postman JSON collection and emulates functionality of the Postman SDK.
  • Uses of RecursiveItemAddException in com.postman.collection

    Modifier and Type
    Method
    Description
    void
    Collection.addCollection(Collection newColl)
    Add another collection and it's array of item, variable, and event arrays to this collection in a new Folder.
    void
    Collection.addCollection(Collection newColl, boolean copyScripts, boolean copyVariables)
    Add another collection and it's array of item, optionally variable, and optionally event arrays to this collection as children of a new Folder child item of this collection.
    void
    Collection.addCollection(Collection newColl, ItemGroup parent)
    Add another collection and it's array of item, variable, and event arrays to this collection as children of parent
    void
    Collection.addCollection(Collection newColl, ItemGroup parent, boolean copyScripts, boolean copyVariables)
    Add another collection and it's array of item, optionally variable, and optionally event arrays to this collection as children of the specified parent.
    Collection.addFolder(String name)
    Convenience method to add an item with no child items to this collection.
    Collection.addFolder(String name, int index)
    Convenience method to add an item with no child items to this collection.
    void
    ItemGroup.addItem(Item newItem)
    Append a new direct child item to the array of items in the item property.
    void
    ItemGroup.addItem(Item newItem, int position)
    Add a new direct child item to the array of items in the item property at the specified index.
    void
    ItemGroup.addItems(ArrayList<Item> newItems)
    Add multiple items to this item.
    Collection.addRequest(RequestBody reqElement, String name)
    Convenience method to add a new request item as a top level child item of this collection
    Collection.addRequest(RequestBody reqElement, String name, int position)
    Add a new request to this collection at the specified position in the array of request elements
    Collection.addRequest(RequestBody reqElement, String name, Response response)
    Create and add a new request as a top level child item of this collection.
    Collection.addRequest(RequestBody newRequest, String name, ArrayList<Response> responses)
    Convenience method to add a request with a pre-constructed ArrayList<Response> of response items.
    Collection.addRequest(String url)
    Create and add a new request as a top level child item of this collection.
    void
    Collection.moveItem(Item itemToMove, ItemGroup newParent)
    Move an item to a different parent item.
    void
    Collection.moveItem(String itemToMoveKey, String parentKey)
    Moves an item in the array of items contained by this collection from one parent to another.