public class ProductItemPrice extends Object implements Comparable<ProductItemPrice>
Modifier and Type | Class and Description |
---|---|
static class |
ProductItemPrice.Builder |
Constructor and Description |
---|
ProductItemPrice(int id,
long itemId,
Float recurringFee,
Float hourlyRecurringFee,
ProductItem item,
Iterable<ProductItemCategory> categories) |
Modifier and Type | Method and Description |
---|---|
static ProductItemPrice.Builder |
builder() |
int |
compareTo(ProductItemPrice arg0) |
boolean |
equals(Object o) |
Set<ProductItemCategory> |
getCategories() |
Float |
getHourlyRecurringFee() |
int |
getId() |
ProductItem |
getItem() |
long |
getItemId() |
Float |
getRecurringFee() |
int |
hashCode() |
ProductItemPrice.Builder |
toBuilder() |
String |
toString() |
public ProductItemPrice(int id, long itemId, Float recurringFee, Float hourlyRecurringFee, ProductItem item, Iterable<ProductItemCategory> categories)
public static ProductItemPrice.Builder builder()
public int compareTo(ProductItemPrice arg0)
compareTo
in interface Comparable<ProductItemPrice>
public int getId()
public long getItemId()
@Nullable public Float getRecurringFee()
@Nullable public Float getHourlyRecurringFee()
public Set<ProductItemCategory> getCategories()
public ProductItem getItem()
public ProductItemPrice.Builder toBuilder()
Copyright © 2009-2012 jclouds. All Rights Reserved.