public enum CheckForUpdates extends java.lang.Enum<CheckForUpdates>
| Enum Constant and Description |
|---|
ALWAYS |
DAILY |
HOURLY |
MONTHLY |
NEVER |
WEEKLY |
| Modifier and Type | Method and Description |
|---|---|
boolean |
recheckIsRequired(java.util.Date fromDate) |
static CheckForUpdates |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CheckForUpdates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckForUpdates ALWAYS
public static final CheckForUpdates HOURLY
public static final CheckForUpdates DAILY
public static final CheckForUpdates WEEKLY
public static final CheckForUpdates MONTHLY
public static final CheckForUpdates NEVER
public static CheckForUpdates[] values()
for (CheckForUpdates c : CheckForUpdates.values()) System.out.println(c);
public static CheckForUpdates 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 boolean recheckIsRequired(java.util.Date fromDate)