Enum TaxRuleTypeId
- java.lang.Object
-
- java.lang.Enum<TaxRuleTypeId>
-
- net.avalara.avatax.rest.client.enums.TaxRuleTypeId
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TaxRuleTypeId>
public enum TaxRuleTypeId extends java.lang.Enum<TaxRuleTypeId>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BaseRuleExemptEntityRuleFeeRuleNexusRuleOtherRuleProductTaxabilityRuleRateCapRuleRateOverrideRuleRateRuleTaxOverrideRule
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static TaxRuleTypeIdvalueOf(int intValue)Returns the enum constant of this type with the specified name.static TaxRuleTypeIdvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TaxRuleTypeId[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RateRule
public static final TaxRuleTypeId RateRule
-
RateOverrideRule
public static final TaxRuleTypeId RateOverrideRule
-
BaseRule
public static final TaxRuleTypeId BaseRule
-
ExemptEntityRule
public static final TaxRuleTypeId ExemptEntityRule
-
ProductTaxabilityRule
public static final TaxRuleTypeId ProductTaxabilityRule
-
NexusRule
public static final TaxRuleTypeId NexusRule
-
RateCapRule
public static final TaxRuleTypeId RateCapRule
-
TaxOverrideRule
public static final TaxRuleTypeId TaxOverrideRule
-
FeeRule
public static final TaxRuleTypeId FeeRule
-
OtherRule
public static final TaxRuleTypeId OtherRule
-
-
Method Detail
-
values
public static TaxRuleTypeId[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TaxRuleTypeId c : TaxRuleTypeId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaxRuleTypeId valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
valueOf
public static TaxRuleTypeId valueOf(int intValue)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
intValue- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public int getValue()
-
-