public enum DateTransformType extends Enum<DateTransformType>
| Enum Constant and Description |
|---|
JAVA_TIME_LOCAL |
JAVA_TIME_OFFSET |
STRING |
| Modifier and Type | Method and Description |
|---|---|
String |
getStringValue() |
static DateTransformType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DateTransformType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateTransformType STRING
public static final DateTransformType JAVA_TIME_LOCAL
public static final DateTransformType JAVA_TIME_OFFSET
public static DateTransformType[] values()
for (DateTransformType c : DateTransformType.values()) System.out.println(c);
public static DateTransformType 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 nullpublic String getStringValue()
Copyright © 2024 MuleSoft, Inc.. All rights reserved.