Enum ServiceRequestStatus
java.lang.Object
java.lang.Enum<ServiceRequestStatus>
com.microsoft.store.partnercenter.models.servicerequests.ServiceRequestStatus
- All Implemented Interfaces:
Serializable,Comparable<ServiceRequestStatus>,java.lang.constant.Constable
public enum ServiceRequestStatus extends Enum<ServiceRequestStatus>
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTENTION_NEEDEDService Request Status Action RequiredCLOSEDService Request Status ClosedNONEDescribes service request status Default Service Request StatusOPENService Request Status Open -
Method Summary
Modifier and Type Method Description StringtoString()Converts the object to a string.static ServiceRequestStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ServiceRequestStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
Describes service request status Default Service Request Status -
OPEN
Service Request Status Open -
CLOSED
Service Request Status Closed -
ATTENTION_NEEDED
Service Request Status Action Required
-
-
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
-
toString
Converts the object to a string.- Overrides:
toStringin classEnum<ServiceRequestStatus>- Returns:
- A string that represents this object.
-