Package com.microsoft.azure.kusto.ingest
Enum MappingConsts
- java.lang.Object
-
- java.lang.Enum<MappingConsts>
-
- com.microsoft.azure.kusto.ingest.MappingConsts
-
- All Implemented Interfaces:
Serializable
,Comparable<MappingConsts>
public enum MappingConsts extends Enum<MappingConsts>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMNS
CONST_VALUE
FIELD_NAME
ORDINAL
PATH
STORAGE_DATA_TYPE
TRANSFORMATION_METHOD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MappingConsts
valueOf(String name)
Returns the enum constant of this type with the specified name.static MappingConsts[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PATH
public static final MappingConsts PATH
-
TRANSFORMATION_METHOD
public static final MappingConsts TRANSFORMATION_METHOD
-
ORDINAL
public static final MappingConsts ORDINAL
-
CONST_VALUE
public static final MappingConsts CONST_VALUE
-
FIELD_NAME
public static final MappingConsts FIELD_NAME
-
COLUMNS
public static final MappingConsts COLUMNS
-
STORAGE_DATA_TYPE
public static final MappingConsts STORAGE_DATA_TYPE
-
-
Method Detail
-
values
public static MappingConsts[] 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 (MappingConsts c : MappingConsts.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MappingConsts 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
-
-