public enum AvalaraSaleType extends Enum<AvalaraSaleType>
| Enum Constant and Description |
|---|
_UNKNOWN |
CONSUMED |
RETAIL |
VENDOR_USE |
WHOLESALE |
| Modifier and Type | Method and Description |
|---|---|
static AvalaraSaleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AvalaraSaleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AvalaraSaleType WHOLESALE
public static final AvalaraSaleType RETAIL
public static final AvalaraSaleType CONSUMED
public static final AvalaraSaleType VENDOR_USE
public static final AvalaraSaleType _UNKNOWN
public static AvalaraSaleType[] values()
for (AvalaraSaleType c : AvalaraSaleType.values()) System.out.println(c);
public static AvalaraSaleType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023 ChargeBee. All rights reserved.