Package net.pricefx.common.api
Enum RebateAgreementStatus
- Object
-
- Enum<RebateAgreementStatus>
-
- RebateAgreementStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<RebateAgreementStatus>
public enum RebateAgreementStatus extends Enum<RebateAgreementStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPROVED
CLOSED
DRAFT
INVALIDATED
OPEN
REVOKED
SUPERSEDED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RebateAgreementStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static RebateAgreementStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRAFT
public static final RebateAgreementStatus DRAFT
-
APPROVED
public static final RebateAgreementStatus APPROVED
-
OPEN
public static final RebateAgreementStatus OPEN
-
CLOSED
public static final RebateAgreementStatus CLOSED
-
REVOKED
public static final RebateAgreementStatus REVOKED
-
SUPERSEDED
public static final RebateAgreementStatus SUPERSEDED
-
INVALIDATED
public static final RebateAgreementStatus INVALIDATED
-
-
Method Detail
-
values
public static RebateAgreementStatus[] 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 (RebateAgreementStatus c : RebateAgreementStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RebateAgreementStatus valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-