Enum AdjustmentTypeId
- java.lang.Object
-
- java.lang.Enum<AdjustmentTypeId>
-
- net.avalara.avatax.rest.client.enums.AdjustmentTypeId
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AdjustmentTypeId>
public enum AdjustmentTypeId extends java.lang.Enum<AdjustmentTypeId>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CspFeeCurrentPeriodCollectionCurrentPeriodDiscountCurrentPeriodRoundingDiscountInterestMarketplaceOtherPenaltyPriorPeriodCollectionPriorPeriodDiscountPriorPeriodRoundingRounding
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AdjustmentTypeIdvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AdjustmentTypeId[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Other
public static final AdjustmentTypeId Other
-
CurrentPeriodRounding
public static final AdjustmentTypeId CurrentPeriodRounding
-
PriorPeriodRounding
public static final AdjustmentTypeId PriorPeriodRounding
-
CurrentPeriodDiscount
public static final AdjustmentTypeId CurrentPeriodDiscount
-
PriorPeriodDiscount
public static final AdjustmentTypeId PriorPeriodDiscount
-
CurrentPeriodCollection
public static final AdjustmentTypeId CurrentPeriodCollection
-
PriorPeriodCollection
public static final AdjustmentTypeId PriorPeriodCollection
-
Penalty
public static final AdjustmentTypeId Penalty
-
Interest
public static final AdjustmentTypeId Interest
-
Discount
public static final AdjustmentTypeId Discount
-
Rounding
public static final AdjustmentTypeId Rounding
-
CspFee
public static final AdjustmentTypeId CspFee
-
Marketplace
public static final AdjustmentTypeId Marketplace
-
-
Method Detail
-
values
public static AdjustmentTypeId[] 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 (AdjustmentTypeId c : AdjustmentTypeId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdjustmentTypeId 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
-
-