public enum DefaultDataConverter extends Enum<DefaultDataConverter> implements DataConverter
| Enum Constant and Description |
|---|
Boolean |
Double |
Float |
Integer |
Long |
Short |
Text |
| Modifier and Type | Method and Description |
|---|---|
static DefaultDataConverter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultDataConverter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfconvertpublic static final DefaultDataConverter Boolean
public static final DefaultDataConverter Short
public static final DefaultDataConverter Integer
public static final DefaultDataConverter Long
public static final DefaultDataConverter Float
public static final DefaultDataConverter Double
public static final DefaultDataConverter Text
public static DefaultDataConverter[] values()
for (DefaultDataConverter c : DefaultDataConverter.values()) System.out.println(c);
public static DefaultDataConverter 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 nullCopyright © 2009–2016 CodeLutin. All rights reserved.