public enum ColumnDateFormat extends Enum<ColumnDateFormat>
ExcelDate.| Enum Constant and Description |
|---|
DD_MM_YYYY
The dd mm yyyy.
|
DD_MM_YYYY_HH_MM_SS
The dd mm yyyy hh mm ss.
|
PARAMETER
The parameter.
|
YYYY_MM_DD
The yyyy mm dd.
|
YYYY_MM_DD_HH_MM_SS
The yyyy mm dd hh mm ss.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue()
Gets the value.
|
static ColumnDateFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnDateFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnDateFormat DD_MM_YYYY
public static final ColumnDateFormat DD_MM_YYYY_HH_MM_SS
public static final ColumnDateFormat YYYY_MM_DD
public static final ColumnDateFormat YYYY_MM_DD_HH_MM_SS
public static final ColumnDateFormat PARAMETER
public static ColumnDateFormat[] values()
for (ColumnDateFormat c : ColumnDateFormat.values()) System.out.println(c);
public static ColumnDateFormat 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 getValue()
Copyright © 2022. All rights reserved.