public static enum Agent.Tier extends Enum<Agent.Tier> implements ProtocolMessageEnum
Represents the agent tier.Protobuf enum
google.cloud.dialogflow.v2beta1.Agent.Tier
Enum Constant and Description |
---|
TIER_ENTERPRISE
Enterprise tier (Essentials).
|
TIER_ENTERPRISE_PLUS
Enterprise tier (Plus).
|
TIER_STANDARD
Standard tier.
|
TIER_UNSPECIFIED
Not specified.
|
UNRECOGNIZED |
Modifier and Type | Field and Description |
---|---|
static int |
TIER_ENTERPRISE_PLUS_VALUE
Enterprise tier (Plus).
|
static int |
TIER_ENTERPRISE_VALUE
Enterprise tier (Essentials).
|
static int |
TIER_STANDARD_VALUE
Standard tier.
|
static int |
TIER_UNSPECIFIED_VALUE
Not specified.
|
Modifier and Type | Method and Description |
---|---|
static Agent.Tier |
forNumber(int value) |
static Descriptors.EnumDescriptor |
getDescriptor() |
Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static Internal.EnumLiteMap<Agent.Tier> |
internalGetValueMap() |
static Agent.Tier |
valueOf(Descriptors.EnumValueDescriptor desc) |
static Agent.Tier |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static Agent.Tier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Agent.Tier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Agent.Tier TIER_UNSPECIFIED
Not specified. This value should never be used.
TIER_UNSPECIFIED = 0;
public static final Agent.Tier TIER_STANDARD
Standard tier.
TIER_STANDARD = 1;
public static final Agent.Tier TIER_ENTERPRISE
Enterprise tier (Essentials).
TIER_ENTERPRISE = 2;
public static final Agent.Tier TIER_ENTERPRISE_PLUS
Enterprise tier (Plus).
TIER_ENTERPRISE_PLUS = 3;
public static final Agent.Tier UNRECOGNIZED
public static final int TIER_UNSPECIFIED_VALUE
Not specified. This value should never be used.
TIER_UNSPECIFIED = 0;
public static final int TIER_STANDARD_VALUE
Standard tier.
TIER_STANDARD = 1;
public static final int TIER_ENTERPRISE_VALUE
Enterprise tier (Essentials).
TIER_ENTERPRISE = 2;
public static final int TIER_ENTERPRISE_PLUS_VALUE
Enterprise tier (Plus).
TIER_ENTERPRISE_PLUS = 3;
public static Agent.Tier[] values()
for (Agent.Tier c : Agent.Tier.values()) System.out.println(c);
public static Agent.Tier 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.EnumLite
getNumber
in interface ProtocolMessageEnum
@Deprecated public static Agent.Tier valueOf(int value)
forNumber(int)
instead.value
- The numeric wire value of the corresponding enum entry.public static Agent.Tier forNumber(int value)
value
- The numeric wire value of the corresponding enum entry.public static Internal.EnumLiteMap<Agent.Tier> internalGetValueMap()
public final Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor
in interface ProtocolMessageEnum
public final Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType
in interface ProtocolMessageEnum
public static final Descriptors.EnumDescriptor getDescriptor()
public static Agent.Tier valueOf(Descriptors.EnumValueDescriptor desc)
Copyright © 2021 Google LLC. All rights reserved.