Enum Schedule.MisfirePolicy
- java.lang.Object
- 
- java.lang.Enum<Schedule.MisfirePolicy>
- 
- com.oracle.bmc.loganalytics.model.Schedule.MisfirePolicy
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<Schedule.MisfirePolicy>
 - Enclosing class:
- Schedule
 
 public static enum Schedule.MisfirePolicy extends Enum<Schedule.MisfirePolicy> implements BmcEnum Schedule misfire retry policy.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description RetryIndefinitelyRetryOnceSkipUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Schedule.MisfirePolicycreate(String key)StringgetValue()static Schedule.MisfirePolicyvalueOf(String name)Returns the enum constant of this type with the specified name.static Schedule.MisfirePolicy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
RetryOncepublic static final Schedule.MisfirePolicy RetryOnce 
 - 
RetryIndefinitelypublic static final Schedule.MisfirePolicy RetryIndefinitely 
 - 
Skippublic static final Schedule.MisfirePolicy Skip 
 - 
UnknownEnumValuepublic static final Schedule.MisfirePolicy UnknownEnumValue This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
 
- 
 - 
Method Detail- 
valuespublic static Schedule.MisfirePolicy[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Schedule.MisfirePolicy c : Schedule.MisfirePolicy.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Schedule.MisfirePolicy valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
createpublic static Schedule.MisfirePolicy create(String key) 
 
- 
 
-