Uses of Class
org.crosswire.common.options.DataType

Packages that use DataType
org.crosswire.common.options Classes to represent command line options. 
 

Uses of DataType in org.crosswire.common.options
 

Fields in org.crosswire.common.options declared as DataType
static DataType DataType.BOOLEAN
          An boolean argument that allows various values for 'true'.
private  DataType Option.dataType
           
static DataType DataType.INTEGER
          An integer argument.
static DataType DataType.STRING
          A string argument.
private static DataType[] DataType.VALUES
           
 

Methods in org.crosswire.common.options that return DataType
static DataType DataType.fromInteger(int i)
          Lookup method to convert from an integer
static DataType DataType.fromString(String name)
          Lookup method to convert from a String
 DataType Option.getDataType()
           
 

Constructors in org.crosswire.common.options with parameters of type DataType
Option(String description, ArgumentType argumentType, DataType dataType, char shortName)
          Create an Option with a short name, having no default value.
Option(String description, ArgumentType argumentType, DataType dataType, char shortName, String longName)
          Create an Option with both short and long names, having no default value.
Option(String description, ArgumentType argumentType, DataType dataType, char shortName, String longName, String defaultValue)
          Create an Option with both short and long names of a given DataType having a default value.
Option(String description, ArgumentType argumentType, DataType dataType, String longName)
          Create an Option with a long name, having no default value.
 


Copyright ยจ 2003-2007