|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<DataType>
org.crosswire.common.options.DataType
public enum DataType
A DataType provides the ability to marshal a String value to an object.
The GNU Lesser General Public License for details.| Enum Constant Summary | |
|---|---|
BOOLEAN
An boolean argument that allows various values for 'true'. |
|
INTEGER
An integer argument. |
|
STRING
A string argument. |
|
| Field Summary | |
|---|---|
private String |
name
The name of the DataType |
| Method Summary | |
|---|---|
abstract Object |
convertFromString(String input)
Convert a String to an DataType's expected value. |
static DataType |
fromString(String name)
Find a DataType by name |
String |
toString()
|
static DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DataType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final DataType STRING
public static final DataType INTEGER
public static final DataType BOOLEAN
| Field Detail |
|---|
private String name
| Method Detail |
|---|
public static DataType[] values()
for (DataType c : DataType.values()) System.out.println(c);
public static DataType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic abstract Object convertFromString(String input)
input - the string to convert
public static DataType fromString(String name)
name - the name of the DataType
public String toString()
toString in class Enum<DataType>
|
Copyright ยจ 2003-2015 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||