Package com.microsoft.azure.kusto.ingest
Enum TransformationMethod
- java.lang.Object
-
- java.lang.Enum<TransformationMethod>
-
- com.microsoft.azure.kusto.ingest.TransformationMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<TransformationMethod>
public enum TransformationMethod extends Enum<TransformationMethod>
Transformation method can be used over all formats configured with Json mapping type (Json, Orc and Parquet) See kusto docs
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DateTimeFromUnixMicroseconds
Converts UNIX epoch (microseconds) to UTC datetime.DateTimeFromUnixMilliseconds
Converts UNIX epoch (milliseconds) to UTC datetime.DateTimeFromUnixNanoseconds
Converts UNIX epoch (nanoseconds) to UTC datetime.DateTimeFromUnixSeconds
Converts UNIX epoch (seconds) to UTC datetime.GetPathElement
Get path element.None
Comma-separated value.PropertyBagArrayToDictionary
Property bag array to dictionary.SourceLineNumber
Source line number.SourceLocation
Source location.UnknownMethod
Unknown method.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TransformationMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static TransformationMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final TransformationMethod None
Comma-separated value.
-
PropertyBagArrayToDictionary
public static final TransformationMethod PropertyBagArrayToDictionary
Property bag array to dictionary.
-
SourceLocation
public static final TransformationMethod SourceLocation
Source location.
-
SourceLineNumber
public static final TransformationMethod SourceLineNumber
Source line number.
-
GetPathElement
public static final TransformationMethod GetPathElement
Get path element.
-
UnknownMethod
public static final TransformationMethod UnknownMethod
Unknown method.
-
DateTimeFromUnixSeconds
public static final TransformationMethod DateTimeFromUnixSeconds
Converts UNIX epoch (seconds) to UTC datetime.
-
DateTimeFromUnixMilliseconds
public static final TransformationMethod DateTimeFromUnixMilliseconds
Converts UNIX epoch (milliseconds) to UTC datetime.
-
DateTimeFromUnixMicroseconds
public static final TransformationMethod DateTimeFromUnixMicroseconds
Converts UNIX epoch (microseconds) to UTC datetime.
-
DateTimeFromUnixNanoseconds
public static final TransformationMethod DateTimeFromUnixNanoseconds
Converts UNIX epoch (nanoseconds) to UTC datetime.
-
-
Method Detail
-
values
public static TransformationMethod[] 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 (TransformationMethod c : TransformationMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransformationMethod 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
-
-