Package com.uc4.api.servicefulfillment
Enum Class ServiceFulfillmentStatus
- All Implemented Interfaces:
Serializable
,Comparable<ServiceFulfillmentStatus>
,Constable
This class contains information about the service fulfillment status.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ServiceFulfillmentStatus
convertFromNumber
(int number) Returns the status from a numberint
Returns the number of this message.static ServiceFulfillmentStatus
Returns the enum constant of this class with the specified name.static ServiceFulfillmentStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Fulfilled
The fulfilled status. -
Violated
The violated status.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getMessageNumber
public int getMessageNumber()Returns the number of this message.- Returns:
- number
-
convertFromNumber
Returns the status from a number- Parameters:
number
- status number- Returns:
- ServiceFulfillmentStatus or null
-