public static enum BasicLevel.ConditionCombiningFunction extends Enum<BasicLevel.ConditionCombiningFunction> implements ProtocolMessageEnum
Options for how the `conditions` list should be combined to determine if this `AccessLevel` is applied. Default is AND.Protobuf enum
google.identity.accesscontextmanager.v1.BasicLevel.ConditionCombiningFunction| Enum Constant and Description |
|---|
AND
All `Conditions` must be true for the `BasicLevel` to be true.
|
OR
If at least one `Condition` is true, then the `BasicLevel` is true.
|
UNRECOGNIZED |
| Modifier and Type | Field and Description |
|---|---|
static int |
AND_VALUE
All `Conditions` must be true for the `BasicLevel` to be true.
|
static int |
OR_VALUE
If at least one `Condition` is true, then the `BasicLevel` is true.
|
| Modifier and Type | Method and Description |
|---|---|
static BasicLevel.ConditionCombiningFunction |
forNumber(int value) |
static Descriptors.EnumDescriptor |
getDescriptor() |
Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static Internal.EnumLiteMap<BasicLevel.ConditionCombiningFunction> |
internalGetValueMap() |
static BasicLevel.ConditionCombiningFunction |
valueOf(Descriptors.EnumValueDescriptor desc) |
static BasicLevel.ConditionCombiningFunction |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static BasicLevel.ConditionCombiningFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BasicLevel.ConditionCombiningFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicLevel.ConditionCombiningFunction AND
All `Conditions` must be true for the `BasicLevel` to be true.
AND = 0;public static final BasicLevel.ConditionCombiningFunction OR
If at least one `Condition` is true, then the `BasicLevel` is true.
OR = 1;public static final BasicLevel.ConditionCombiningFunction UNRECOGNIZED
public static final int AND_VALUE
All `Conditions` must be true for the `BasicLevel` to be true.
AND = 0;public static final int OR_VALUE
If at least one `Condition` is true, then the `BasicLevel` is true.
OR = 1;public static BasicLevel.ConditionCombiningFunction[] values()
for (BasicLevel.ConditionCombiningFunction c : BasicLevel.ConditionCombiningFunction.values()) System.out.println(c);
public static BasicLevel.ConditionCombiningFunction 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 final int getNumber()
getNumber in interface Internal.EnumLitegetNumber in interface ProtocolMessageEnum@Deprecated public static BasicLevel.ConditionCombiningFunction valueOf(int value)
forNumber(int) instead.value - The numeric wire value of the corresponding enum entry.public static BasicLevel.ConditionCombiningFunction forNumber(int value)
value - The numeric wire value of the corresponding enum entry.public static Internal.EnumLiteMap<BasicLevel.ConditionCombiningFunction> internalGetValueMap()
public final Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor in interface ProtocolMessageEnumpublic final Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType in interface ProtocolMessageEnumpublic static final Descriptors.EnumDescriptor getDescriptor()
public static BasicLevel.ConditionCombiningFunction valueOf(Descriptors.EnumValueDescriptor desc)
Copyright © 2021 Google LLC. All rights reserved.