Package com.google.cloud.dialogflow.v2
Enum NotificationConfig.MessageFormat
- java.lang.Object
-
- java.lang.Enum<NotificationConfig.MessageFormat>
-
- com.google.cloud.dialogflow.v2.NotificationConfig.MessageFormat
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<NotificationConfig.MessageFormat>
- Enclosing class:
- NotificationConfig
public static enum NotificationConfig.MessageFormat extends Enum<NotificationConfig.MessageFormat> implements com.google.protobuf.ProtocolMessageEnum
Format of cloud pub/sub message.
Protobuf enumgoogle.cloud.dialogflow.v2.NotificationConfig.MessageFormat
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JSONPub/Sub message will be json.MESSAGE_FORMAT_UNSPECIFIEDIf it is unspecified, PROTO will be used.PROTOPub/Sub message will be serialized proto.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intJSON_VALUEPub/Sub message will be json.static intMESSAGE_FORMAT_UNSPECIFIED_VALUEIf it is unspecified, PROTO will be used.static intPROTO_VALUEPub/Sub message will be serialized proto.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static NotificationConfig.MessageFormatforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<NotificationConfig.MessageFormat>internalGetValueMap()static NotificationConfig.MessageFormatvalueOf(int value)Deprecated.static NotificationConfig.MessageFormatvalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static NotificationConfig.MessageFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static NotificationConfig.MessageFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MESSAGE_FORMAT_UNSPECIFIED
public static final NotificationConfig.MessageFormat MESSAGE_FORMAT_UNSPECIFIED
If it is unspecified, PROTO will be used.
MESSAGE_FORMAT_UNSPECIFIED = 0;
-
PROTO
public static final NotificationConfig.MessageFormat PROTO
Pub/Sub message will be serialized proto.
PROTO = 1;
-
JSON
public static final NotificationConfig.MessageFormat JSON
Pub/Sub message will be json.
JSON = 2;
-
UNRECOGNIZED
public static final NotificationConfig.MessageFormat UNRECOGNIZED
-
-
Field Detail
-
MESSAGE_FORMAT_UNSPECIFIED_VALUE
public static final int MESSAGE_FORMAT_UNSPECIFIED_VALUE
If it is unspecified, PROTO will be used.
MESSAGE_FORMAT_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
PROTO_VALUE
public static final int PROTO_VALUE
Pub/Sub message will be serialized proto.
PROTO = 1;- See Also:
- Constant Field Values
-
JSON_VALUE
public static final int JSON_VALUE
Pub/Sub message will be json.
JSON = 2;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static NotificationConfig.MessageFormat[] 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 (NotificationConfig.MessageFormat c : NotificationConfig.MessageFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationConfig.MessageFormat 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
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static NotificationConfig.MessageFormat 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 NotificationConfig.MessageFormat forNumber(int value)
- Parameters:
value- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<NotificationConfig.MessageFormat> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static NotificationConfig.MessageFormat valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc- 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
-
-