Enum 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 Detail

      • 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
      • AuthorizationPartner

        public static final ServiceTypeId AuthorizationPartner
        AuthorizationPartner
      • CertCapture

        public static final ServiceTypeId CertCapture
        CertCapture
      • AvaLandedCost

        public static final ServiceTypeId AvaLandedCost
        AvaLandedCost
      • AvaLodging

        public static final ServiceTypeId AvaLodging
        AvaLodging
      • AvaBottle

        public static final ServiceTypeId AvaBottle
        AvaBottle
      • 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
      • 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 name
        java.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 name
        java.lang.NullPointerException - if the argument is null
      • getValue

        public int getValue()