Package com.opencloud.sentinel.charging
Enum ChargingInstance.Instruction
- java.lang.Object
-
- java.lang.Enum<ChargingInstance.Instruction>
-
- com.opencloud.sentinel.charging.ChargingInstance.Instruction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ChargingInstance.Instruction>
- Enclosing interface:
- ChargingInstance
public static enum ChargingInstance.Instruction extends java.lang.Enum<ChargingInstance.Instruction>
Type of charging instructions.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CreditFinalisation
CreditReservation
DirectDebit
None
Refund
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ChargingInstance.Instruction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ChargingInstance.Instruction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final ChargingInstance.Instruction None
-
CreditReservation
public static final ChargingInstance.Instruction CreditReservation
-
CreditFinalisation
public static final ChargingInstance.Instruction CreditFinalisation
-
DirectDebit
public static final ChargingInstance.Instruction DirectDebit
-
Refund
public static final ChargingInstance.Instruction Refund
-
-
Method Detail
-
values
public static ChargingInstance.Instruction[] 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 (ChargingInstance.Instruction c : ChargingInstance.Instruction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChargingInstance.Instruction valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-