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 AUDIOAudio data formats (such as mp3, and wav).AVROAvro-formatted structured data.CSVCsv-formatted semi-structured data.FORMAT_UNSPECIFIEDFormat unspecified.IMAGEImage data formats (such as jpg and png).JSONJson-formatted semi-structured data.ORCOrc-formatted structured data.OTHERData that doesn't match a specific format.PARQUETParquet-formatted structured data.TEXTTextual data formats (such as txt and xml).TFRECORDTensorFlow record format.UNKNOWNData of an unknown format.UNRECOGNIZEDVIDEOVideo data formats (such as mp4 and mpg).
-
Field Summary
Fields Modifier and Type Field Description static intAUDIO_VALUEAudio data formats (such as mp3, and wav).static intAVRO_VALUEAvro-formatted structured data.static intCSV_VALUECsv-formatted semi-structured data.static intFORMAT_UNSPECIFIED_VALUEFormat unspecified.static intIMAGE_VALUEImage data formats (such as jpg and png).static intJSON_VALUEJson-formatted semi-structured data.static intORC_VALUEOrc-formatted structured data.static intOTHER_VALUEData that doesn't match a specific format.static intPARQUET_VALUEParquet-formatted structured data.static intTEXT_VALUETextual data formats (such as txt and xml).static intTFRECORD_VALUETensorFlow record format.static intUNKNOWN_VALUEData of an unknown format.static intVIDEO_VALUEVideo 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.FormatforNumber(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<StorageFormat.Format>internalGetValueMap()static StorageFormat.FormatvalueOf(int value)Deprecated.static StorageFormat.FormatvalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static StorageFormat.FormatvalueOf(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:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin 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:
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 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
-
-