Enum Class BizParamConfigMBean.RemainingBalanceCalcMode
java.lang.Object
java.lang.Enum<BizParamConfigMBean.RemainingBalanceCalcMode>
oracle.communication.brm.charging.appconfiguration.beans.BizParamConfigMBean.RemainingBalanceCalcMode
- All Implemented Interfaces:
Serializable
,Comparable<BizParamConfigMBean.RemainingBalanceCalcMode>
,Constable
- Enclosing interface:
BizParamConfigMBean
public static enum BizParamConfigMBean.RemainingBalanceCalcMode
extends Enum<BizParamConfigMBean.RemainingBalanceCalcMode>
Enumeration containing all the allowed modes for calculating remaining balance.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe current balance including the consumed reservation will be sent as remaining balanceRemaining Balance will not be calculated and sentRemaining balance up to the credit limit will be calculated -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
Remaining Balance will not be calculated and sent -
UPTO_CREDIT_LIMIT
Remaining balance up to the credit limit will be calculated -
CURRENT_BALANCE
The current balance including the consumed reservation will be sent as remaining balance
-
-
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
-