com.pax.dal.entity
Enum EM1OperateType
- java.lang.Object
-
- java.lang.Enum<EM1OperateType>
-
- com.pax.dal.entity.EM1OperateType
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<EM1OperateType>
public enum EM1OperateType extends java.lang.Enum<EM1OperateType>
M1卡操作定义M1 Operate type
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description BACKUP转存/备份操作Save as/ backup operationDECREMENT减值Decrease valueINCREMENT充值Increase value
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description bytegetM1OperateType()static EM1OperateTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EM1OperateType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INCREMENT
public static final EM1OperateType INCREMENT
充值Increase value
-
DECREMENT
public static final EM1OperateType DECREMENT
减值Decrease value
-
BACKUP
public static final EM1OperateType BACKUP
转存/备份操作Save as/ backup operation
-
-
Method Detail
-
values
public static EM1OperateType[] 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 (EM1OperateType c : EM1OperateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EM1OperateType 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
-
getM1OperateType
public byte getM1OperateType()
-
-