Uses of Class
edu.toronto.cs.util.Clapi.OptResult

Packages that use Clapi.OptResult
edu.toronto.cs.util Miscellaneous useful utility classes. 
 

Uses of Clapi.OptResult in edu.toronto.cs.util
 

Methods in edu.toronto.cs.util that return Clapi.OptResult
 Clapi.OptResult Clapi.OptParser.parse(java.lang.String[] _tokens)
          Parses the given token array, returning the result of the parse.
 Clapi.OptResult Clapi.OptParser.run(java.lang.String[] tokens)
          Defined as running and returning the result of parse() with the given tokens.
 

Methods in edu.toronto.cs.util with parameters of type Clapi.OptResult
protected  void Clapi.Opt.checkArity(Clapi.OptResult result)
           
 java.lang.Object Clapi.Opt.get(Clapi.OptResult result)
           
 boolean Clapi.BooleanOpt.getBoolean(Clapi.OptResult result)
           
 boolean[] Clapi.BooleanOpt.getBooleanArray(Clapi.OptResult result)
           
 int Clapi.IntOpt.getInt(Clapi.OptResult result)
           
 int[] Clapi.IntOpt.getIntArray(Clapi.OptResult result)
           
 java.util.List Clapi.Opt.getList(Clapi.OptResult result)
           
 java.lang.Object[] Clapi.Opt.getObjectArray(Clapi.OptResult result)
           
 java.lang.String Clapi.StringOpt.getString(Clapi.OptResult result)
           
 java.lang.String[] Clapi.StringOpt.getStringArray(Clapi.OptResult result)
           
protected  void Clapi.Opt.parseArguments(edu.toronto.cs.util.Clapi.TokenStream in, Clapi.OptResult optResult)
          Parses the arguments for this option, adding them to the OptResult data structure passed in.