Package com.google.cloud.channel.v1
Enum ParameterDefinition.ParameterType
- java.lang.Object
-
- java.lang.Enum<ParameterDefinition.ParameterType>
-
- com.google.cloud.channel.v1.ParameterDefinition.ParameterType
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<ParameterDefinition.ParameterType>
- Enclosing class:
- ParameterDefinition
public static enum ParameterDefinition.ParameterType extends Enum<ParameterDefinition.ParameterType> implements com.google.protobuf.ProtocolMessageEnum
Data type of the parameter.
Protobuf enumgoogle.cloud.channel.v1.ParameterDefinition.ParameterType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEAN
Boolean type.DOUBLE
Double type.INT64
Int64 type.PARAMETER_TYPE_UNSPECIFIED
Not used.STRING
String type.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
BOOLEAN_VALUE
Boolean type.static int
DOUBLE_VALUE
Double type.static int
INT64_VALUE
Int64 type.static int
PARAMETER_TYPE_UNSPECIFIED_VALUE
Not used.static int
STRING_VALUE
String type.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ParameterDefinition.ParameterType
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<ParameterDefinition.ParameterType>
internalGetValueMap()
static ParameterDefinition.ParameterType
valueOf(int value)
Deprecated.static ParameterDefinition.ParameterType
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static ParameterDefinition.ParameterType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ParameterDefinition.ParameterType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARAMETER_TYPE_UNSPECIFIED
public static final ParameterDefinition.ParameterType PARAMETER_TYPE_UNSPECIFIED
Not used.
PARAMETER_TYPE_UNSPECIFIED = 0;
-
INT64
public static final ParameterDefinition.ParameterType INT64
Int64 type.
INT64 = 1;
-
STRING
public static final ParameterDefinition.ParameterType STRING
String type.
STRING = 2;
-
DOUBLE
public static final ParameterDefinition.ParameterType DOUBLE
Double type.
DOUBLE = 3;
-
BOOLEAN
public static final ParameterDefinition.ParameterType BOOLEAN
Boolean type.
BOOLEAN = 4;
-
UNRECOGNIZED
public static final ParameterDefinition.ParameterType UNRECOGNIZED
-
-
Field Detail
-
PARAMETER_TYPE_UNSPECIFIED_VALUE
public static final int PARAMETER_TYPE_UNSPECIFIED_VALUE
Not used.
PARAMETER_TYPE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
INT64_VALUE
public static final int INT64_VALUE
Int64 type.
INT64 = 1;
- See Also:
- Constant Field Values
-
STRING_VALUE
public static final int STRING_VALUE
String type.
STRING = 2;
- See Also:
- Constant Field Values
-
DOUBLE_VALUE
public static final int DOUBLE_VALUE
Double type.
DOUBLE = 3;
- See Also:
- Constant Field Values
-
BOOLEAN_VALUE
public static final int BOOLEAN_VALUE
Boolean type.
BOOLEAN = 4;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ParameterDefinition.ParameterType[] 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 (ParameterDefinition.ParameterType c : ParameterDefinition.ParameterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ParameterDefinition.ParameterType 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:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static ParameterDefinition.ParameterType 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 ParameterDefinition.ParameterType 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<ParameterDefinition.ParameterType> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static ParameterDefinition.ParameterType 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
-
-