Uses of Class
com.postman.collection.Item
Package
Description
Encapsulates a Postman JSON collection and emulates functionality of the Postman SDK.
-
Uses of Item in com.postman.collection
Modifier and TypeClassDescriptionclass
Encapsulates a Postman collectionclass
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.Modifier and TypeMethodDescriptionRecursively search the contents of theitem
array for the item with the specified key.ItemGroup.getItem
(String key, enumItemType filter) Recursively search the contents of theitem
array for the item with the specified key, optionally returning the item or it's parent item.Modifier and TypeMethodDescriptionItemGroup.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 theitem
property, optionally filter by item type (eg.Modifier and TypeMethodDescriptionvoid
Append a new direct child item to the array of items in theitem
property.void
Add a new direct child item to the array of items in theitem
property at the specified index.boolean
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
Move an item to a different parent item.void
ItemGroup.removeItem
(Item oldItem) Removes an item from the tree of items comprising theitem
property -
Uses of Item in com.postman.collection.adapter
Modifier and TypeMethodDescriptionItemDeserializer.deserialize
(com.google.gson.JsonElement jElement, Type typeOfT, com.google.gson.JsonDeserializationContext context) Deserialize aItem