Enum FilingRequestStatus
- All Implemented Interfaces:
Serializable
,Comparable<FilingRequestStatus>
,java.lang.constant.Constable
Filing Request Status types
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFiling calender is activeThis indicates that there is a new change request.Filing calendar is inactiveCustomer is building a request for a new filing calendarCustomer submitted a request for a new filing calendarCustomer requested to deactivate filing calendarThis indicates that the change request was approved.This indicates that compliance rejected the request.Customer’s information validated before submitting to go live. -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
static FilingRequestStatus
valueOf
(int intValue) Returns the enum constant of this type with the specified name.static FilingRequestStatus
Returns the enum constant of this type with the specified name.static FilingRequestStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
New
Customer is building a request for a new filing calendar -
Validated
Customer’s information validated before submitting to go live. All required information as per state and form selection is entered. -
Pending
Customer submitted a request for a new filing calendar -
Active
Filing calender is active -
PendingStop
Customer requested to deactivate filing calendar -
Inactive
Filing calendar is inactive -
ChangeRequest
This indicates that there is a new change request. -
RequestApproved
This indicates that the change request was approved. -
RequestDenied
This indicates that compliance rejected the request.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue()
-