public static enum TaxationStrategy.TaxationCountry extends Enum<TaxationStrategy.TaxationCountry>
| Enum Constant and Description |
|---|
Argentina |
Brazil |
Canada |
China |
France |
Germany |
Ireland |
Mexico |
UK |
USA |
| Modifier and Type | Method and Description |
|---|---|
static TaxationStrategy.TaxationCountry |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaxationStrategy.TaxationCountry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaxationStrategy.TaxationCountry UK
public static final TaxationStrategy.TaxationCountry USA
public static final TaxationStrategy.TaxationCountry Canada
public static final TaxationStrategy.TaxationCountry Mexico
public static final TaxationStrategy.TaxationCountry Brazil
public static final TaxationStrategy.TaxationCountry Argentina
public static final TaxationStrategy.TaxationCountry China
public static final TaxationStrategy.TaxationCountry France
public static final TaxationStrategy.TaxationCountry Germany
public static final TaxationStrategy.TaxationCountry Ireland
public static TaxationStrategy.TaxationCountry[] values()
for (TaxationStrategy.TaxationCountry c : TaxationStrategy.TaxationCountry.values()) System.out.println(c);
public static TaxationStrategy.TaxationCountry 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 nullCopyright © 2015 BillForward. All rights reserved.