Enum NoticeCustomerType
- java.lang.Object
-
- java.lang.Enum<NoticeCustomerType>
-
- net.avalara.avatax.rest.client.enums.NoticeCustomerType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<NoticeCustomerType>
public enum NoticeCustomerType extends java.lang.Enum<NoticeCustomerType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AvaTaxReturnsHudsonGroupPWCSSTStandAloneStrategicTrustFile
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static NoticeCustomerTypevalueOf(int intValue)Returns the enum constant of this type with the specified name.static NoticeCustomerTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static NoticeCustomerType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AvaTaxReturns
public static final NoticeCustomerType AvaTaxReturns
-
StandAlone
public static final NoticeCustomerType StandAlone
-
Strategic
public static final NoticeCustomerType Strategic
-
SST
public static final NoticeCustomerType SST
-
TrustFile
public static final NoticeCustomerType TrustFile
-
PWC
public static final NoticeCustomerType PWC
-
HudsonGroup
public static final NoticeCustomerType HudsonGroup
-
-
Method Detail
-
values
public static NoticeCustomerType[] 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 (NoticeCustomerType c : NoticeCustomerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NoticeCustomerType 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 NoticeCustomerType 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()
-
-