public enum DateFunctions extends Enum<DateFunctions>
| Enum Constant and Description |
|---|
DATE_DAYS_SINCE_YEAR |
DATE_SECONDS_SINCE_MIDNIGHT |
DATE_SECONDS_SINCE_YEAR |
| Modifier and Type | Method and Description |
|---|---|
static DateFunctions |
byName(String name) |
String |
getName() |
Object |
getValue(Object[] inputData) |
static boolean |
isDateFunctions(String name) |
static DateFunctions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DateFunctions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateFunctions DATE_DAYS_SINCE_YEAR
public static final DateFunctions DATE_SECONDS_SINCE_YEAR
public static final DateFunctions DATE_SECONDS_SINCE_MIDNIGHT
public static DateFunctions[] values()
for (DateFunctions c : DateFunctions.values()) System.out.println(c);
public static DateFunctions 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 static boolean isDateFunctions(String name)
public static DateFunctions byName(String name)
public String getName()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.