Package com.google.cloud.datacatalog.v1
Enum PhysicalSchema.SchemaCase
- java.lang.Object
-
- java.lang.Enum<PhysicalSchema.SchemaCase>
-
- com.google.cloud.datacatalog.v1.PhysicalSchema.SchemaCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<PhysicalSchema.SchemaCase>
- Enclosing class:
- PhysicalSchema
public static enum PhysicalSchema.SchemaCase extends Enum<PhysicalSchema.SchemaCase> implements com.google.protobuf.Internal.EnumLite
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static PhysicalSchema.SchemaCase
forNumber(int value)
int
getNumber()
static PhysicalSchema.SchemaCase
valueOf(int value)
Deprecated.static PhysicalSchema.SchemaCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static PhysicalSchema.SchemaCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVRO
public static final PhysicalSchema.SchemaCase AVRO
-
THRIFT
public static final PhysicalSchema.SchemaCase THRIFT
-
PROTOBUF
public static final PhysicalSchema.SchemaCase PROTOBUF
-
PARQUET
public static final PhysicalSchema.SchemaCase PARQUET
-
ORC
public static final PhysicalSchema.SchemaCase ORC
-
CSV
public static final PhysicalSchema.SchemaCase CSV
-
SCHEMA_NOT_SET
public static final PhysicalSchema.SchemaCase SCHEMA_NOT_SET
-
-
Method Detail
-
values
public static PhysicalSchema.SchemaCase[] 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 (PhysicalSchema.SchemaCase c : PhysicalSchema.SchemaCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PhysicalSchema.SchemaCase 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 PhysicalSchema.SchemaCase 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 PhysicalSchema.SchemaCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-