Package com.google.cloud.dataplex.v1
Enum StorageFormat.Format
- java.lang.Object
-
- java.lang.Enum<StorageFormat.Format>
-
- com.google.cloud.dataplex.v1.StorageFormat.Format
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<StorageFormat.Format>
- Enclosing class:
- StorageFormat
public static enum StorageFormat.Format extends Enum<StorageFormat.Format> implements com.google.protobuf.ProtocolMessageEnum
The specific file format of the data.
Protobuf enumgoogle.cloud.dataplex.v1.StorageFormat.Format
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUDIO
Audio data formats (such as mp3, and wav).AVRO
Avro-formatted structured data.CSV
Csv-formatted semi-structured data.FORMAT_UNSPECIFIED
Format unspecified.IMAGE
Image data formats (such as jpg and png).JSON
Json-formatted semi-structured data.ORC
Orc-formatted structured data.OTHER
Data that doesn't match a specific format.PARQUET
Parquet-formatted structured data.TEXT
Textual data formats (such as txt and xml).TFRECORD
TensorFlow record format.UNKNOWN
Data of an unknown format.UNRECOGNIZED
VIDEO
Video data formats (such as mp4 and mpg).
-
Field Summary
Fields Modifier and Type Field Description static int
AUDIO_VALUE
Audio data formats (such as mp3, and wav).static int
AVRO_VALUE
Avro-formatted structured data.static int
CSV_VALUE
Csv-formatted semi-structured data.static int
FORMAT_UNSPECIFIED_VALUE
Format unspecified.static int
IMAGE_VALUE
Image data formats (such as jpg and png).static int
JSON_VALUE
Json-formatted semi-structured data.static int
ORC_VALUE
Orc-formatted structured data.static int
OTHER_VALUE
Data that doesn't match a specific format.static int
PARQUET_VALUE
Parquet-formatted structured data.static int
TEXT_VALUE
Textual data formats (such as txt and xml).static int
TFRECORD_VALUE
TensorFlow record format.static int
UNKNOWN_VALUE
Data of an unknown format.static int
VIDEO_VALUE
Video data formats (such as mp4 and mpg).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static StorageFormat.Format
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<StorageFormat.Format>
internalGetValueMap()
static StorageFormat.Format
valueOf(int value)
Deprecated.static StorageFormat.Format
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static StorageFormat.Format
valueOf(String name)
Returns the enum constant of this type with the specified name.static StorageFormat.Format[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FORMAT_UNSPECIFIED
public static final StorageFormat.Format FORMAT_UNSPECIFIED
Format unspecified.
FORMAT_UNSPECIFIED = 0;
-
PARQUET
public static final StorageFormat.Format PARQUET
Parquet-formatted structured data.
PARQUET = 1;
-
AVRO
public static final StorageFormat.Format AVRO
Avro-formatted structured data.
AVRO = 2;
-
ORC
public static final StorageFormat.Format ORC
Orc-formatted structured data.
ORC = 3;
-
CSV
public static final StorageFormat.Format CSV
Csv-formatted semi-structured data.
CSV = 100;
-
JSON
public static final StorageFormat.Format JSON
Json-formatted semi-structured data.
JSON = 101;
-
IMAGE
public static final StorageFormat.Format IMAGE
Image data formats (such as jpg and png).
IMAGE = 200;
-
AUDIO
public static final StorageFormat.Format AUDIO
Audio data formats (such as mp3, and wav).
AUDIO = 201;
-
VIDEO
public static final StorageFormat.Format VIDEO
Video data formats (such as mp4 and mpg).
VIDEO = 202;
-
TEXT
public static final StorageFormat.Format TEXT
Textual data formats (such as txt and xml).
TEXT = 203;
-
TFRECORD
public static final StorageFormat.Format TFRECORD
TensorFlow record format.
TFRECORD = 204;
-
OTHER
public static final StorageFormat.Format OTHER
Data that doesn't match a specific format.
OTHER = 1000;
-
UNKNOWN
public static final StorageFormat.Format UNKNOWN
Data of an unknown format.
UNKNOWN = 1001;
-
UNRECOGNIZED
public static final StorageFormat.Format UNRECOGNIZED
-
-
Field Detail
-
FORMAT_UNSPECIFIED_VALUE
public static final int FORMAT_UNSPECIFIED_VALUE
Format unspecified.
FORMAT_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
PARQUET_VALUE
public static final int PARQUET_VALUE
Parquet-formatted structured data.
PARQUET = 1;
- See Also:
- Constant Field Values
-
AVRO_VALUE
public static final int AVRO_VALUE
Avro-formatted structured data.
AVRO = 2;
- See Also:
- Constant Field Values
-
ORC_VALUE
public static final int ORC_VALUE
Orc-formatted structured data.
ORC = 3;
- See Also:
- Constant Field Values
-
CSV_VALUE
public static final int CSV_VALUE
Csv-formatted semi-structured data.
CSV = 100;
- See Also:
- Constant Field Values
-
JSON_VALUE
public static final int JSON_VALUE
Json-formatted semi-structured data.
JSON = 101;
- See Also:
- Constant Field Values
-
IMAGE_VALUE
public static final int IMAGE_VALUE
Image data formats (such as jpg and png).
IMAGE = 200;
- See Also:
- Constant Field Values
-
AUDIO_VALUE
public static final int AUDIO_VALUE
Audio data formats (such as mp3, and wav).
AUDIO = 201;
- See Also:
- Constant Field Values
-
VIDEO_VALUE
public static final int VIDEO_VALUE
Video data formats (such as mp4 and mpg).
VIDEO = 202;
- See Also:
- Constant Field Values
-
TEXT_VALUE
public static final int TEXT_VALUE
Textual data formats (such as txt and xml).
TEXT = 203;
- See Also:
- Constant Field Values
-
TFRECORD_VALUE
public static final int TFRECORD_VALUE
TensorFlow record format.
TFRECORD = 204;
- See Also:
- Constant Field Values
-
OTHER_VALUE
public static final int OTHER_VALUE
Data that doesn't match a specific format.
OTHER = 1000;
- See Also:
- Constant Field Values
-
UNKNOWN_VALUE
public static final int UNKNOWN_VALUE
Data of an unknown format.
UNKNOWN = 1001;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static StorageFormat.Format[] 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 (StorageFormat.Format c : StorageFormat.Format.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StorageFormat.Format 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 StorageFormat.Format 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 StorageFormat.Format 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<StorageFormat.Format> 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 StorageFormat.Format 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
-
-