Enum Class PayloadSpecBuilder.BeginMode
java.lang.Object
java.lang.Enum<PayloadSpecBuilder.BeginMode>
oracle.communication.brm.charging.config.servicespec.PayloadSpecBuilder.BeginMode
- All Implemented Interfaces:
Serializable
,Comparable<PayloadSpecBuilder.BeginMode>
,Constable
- Enclosing interface:
PayloadSpecBuilder
Enum applies to begin functions.
USE_EXISTING allows the existing PayloadItem to remain and beginYYY works on the existing PayloadItem
REPLACE_EXISTING allows the PayloadItem passed in beginYYY to replace a PayloadItem of the same name already existing in the Payload
-
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 PayloadSpecBuilder.BeginMode
Returns the enum constant of this class with the specified name.static PayloadSpecBuilder.BeginMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
USE_EXISTING
-
REPLACE_EXISTING
-
-
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
-