Enum RelationalDatabaseSchemaDialect.SqlFunction
- java.lang.Object
-
- java.lang.Enum<RelationalDatabaseSchemaDialect.SqlFunction>
-
- net.lecousin.reactive.data.relational.schema.dialect.RelationalDatabaseSchemaDialect.SqlFunction
-
- All Implemented Interfaces:
Serializable,Comparable<RelationalDatabaseSchemaDialect.SqlFunction>
- Enclosing class:
- RelationalDatabaseSchemaDialect
public static enum RelationalDatabaseSchemaDialect.SqlFunction extends Enum<RelationalDatabaseSchemaDialect.SqlFunction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DAY_OF_MONTHDAY_OF_YEARHOURISO_DAY_OF_WEEKISO_WEEKLOWERMINUTEMONTHSECONDUPPERYEAR
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RelationalDatabaseSchemaDialect.SqlFunctionvalueOf(String name)Returns the enum constant of this type with the specified name.static RelationalDatabaseSchemaDialect.SqlFunction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UPPER
public static final RelationalDatabaseSchemaDialect.SqlFunction UPPER
-
LOWER
public static final RelationalDatabaseSchemaDialect.SqlFunction LOWER
-
ISO_DAY_OF_WEEK
public static final RelationalDatabaseSchemaDialect.SqlFunction ISO_DAY_OF_WEEK
-
DAY_OF_MONTH
public static final RelationalDatabaseSchemaDialect.SqlFunction DAY_OF_MONTH
-
DAY_OF_YEAR
public static final RelationalDatabaseSchemaDialect.SqlFunction DAY_OF_YEAR
-
MONTH
public static final RelationalDatabaseSchemaDialect.SqlFunction MONTH
-
YEAR
public static final RelationalDatabaseSchemaDialect.SqlFunction YEAR
-
ISO_WEEK
public static final RelationalDatabaseSchemaDialect.SqlFunction ISO_WEEK
-
HOUR
public static final RelationalDatabaseSchemaDialect.SqlFunction HOUR
-
MINUTE
public static final RelationalDatabaseSchemaDialect.SqlFunction MINUTE
-
SECOND
public static final RelationalDatabaseSchemaDialect.SqlFunction SECOND
-
-
Method Detail
-
values
public static RelationalDatabaseSchemaDialect.SqlFunction[] 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 (RelationalDatabaseSchemaDialect.SqlFunction c : RelationalDatabaseSchemaDialect.SqlFunction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RelationalDatabaseSchemaDialect.SqlFunction 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
-
-