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 Summary
Enum Constants Enum Constant Description COUNT_BASED
TIME_BASED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OciCircuitBreaker.Config.SlidingWindowType
valueOf(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_BASED
public static final OciCircuitBreaker.Config.SlidingWindowType TIME_BASED
-
COUNT_BASED
public static final OciCircuitBreaker.Config.SlidingWindowType COUNT_BASED
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 nameNullPointerException
- if the argument is null
-
-