public enum Periodicity extends Enum<Periodicity>
| Enum Constant and Description |
|---|
CONTINUOUS
Means new Job Runs repetitively start at the beginning of the specified
time interval (in hours or minutes).
|
DAILY
Means new Job Runs start daily.
|
MONTHLY
Means new Job Runs start monthly.
|
| Modifier and Type | Method and Description |
|---|---|
static Periodicity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Periodicity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Periodicity CONTINUOUS
public static final Periodicity DAILY
public static final Periodicity MONTHLY
public static Periodicity[] values()
for (Periodicity c : Periodicity.values()) System.out.println(c);
public static Periodicity 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 © 2023 iland Internet Solutions, Corp. All rights reserved.