public enum WatcherSensitivity extends Enum<WatcherSensitivity>
ConfigFileStore.
| Enum Constant and Description |
|---|
HIGH
2 seconds
|
LOW
30 seconds
|
MEDIUM
10 seconds
|
| Modifier and Type | Method and Description |
|---|---|
static WatcherSensitivity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WatcherSensitivity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WatcherSensitivity LOW
public static final WatcherSensitivity MEDIUM
public static final WatcherSensitivity HIGH
public static WatcherSensitivity[] values()
for (WatcherSensitivity c : WatcherSensitivity.values()) System.out.println(c);
public static WatcherSensitivity 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 © 2016–2019 The Apache Software Foundation. All rights reserved.