Enum RuntimeAnnotation.DataCase
- java.lang.Object
-
- java.lang.Enum<RuntimeAnnotation.DataCase>
-
- com.google.cloud.contactcenterinsights.v1.RuntimeAnnotation.DataCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<RuntimeAnnotation.DataCase>
- Enclosing class:
- RuntimeAnnotation
public static enum RuntimeAnnotation.DataCase extends Enum<RuntimeAnnotation.DataCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARTICLE_SUGGESTION
CONVERSATION_SUMMARIZATION_SUGGESTION
DATA_NOT_SET
DIALOGFLOW_INTERACTION
FAQ_ANSWER
SMART_COMPOSE_SUGGESTION
SMART_REPLY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static RuntimeAnnotation.DataCase
forNumber(int value)
int
getNumber()
static RuntimeAnnotation.DataCase
valueOf(int value)
Deprecated.static RuntimeAnnotation.DataCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static RuntimeAnnotation.DataCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARTICLE_SUGGESTION
public static final RuntimeAnnotation.DataCase ARTICLE_SUGGESTION
-
FAQ_ANSWER
public static final RuntimeAnnotation.DataCase FAQ_ANSWER
-
SMART_REPLY
public static final RuntimeAnnotation.DataCase SMART_REPLY
-
SMART_COMPOSE_SUGGESTION
public static final RuntimeAnnotation.DataCase SMART_COMPOSE_SUGGESTION
-
DIALOGFLOW_INTERACTION
public static final RuntimeAnnotation.DataCase DIALOGFLOW_INTERACTION
-
CONVERSATION_SUMMARIZATION_SUGGESTION
public static final RuntimeAnnotation.DataCase CONVERSATION_SUMMARIZATION_SUGGESTION
-
DATA_NOT_SET
public static final RuntimeAnnotation.DataCase DATA_NOT_SET
-
-
Method Detail
-
values
public static RuntimeAnnotation.DataCase[] 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 (RuntimeAnnotation.DataCase c : RuntimeAnnotation.DataCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RuntimeAnnotation.DataCase 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
-
valueOf
@Deprecated public static RuntimeAnnotation.DataCase valueOf(int value)
Deprecated.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:
value
- 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
-
forNumber
public static RuntimeAnnotation.DataCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-