public enum VTypeMatchMask extends Enum<VTypeMatchMask>
Enum Constant and Description |
---|
ALARM |
ALL |
ALL_EXCEPT_TIME |
TIME |
VALUE |
Modifier and Type | Method and Description |
---|---|
String |
match(Object expectedValue,
Object actualValue) |
static VTypeMatchMask |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VTypeMatchMask[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VTypeMatchMask VALUE
public static final VTypeMatchMask ALARM
public static final VTypeMatchMask TIME
public static final VTypeMatchMask ALL
public static final VTypeMatchMask ALL_EXCEPT_TIME
public static VTypeMatchMask[] values()
for (VTypeMatchMask c : VTypeMatchMask.values()) System.out.println(c);
public static VTypeMatchMask valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2010–2015. All rights reserved.