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