Enum ServiceTypeId
- java.lang.Object
-
- java.lang.Enum<ServiceTypeId>
-
- net.avalara.avatax.rest.client.enums.ServiceTypeId
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ServiceTypeId>
public enum ServiceTypeId extends java.lang.Enum<ServiceTypeId>
Represents the type of service or subscription given to a user
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARAAccounting Firm ARA Service TypeARAManagedAccounting Firm ARAManaged Service TypeAuthorizationPartnerAuthorizationPartnerAutoAddressAutoAddressAutoReturnsAutoReturnsAvaAlcoholAvaAlcoholAvaBikeTaxAvaBikeTaxAvaBottleAvaBottleAvaCertAvaCertAvaCheckoutBagAvaCheckoutBagAvaCommsAvaCommsAvaCUTAvaCUTAvaEWasteAvaEWasteAvaExemptTier1AvaExemptTier1AvaExemptTier2AvaExemptTier2AvaExemptTier3AvaExemptTier3AvaExemptTier4AvaExemptTier4AvaLandedCostAvaLandedCostAvaLodgingAvaLodgingAvaMealsAvaMealsAvaTaxCspAvaTaxCspAvaTaxGlobalAvaTaxGlobalAvaTaxProAvaTaxProAvaTaxSTAvaTaxSTAvaUpcAvaUpcCertCaptureCertCaptureMrsMrsMRSComplianceManagerMRSComplianceManagerMRSPremiumPremium Returns Service TypeNoneNoneSendSalesRateFileSend Sales Rate file serviceTaxSolverTaxSolverTFOComplianceTFOComplianceTweTwe
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static ServiceTypeIdvalueOf(int intValue)Returns the enum constant of this type with the specified name.static ServiceTypeIdvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ServiceTypeId[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final ServiceTypeId None
None
-
AvaTaxST
public static final ServiceTypeId AvaTaxST
AvaTaxST
-
AvaTaxPro
public static final ServiceTypeId AvaTaxPro
AvaTaxPro
-
AvaTaxGlobal
public static final ServiceTypeId AvaTaxGlobal
AvaTaxGlobal
-
AutoAddress
public static final ServiceTypeId AutoAddress
AutoAddress
-
AutoReturns
public static final ServiceTypeId AutoReturns
AutoReturns
-
TaxSolver
public static final ServiceTypeId TaxSolver
TaxSolver
-
AvaTaxCsp
public static final ServiceTypeId AvaTaxCsp
AvaTaxCsp
-
Twe
public static final ServiceTypeId Twe
Twe
-
Mrs
public static final ServiceTypeId Mrs
Mrs
-
AvaCert
public static final ServiceTypeId AvaCert
AvaCert
-
AuthorizationPartner
public static final ServiceTypeId AuthorizationPartner
AuthorizationPartner
-
CertCapture
public static final ServiceTypeId CertCapture
CertCapture
-
AvaUpc
public static final ServiceTypeId AvaUpc
AvaUpc
-
AvaCUT
public static final ServiceTypeId AvaCUT
AvaCUT
-
AvaLandedCost
public static final ServiceTypeId AvaLandedCost
AvaLandedCost
-
AvaLodging
public static final ServiceTypeId AvaLodging
AvaLodging
-
AvaBottle
public static final ServiceTypeId AvaBottle
AvaBottle
-
AvaComms
public static final ServiceTypeId AvaComms
AvaComms
-
AvaEWaste
public static final ServiceTypeId AvaEWaste
AvaEWaste
-
AvaExemptTier1
public static final ServiceTypeId AvaExemptTier1
AvaExemptTier1
-
AvaExemptTier2
public static final ServiceTypeId AvaExemptTier2
AvaExemptTier2
-
AvaExemptTier3
public static final ServiceTypeId AvaExemptTier3
AvaExemptTier3
-
AvaExemptTier4
public static final ServiceTypeId AvaExemptTier4
AvaExemptTier4
-
MRSComplianceManager
public static final ServiceTypeId MRSComplianceManager
MRSComplianceManager
-
AvaBikeTax
public static final ServiceTypeId AvaBikeTax
AvaBikeTax
-
AvaCheckoutBag
public static final ServiceTypeId AvaCheckoutBag
AvaCheckoutBag
-
TFOCompliance
public static final ServiceTypeId TFOCompliance
TFOCompliance
-
SendSalesRateFile
public static final ServiceTypeId SendSalesRateFile
Send Sales Rate file service
-
AvaMeals
public static final ServiceTypeId AvaMeals
AvaMeals
-
AvaAlcohol
public static final ServiceTypeId AvaAlcohol
AvaAlcohol
-
ARA
public static final ServiceTypeId ARA
Accounting Firm ARA Service Type
-
ARAManaged
public static final ServiceTypeId ARAManaged
Accounting Firm ARAManaged Service Type
-
MRSPremium
public static final ServiceTypeId MRSPremium
Premium Returns Service Type
-
-
Method Detail
-
values
public static ServiceTypeId[] 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 (ServiceTypeId c : ServiceTypeId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceTypeId 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 ServiceTypeId 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()
-
-