Enum ImportedDataInfo.Format

    • Field Detail

      • FORMAT_UNSPECIFIED_VALUE

        public static final int FORMAT_UNSPECIFIED_VALUE
         Unspecified format. In this case, we have to infer the format from the
         data source.
         
        FORMAT_UNSPECIFIED = 0;
        See Also:
        Constant Field Values
      • JSON_VALUE

        public static final int JSON_VALUE
         Newline-delimited JSON.
         
        JSON = 2;
        See Also:
        Constant Field Values
      • AVRO_VALUE

        public static final int AVRO_VALUE
         Avro format. See http://avro.apache.org .
         
        AVRO = 3;
        See Also:
        Constant Field Values
      • RECORDIO_VALUE

        public static final int RECORDIO_VALUE
         RecordIO.
         
        RECORDIO = 4;
        See Also:
        Constant Field Values
      • COLUMNIO_VALUE

        public static final int COLUMNIO_VALUE
         ColumnIO.
         
        COLUMNIO = 5;
        See Also:
        Constant Field Values
      • CAPACITOR_VALUE

        public static final int CAPACITOR_VALUE
         Capacitor.
         
        CAPACITOR = 6;
        See Also:
        Constant Field Values
      • PARQUET_VALUE

        public static final int PARQUET_VALUE
         Parquet format. See https://parquet.apache.org .
         
        PARQUET = 7;
        See Also:
        Constant Field Values
      • ORC_VALUE

        public static final int ORC_VALUE
         ORC format. See https://orc.apache.org .
         
        ORC = 8;
        See Also:
        Constant Field Values
    • Method Detail

      • values

        public static ImportedDataInfo.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 (ImportedDataInfo.Format c : ImportedDataInfo.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 ImportedDataInfo.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 name
        NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.google.protobuf.ProtocolMessageEnum
      • valueOf

        @Deprecated
        public static ImportedDataInfo.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 name
        NullPointerException - if the argument is null
      • internalGetValueMap

        public static com.google.protobuf.Internal.EnumLiteMap<ImportedDataInfo.Format> internalGetValueMap()
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptor

        public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      • valueOf

        public static ImportedDataInfo.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 name
        NullPointerException - if the argument is null