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 BOOLEANBoolean type.DOUBLEDouble type.INT64Int64 type.PARAMETER_TYPE_UNSPECIFIEDNot used.STRINGString type.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intBOOLEAN_VALUEBoolean type.static intDOUBLE_VALUEDouble type.static intINT64_VALUEInt64 type.static intPARAMETER_TYPE_UNSPECIFIED_VALUENot used.static intSTRING_VALUEString type.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ParameterDefinition.ParameterTypeforNumber(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<ParameterDefinition.ParameterType>internalGetValueMap()static ParameterDefinition.ParameterTypevalueOf(int value)Deprecated.static ParameterDefinition.ParameterTypevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static ParameterDefinition.ParameterTypevalueOf(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:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin 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:
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 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
-
-