public enum TransformationMethod extends Enum<TransformationMethod>
| Enum Constant and 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.
|
| Modifier and Type | Method and 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.
|
public static final TransformationMethod None
public static final TransformationMethod PropertyBagArrayToDictionary
public static final TransformationMethod SourceLocation
public static final TransformationMethod SourceLineNumber
public static final TransformationMethod GetPathElement
public static final TransformationMethod UnknownMethod
public static final TransformationMethod DateTimeFromUnixSeconds
public static final TransformationMethod DateTimeFromUnixMilliseconds
public static final TransformationMethod DateTimeFromUnixMicroseconds
public static final TransformationMethod DateTimeFromUnixNanoseconds
public static TransformationMethod[] values()
for (TransformationMethod c : TransformationMethod.values()) System.out.println(c);
public static TransformationMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.