Enum WorksheetStatusId
- java.lang.Object
-
- java.lang.Enum<WorksheetStatusId>
-
- net.avalara.avatax.rest.client.enums.WorksheetStatusId
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WorksheetStatusId>
public enum WorksheetStatusId extends java.lang.Enum<WorksheetStatusId>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ApprovedToFileNo comment data providedApprovedToFileOnBehalfNo comment data providedDirtyNo comment data providedDoNotFileNo comment data providedFiledNo comment data providedFiledOnBehalfNo comment data providedPaymentRemittedNo comment data providedPendingApprovalNo comment data providedPendingFilingNo comment data providedPendingFilingOnBehalfNo comment data providedPendingReturnNo comment data providedPendingReturnOnBehalfNo comment data providedReturnAcceptedNo comment data providedReturnAcceptedOnBehalfNo comment data providedReturnRejectedNo comment data providedReturnRejectedOnBehalfNo comment data providedVoidedNo comment data provided
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WorksheetStatusIdvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WorksheetStatusId[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PendingApproval
public static final WorksheetStatusId PendingApproval
No comment data provided
-
Dirty
public static final WorksheetStatusId Dirty
No comment data provided
-
ApprovedToFile
public static final WorksheetStatusId ApprovedToFile
No comment data provided
-
PendingFiling
public static final WorksheetStatusId PendingFiling
No comment data provided
-
PendingFilingOnBehalf
public static final WorksheetStatusId PendingFilingOnBehalf
No comment data provided
-
Filed
public static final WorksheetStatusId Filed
No comment data provided
-
FiledOnBehalf
public static final WorksheetStatusId FiledOnBehalf
No comment data provided
-
ReturnAccepted
public static final WorksheetStatusId ReturnAccepted
No comment data provided
-
ReturnAcceptedOnBehalf
public static final WorksheetStatusId ReturnAcceptedOnBehalf
No comment data provided
-
PaymentRemitted
public static final WorksheetStatusId PaymentRemitted
No comment data provided
-
Voided
public static final WorksheetStatusId Voided
No comment data provided
-
PendingReturn
public static final WorksheetStatusId PendingReturn
No comment data provided
-
PendingReturnOnBehalf
public static final WorksheetStatusId PendingReturnOnBehalf
No comment data provided
-
DoNotFile
public static final WorksheetStatusId DoNotFile
No comment data provided
-
ReturnRejected
public static final WorksheetStatusId ReturnRejected
No comment data provided
-
ReturnRejectedOnBehalf
public static final WorksheetStatusId ReturnRejectedOnBehalf
No comment data provided
-
ApprovedToFileOnBehalf
public static final WorksheetStatusId ApprovedToFileOnBehalf
No comment data provided
-
-
Method Detail
-
values
public static WorksheetStatusId[] 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 (WorksheetStatusId c : WorksheetStatusId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorksheetStatusId 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
-
-