public enum MdrDataType extends Enum<MdrDataType>
| Enum Constant and Description |
|---|
DATE |
DATETIME |
ENUMERATED |
FLOAT |
INTEGER |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static MdrDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MdrDataType |
valueOfIgnoreCase(String name)
Return the Mdr data type and ignore case.
|
static MdrDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MdrDataType STRING
public static final MdrDataType INTEGER
public static final MdrDataType FLOAT
public static final MdrDataType DATE
public static final MdrDataType DATETIME
public static final MdrDataType ENUMERATED
public static MdrDataType[] values()
for (MdrDataType c : MdrDataType.values()) System.out.println(c);
public static MdrDataType 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 MdrDataType valueOfIgnoreCase(String name)
name - mdr type in stringCopyright © 2021 Samply Community. All rights reserved.