Uses of Class
com.postman.collection.Item

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

    Subclasses of Item in com.postman.collection
    Modifier and Type
    Class
    Description
    class 
    Encapsulates a Postman collection
    class 
    Convenience class for the concept of a Folder in a Postman Collection.
    class 
    Abstract class encapsulating a Postman ItemGroup.
    class 
    Encapsulates a Postman collection request.
    Methods in com.postman.collection that return Item
    Modifier and Type
    Method
    Description
    ItemGroup.getItem(String key)
    Recursively search the contents of the item array for the item with the specified key.
    ItemGroup.getItem(String key, enumItemType filter)
    Recursively search the contents of the item array for the item with the specified key, optionally returning the item or it's parent item.
    Methods in com.postman.collection that return types with arguments of type Item
    Modifier and Type
    Method
    Description
    ItemGroup.getItems()
    Return an ArrayList<Item> containing the tree of items owned by this item.
    ItemGroup.getItems(enumItemType filter)
    Recursively search the entire tree of items in the item property, optionally filter by item type (eg.
    Methods in com.postman.collection with parameters of type Item
    Modifier and Type
    Method
    Description
    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.
    boolean
    ItemGroup.hasItem(Item theItem)
    Searches the direct children of this item (eg., non-recursively) to find an entry in the array that is the same Java instance as this item (Object.equals())
    void
    Collection.moveItem(Item itemToMove, ItemGroup newParent)
    Move an item to a different parent item.
    void
    ItemGroup.removeItem(Item oldItem)
    Removes an item from the tree of items comprising the item property
    Method parameters in com.postman.collection with type arguments of type Item
    Modifier and Type
    Method
    Description
    void
    ItemGroup.addItems(ArrayList<Item> newItems)
    Add multiple items to this item.
    void
    ItemGroup.setItems(ArrayList<Item> items)
    Set the value of the item array with an ArrayList<Item>.
  • Uses of Item in com.postman.collection.adapter

    Methods in com.postman.collection.adapter that return Item
    Modifier and Type
    Method
    Description
    ItemDeserializer.deserialize(com.google.gson.JsonElement jElement, Type typeOfT, com.google.gson.JsonDeserializationContext context)
    Deserialize a Item