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 TypeClassDescriptionclassEncapsulates a Postman collectionclassConvenience class for the concept of a Folder in a Postman Collection.classAbstract class encapsulating a Postman ItemGroup.classEncapsulates a Postman collection request.Methods in com.postman.collection that return ItemModifier and TypeMethodDescriptionRecursively search the contents of theitemarray for the item with the specified key.ItemGroup.getItem(String key, enumItemType filter) Recursively search the contents of theitemarray 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 theitemproperty, optionally filter by item type (eg.Methods in com.postman.collection with parameters of type ItemModifier and TypeMethodDescriptionvoidAppend a new direct child item to the array of items in theitemproperty.voidAdd a new direct child item to the array of items in theitemproperty at the specified index.booleanSearches 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())voidMove an item to a different parent item.voidItemGroup.removeItem(Item oldItem) Removes an item from the tree of items comprising theitempropertyMethod 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