public enum AutoReloadInterval extends java.lang.Enum<AutoReloadInterval>
| Enum Constant and Description |
|---|
DEFAULT
60 seconds, same as
NORMAL |
DISABLED
Disabled
|
LONG
120 seconds
|
NORMAL
60 seconds
|
SHORT
30 seconds
|
VERY_LONG
240 seconds
|
VERY_SHORT
10 seconds
|
| Modifier and Type | Method and Description |
|---|---|
int |
getSeconds() |
static AutoReloadInterval |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoReloadInterval[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoReloadInterval DISABLED
public static final AutoReloadInterval DEFAULT
NORMALpublic static final AutoReloadInterval VERY_SHORT
public static final AutoReloadInterval SHORT
public static final AutoReloadInterval NORMAL
public static final AutoReloadInterval LONG
public static final AutoReloadInterval VERY_LONG
public static AutoReloadInterval[] values()
for (AutoReloadInterval c : AutoReloadInterval.values()) System.out.println(c);
public static AutoReloadInterval 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 getSeconds()