Package com.oracle.bmc.cloudguard.model
Enum ConditionOperatorName
- java.lang.Object
-
- java.lang.Enum<ConditionOperatorName>
-
- com.oracle.bmc.cloudguard.model.ConditionOperatorName
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ConditionOperatorName>
@Generated(value="OracleSDKGenerator", comments="API Version: 20200131") public enum ConditionOperatorName extends Enum<ConditionOperatorName> implements BmcEnum
Operation names supported for condition operator.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description And
Equals
GreaterThan
In
LessThan
NotEquals
NotIn
Or
Range
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 Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConditionOperatorName
create(String key)
String
getValue()
static ConditionOperatorName
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConditionOperatorName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
And
public static final ConditionOperatorName And
-
Or
public static final ConditionOperatorName Or
-
In
public static final ConditionOperatorName In
-
NotIn
public static final ConditionOperatorName NotIn
-
Equals
public static final ConditionOperatorName Equals
-
NotEquals
public static final ConditionOperatorName NotEquals
-
LessThan
public static final ConditionOperatorName LessThan
-
GreaterThan
public static final ConditionOperatorName GreaterThan
-
Range
public static final ConditionOperatorName Range
-
UnknownEnumValue
public static final ConditionOperatorName 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
-
values
public static ConditionOperatorName[] 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 (ConditionOperatorName c : ConditionOperatorName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConditionOperatorName 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
-
create
public static ConditionOperatorName create(String key)
-
-