public enum MaskActionType extends java.lang.Enum<MaskActionType>
Enum Constant and Description |
---|
AB
Matching : assert SL or inventoried to A, Non-Matching : deassert SL or inventoried to B
|
AN
Matching : assert SL or inventoried to A, Non-Matching : do nothing
|
BA
Matching : deassert SL or inventoried to B, Non-Matching : assert SL or inventoried to A
|
BN
Matching : deassert SL or inventoried to B, Non-Matching : do nothing
|
MN
Matching : negate SL or (A to B, B to A), Non-Matching : do nothing
|
NA
Matching : do nothing, Non-Matching : assert SL or inventoried to A
|
NB
Matching : do nothing, Non-Matching : deassert SL or inventoried to B
|
NM
Matching : do nothing, Non-Matching : negate SL or (A to B, B to A)
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
java.lang.String |
toString(MaskTargetType type) |
static MaskActionType |
valueOf(int value) |
static MaskActionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaskActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaskActionType AB
public static final MaskActionType AN
public static final MaskActionType NB
public static final MaskActionType MN
public static final MaskActionType BA
public static final MaskActionType BN
public static final MaskActionType NA
public static final MaskActionType NM
public static MaskActionType[] values()
for (MaskActionType c : MaskActionType.values()) System.out.println(c);
public static MaskActionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()
public java.lang.String toString(MaskTargetType type)
public static MaskActionType valueOf(int value)