public static enum Product.TaxStatus extends Enum<Product.TaxStatus>
| Modifier and Type | Method and Description |
|---|---|
String |
jsonValue() |
static Product.TaxStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Product.TaxStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Product.TaxStatus TAXABLE
public static final Product.TaxStatus SHIPPING
public static final Product.TaxStatus NONE
public static Product.TaxStatus[] values()
for (Product.TaxStatus c : Product.TaxStatus.values()) System.out.println(c);
public static Product.TaxStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String jsonValue()
Copyright © 2017 Netgrid. All rights reserved.