Package com.oracle.bmc.circuitbreaker
Enum OciCircuitBreaker.Config.SlidingWindowType
- java.lang.Object
- 
- java.lang.Enum<OciCircuitBreaker.Config.SlidingWindowType>
- 
- com.oracle.bmc.circuitbreaker.OciCircuitBreaker.Config.SlidingWindowType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<OciCircuitBreaker.Config.SlidingWindowType>
 - Enclosing interface:
- OciCircuitBreaker.Config
 
 public static enum OciCircuitBreaker.Config.SlidingWindowType extends Enum<OciCircuitBreaker.Config.SlidingWindowType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description COUNT_BASEDTIME_BASED
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static OciCircuitBreaker.Config.SlidingWindowTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OciCircuitBreaker.Config.SlidingWindowType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
TIME_BASEDpublic static final OciCircuitBreaker.Config.SlidingWindowType TIME_BASED 
 - 
COUNT_BASEDpublic static final OciCircuitBreaker.Config.SlidingWindowType COUNT_BASED 
 
- 
 - 
Method Detail- 
valuespublic static OciCircuitBreaker.Config.SlidingWindowType[] 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 (OciCircuitBreaker.Config.SlidingWindowType c : OciCircuitBreaker.Config.SlidingWindowType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static OciCircuitBreaker.Config.SlidingWindowType 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
 
 
- 
 
-