Package com.microsoft.azure.kusto.ingest
Enum IngestionProperties.DataFormat
- java.lang.Object
-
- java.lang.Enum<IngestionProperties.DataFormat>
-
- com.microsoft.azure.kusto.ingest.IngestionProperties.DataFormat
-
- All Implemented Interfaces:
Serializable,Comparable<IngestionProperties.DataFormat>
- Enclosing class:
- IngestionProperties
public static enum IngestionProperties.DataFormat extends Enum<IngestionProperties.DataFormat>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IngestionMapping.IngestionMappingKindgetIngestionMappingKind()StringgetKustoValue()booleanisCompressible()static IngestionProperties.DataFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static IngestionProperties.DataFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CSV
public static final IngestionProperties.DataFormat CSV
-
TSV
public static final IngestionProperties.DataFormat TSV
-
SCSV
public static final IngestionProperties.DataFormat SCSV
-
SOHSV
public static final IngestionProperties.DataFormat SOHSV
-
PSV
public static final IngestionProperties.DataFormat PSV
-
TXT
public static final IngestionProperties.DataFormat TXT
-
TSVE
public static final IngestionProperties.DataFormat TSVE
-
JSON
public static final IngestionProperties.DataFormat JSON
-
SINGLEJSON
public static final IngestionProperties.DataFormat SINGLEJSON
-
MULTIJSON
public static final IngestionProperties.DataFormat MULTIJSON
-
AVRO
public static final IngestionProperties.DataFormat AVRO
-
APACHEAVRO
public static final IngestionProperties.DataFormat APACHEAVRO
-
PARQUET
public static final IngestionProperties.DataFormat PARQUET
-
SSTREAM
public static final IngestionProperties.DataFormat SSTREAM
-
ORC
public static final IngestionProperties.DataFormat ORC
-
RAW
public static final IngestionProperties.DataFormat RAW
-
W3CLOGFILE
public static final IngestionProperties.DataFormat W3CLOGFILE
-
-
Method Detail
-
values
public static IngestionProperties.DataFormat[] 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 (IngestionProperties.DataFormat c : IngestionProperties.DataFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IngestionProperties.DataFormat 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
-
getKustoValue
public String getKustoValue()
-
getIngestionMappingKind
public IngestionMapping.IngestionMappingKind getIngestionMappingKind()
-
isCompressible
public boolean isCompressible()
-
-