Enum IdentifierSettings.IdentifierCase
- java.lang.Object
-
- java.lang.Enum<IdentifierSettings.IdentifierCase>
-
- com.google.cloud.bigquery.migration.v2alpha.IdentifierSettings.IdentifierCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<IdentifierSettings.IdentifierCase>
- Enclosing class:
- IdentifierSettings
public static enum IdentifierSettings.IdentifierCase extends Enum<IdentifierSettings.IdentifierCase> implements com.google.protobuf.ProtocolMessageEnum
The identifier case type.
Protobuf enumgoogle.cloud.bigquery.migration.v2alpha.IdentifierSettings.IdentifierCase
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IDENTIFIER_CASE_UNSPECIFIEDThe identifier case is not specified.LOWERIdentifiers will be in lower cases.ORIGINALIdentifiers' cases will be kept as the original cases.UNRECOGNIZEDUPPERIdentifiers will be in upper cases.
-
Field Summary
Fields Modifier and Type Field Description static intIDENTIFIER_CASE_UNSPECIFIED_VALUEThe identifier case is not specified.static intLOWER_VALUEIdentifiers will be in lower cases.static intORIGINAL_VALUEIdentifiers' cases will be kept as the original cases.static intUPPER_VALUEIdentifiers will be in upper cases.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static IdentifierSettings.IdentifierCaseforNumber(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<IdentifierSettings.IdentifierCase>internalGetValueMap()static IdentifierSettings.IdentifierCasevalueOf(int value)Deprecated.static IdentifierSettings.IdentifierCasevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static IdentifierSettings.IdentifierCasevalueOf(String name)Returns the enum constant of this type with the specified name.static IdentifierSettings.IdentifierCase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDENTIFIER_CASE_UNSPECIFIED
public static final IdentifierSettings.IdentifierCase IDENTIFIER_CASE_UNSPECIFIED
The identifier case is not specified.
IDENTIFIER_CASE_UNSPECIFIED = 0;
-
ORIGINAL
public static final IdentifierSettings.IdentifierCase ORIGINAL
Identifiers' cases will be kept as the original cases.
ORIGINAL = 1;
-
UPPER
public static final IdentifierSettings.IdentifierCase UPPER
Identifiers will be in upper cases.
UPPER = 2;
-
LOWER
public static final IdentifierSettings.IdentifierCase LOWER
Identifiers will be in lower cases.
LOWER = 3;
-
UNRECOGNIZED
public static final IdentifierSettings.IdentifierCase UNRECOGNIZED
-
-
Field Detail
-
IDENTIFIER_CASE_UNSPECIFIED_VALUE
public static final int IDENTIFIER_CASE_UNSPECIFIED_VALUE
The identifier case is not specified.
IDENTIFIER_CASE_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
ORIGINAL_VALUE
public static final int ORIGINAL_VALUE
Identifiers' cases will be kept as the original cases.
ORIGINAL = 1;- See Also:
- Constant Field Values
-
UPPER_VALUE
public static final int UPPER_VALUE
Identifiers will be in upper cases.
UPPER = 2;- See Also:
- Constant Field Values
-
LOWER_VALUE
public static final int LOWER_VALUE
Identifiers will be in lower cases.
LOWER = 3;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static IdentifierSettings.IdentifierCase[] 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 (IdentifierSettings.IdentifierCase c : IdentifierSettings.IdentifierCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentifierSettings.IdentifierCase 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 IdentifierSettings.IdentifierCase 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 IdentifierSettings.IdentifierCase 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<IdentifierSettings.IdentifierCase> 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 IdentifierSettings.IdentifierCase 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
-
-