public enum Mode extends Enum<Mode>
| Enum Constant and Description |
|---|
ALARM |
COMPARE |
CRONTAB |
DEVICE |
DURATION_WINDOW |
RE |
SLIDING_WINDOW |
TIME |
| Modifier and Type | Method and Description |
|---|---|
static Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mode COMPARE
public static final Mode CRONTAB
public static final Mode TIME
public static final Mode SLIDING_WINDOW
public static final Mode DURATION_WINDOW
public static final Mode RE
public static final Mode DEVICE
public static final Mode ALARM
public static Mode[] values()
for (Mode c : Mode.values()) System.out.println(c);
public static Mode 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 © 2022. All rights reserved.