Enum FilingStatusId
- java.lang.Object
-
- java.lang.Enum<FilingStatusId>
-
- net.avalara.avatax.rest.client.enums.FilingStatusId
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FilingStatusId>
public enum FilingStatusId extends java.lang.Enum<FilingStatusId>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
static FilingStatusId
valueOf(int intValue)
Returns the enum constant of this type with the specified name.static FilingStatusId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FilingStatusId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PendingApproval
public static final FilingStatusId PendingApproval
-
Dirty
public static final FilingStatusId Dirty
-
ApprovedToFile
public static final FilingStatusId ApprovedToFile
-
PendingFiling
public static final FilingStatusId PendingFiling
-
PendingFilingOnBehalf
public static final FilingStatusId PendingFilingOnBehalf
-
Filed
public static final FilingStatusId Filed
-
FiledOnBehalf
public static final FilingStatusId FiledOnBehalf
-
ReturnAccepted
public static final FilingStatusId ReturnAccepted
-
ReturnAcceptedOnBehalf
public static final FilingStatusId ReturnAcceptedOnBehalf
-
PaymentRemitted
public static final FilingStatusId PaymentRemitted
-
Voided
public static final FilingStatusId Voided
-
PendingReturn
public static final FilingStatusId PendingReturn
-
PendingReturnOnBehalf
public static final FilingStatusId PendingReturnOnBehalf
-
DoNotFile
public static final FilingStatusId DoNotFile
-
ReturnRejected
public static final FilingStatusId ReturnRejected
-
ReturnRejectedOnBehalf
public static final FilingStatusId ReturnRejectedOnBehalf
-
ApprovedToFileOnBehalf
public static final FilingStatusId ApprovedToFileOnBehalf
-
-
Method Detail
-
values
public static FilingStatusId[] 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 (FilingStatusId c : FilingStatusId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilingStatusId 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 FilingStatusId 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()
-
-