Package com.install4j.api.update
Enum Class UpdateSchedule
- All Implemented Interfaces:
Serializable
,Comparable<UpdateSchedule>
,Constable
Enumeration class that represents the different update schedules. These values are used in the
UpdateScheduleRegistry
class.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionUpdateScheduleRegistry.checkAndReset()
always returns true after more than one day has passed since the last updateUpdateScheduleRegistry.checkAndReset()
always returns true after more than one month has passed since the last updateUpdateScheduleRegistry.checkAndReset()
always returns falseUpdateScheduleRegistry.checkAndReset()
always returns trueUpdateScheduleRegistry.checkAndReset()
always returns true after more than one week has passed since the last update -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic UpdateSchedule
Returns theUpdateSchedule
for a string ID.getId()
Returns the string ID for theUpdateSchedule
.toString()
static UpdateSchedule
Returns the enum constant of this class with the specified name.static UpdateSchedule[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ON_EVERY_START
UpdateScheduleRegistry.checkAndReset()
always returns true -
DAILY
UpdateScheduleRegistry.checkAndReset()
always returns true after more than one day has passed since the last update -
WEEKLY
UpdateScheduleRegistry.checkAndReset()
always returns true after more than one week has passed since the last update -
MONTHLY
UpdateScheduleRegistry.checkAndReset()
always returns true after more than one month has passed since the last update -
NEVER
UpdateScheduleRegistry.checkAndReset()
always returns false
-
-
Field Details
-
ALL_VALUES
Deprecated.All values ofUpdateSchedule
for use in a drop-down list.Not needed since this class became an enum in install4j 6.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getById
Returns theUpdateSchedule
for a string ID. String IDs forUpdateSchedule
s are returned bygetId()
}.- Parameters:
id
- the ID- Returns:
- the
UpdateSchedule
or null if the ID is invalid
-
getId
Returns the string ID for theUpdateSchedule
. This string value can be saved and restored later with thegetById(String)
} method.- Returns:
- the ID
-
toString
- Overrides:
toString
in classEnum<UpdateSchedule>
-