Package com.ormfile.orm.enums
Enum Class OrmFileDataTypesToString
- All Implemented Interfaces:
Serializable
,Comparable<OrmFileDataTypesToString>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCasting de boolean a StringCasting de byte para StringCasting de char a StringCasting de Date a StringCasting de double a StringCasting de float a StringCasting de int para StringCasting de LocalDate a StringCasting de LocaDateTime a StringCasting de long a StringCasting de short a StringDefinir tipo de dato StringCasting de UUID a String -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic OrmFileDataTypesToString
Returns the enum constant of this class with the specified name.static OrmFileDataTypesToString[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BYTE_STRING
Casting de byte para String -
INT_STRING
Casting de int para String -
SHORT_STRING
Casting de short a String -
LONG_STRING
Casting de long a String -
FLOAT_STRING
Casting de float a String -
DOUBLE_STRING
Casting de double a String -
CHAR_STIRNG
Casting de char a String -
STRING_STRING
Definir tipo de dato String -
BOOL_STRING
Casting de boolean a String -
LOCALDATE_STRING
Casting de LocalDate a String -
LOCALDATETIME_STRING
Casting de LocaDateTime a String -
DATE_STRING
Casting de Date a String -
UUID_STRING
Casting de UUID a String
-
-
Constructor Details
-
OrmFileDataTypesToString
private OrmFileDataTypesToString()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-