Uses of Class
org.jclouds.softlayer.domain.ProductItem

Packages that use ProductItem
org.jclouds.softlayer.compute.functions   
org.jclouds.softlayer.compute.strategy   
org.jclouds.softlayer.domain   
org.jclouds.softlayer.predicates   
 

Uses of ProductItem in org.jclouds.softlayer.compute.functions
 

Methods in org.jclouds.softlayer.compute.functions that return types with arguments of type ProductItem
static com.google.common.base.Function<ProductItem,Float> ProductItems.capacity()
          Creates a function to get the capacity from a product item.
static com.google.common.base.Function<ProductItem,String> ProductItems.description()
          Creates a function to get the description from a product item.
static com.google.common.base.Function<List<ProductItem>,String> ProductItemsToHardware.hardwareId()
          Generates a hardwareId based on the priceId's of the items in the list
static com.google.common.base.Function<ProductItem,String> ProductItemToImage.imageId()
          Generates an id for an Image.
static com.google.common.base.Function<ProductItemPrice,ProductItem> ProductItems.item()
          Creates a function to get the ProductItem for the ProductItemPrice.
static com.google.common.base.Function<ProductItem,Integer> ProductItemToImage.osBits()
          Parses the item description to determine the number of OS bits Expects the number to be in parenthesis and to contain the word "bit".
static com.google.common.base.Function<ProductItem,OsFamily> ProductItemToImage.osFamily()
          Parses the item description to determine the OSFamily
static com.google.common.base.Function<ProductItem,String> ProductItemToImage.osVersion()
          Parses the item description to determine the os version
static com.google.common.base.Function<ProductItem,ProductItemPrice> ProductItems.price()
          Creates a function to get the ProductItemPrice for the ProductItem.
 

Methods in org.jclouds.softlayer.compute.functions with parameters of type ProductItem
 Image ProductItemToImage.apply(ProductItem productItem)
           
 

Method parameters in org.jclouds.softlayer.compute.functions with type arguments of type ProductItem
 Hardware ProductItemsToHardware.apply(Iterable<ProductItem> items)
           
 

Constructor parameters in org.jclouds.softlayer.compute.functions with type arguments of type ProductItem
VirtualGuestToNodeMetadata.GetHardwareForVirtualGuest(SoftLayerClient client, com.google.common.base.Function<Iterable<ProductItem>,Hardware> productItemsToHardware)
           
 

Uses of ProductItem in org.jclouds.softlayer.compute.strategy
 

Methods in org.jclouds.softlayer.compute.strategy that return types with arguments of type ProductItem
 Iterable<Iterable<ProductItem>> SoftLayerComputeServiceAdapter.listHardwareProfiles()
           
 Iterable<ProductItem> SoftLayerComputeServiceAdapter.listImages()
           
 

Uses of ProductItem in org.jclouds.softlayer.domain
 

Methods in org.jclouds.softlayer.domain that return ProductItem
 ProductItem ProductItem.Builder.build()
           
 ProductItem ProductItemPrice.getItem()
           
 

Methods in org.jclouds.softlayer.domain that return types with arguments of type ProductItem
 Set<ProductItem> ProductPackage.getItems()
           
 

Methods in org.jclouds.softlayer.domain with parameters of type ProductItem
 int ProductItem.compareTo(ProductItem arg0)
           
static ProductItem.Builder ProductItem.Builder.fromProductItem(ProductItem in)
           
 ProductItemPrice.Builder ProductItemPrice.Builder.item(ProductItem item)
           
 

Method parameters in org.jclouds.softlayer.domain with type arguments of type ProductItem
 ProductPackage.Builder ProductPackage.Builder.items(Iterable<ProductItem> items)
           
 

Constructors in org.jclouds.softlayer.domain with parameters of type ProductItem
ProductItemPrice(int id, long itemId, Float recurringFee, Float hourlyRecurringFee, ProductItem item, Iterable<ProductItemCategory> categories)
           
 

Constructor parameters in org.jclouds.softlayer.domain with type arguments of type ProductItem
ProductPackage(int id, String name, String description, Iterable<ProductItem> items, Iterable<Datacenter> datacenters)
           
 

Uses of ProductItem in org.jclouds.softlayer.predicates
 

Methods in org.jclouds.softlayer.predicates that return types with arguments of type ProductItem
static com.google.common.base.Predicate<ProductItem> ProductItemPredicates.capacity(Float capacity)
          Tests if the ProductItem has the required capacity.
static com.google.common.base.Predicate<ProductItem> ProductItemPredicates.categoryCode(String category)
          Tests if the ProductItem contains the required category.
static com.google.common.base.Predicate<ProductItem> ProductItemPredicates.categoryCodeMatches(Pattern category)
          Tests if the ProductItem contains a category that matches the supplied Pattern
static com.google.common.base.Predicate<ProductItem> ProductItemPredicates.matches(Pattern regex)
          Tests if the ProductItem's description matches the supplied regular expression.
static com.google.common.base.Predicate<ProductItem> ProductItemPredicates.units(String units)
          Tests if the ProductItem has the required units.
 



Copyright © 2009-2012 jclouds. All Rights Reserved.