public static enum JobScheduleDetails.IntervalType extends Enum<JobScheduleDetails.IntervalType> implements BmcEnum
The interval type for a recurring scheduled job. For a non-recurring (one time) job, NEVER must be specified as the interval type.
Enum Constant and Description |
---|
Daily |
Hourly |
Monthly |
Never |
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by
this version of the SDK.
|
Weekly |
Modifier and Type | Method and Description |
---|---|
static JobScheduleDetails.IntervalType |
create(String key) |
String |
getValue() |
static JobScheduleDetails.IntervalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobScheduleDetails.IntervalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobScheduleDetails.IntervalType Daily
public static final JobScheduleDetails.IntervalType Hourly
public static final JobScheduleDetails.IntervalType Weekly
public static final JobScheduleDetails.IntervalType Monthly
public static final JobScheduleDetails.IntervalType Never
public static final JobScheduleDetails.IntervalType UnknownEnumValue
public static JobScheduleDetails.IntervalType[] values()
for (JobScheduleDetails.IntervalType c : JobScheduleDetails.IntervalType.values()) System.out.println(c);
public static JobScheduleDetails.IntervalType 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 nullpublic static JobScheduleDetails.IntervalType create(String key)
Copyright © 2016–2024. All rights reserved.