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.collectionModifier 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.Methods in com.postman.collection that return ItemModifier 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.Methods in com.postman.collection that return types with arguments of type ItemModifier 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.Methods in com.postman.collection with parameters of type ItemModifier 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
propertyMethod parameters in com.postman.collection with type arguments of type Item -
Uses of Item in com.postman.collection.adapter
Methods in com.postman.collection.adapter that return ItemModifier and TypeMethodDescriptionItemDeserializer.deserialize
(com.google.gson.JsonElement jElement, Type typeOfT, com.google.gson.JsonDeserializationContext context) Deserialize aItem