Uses of Class
dods.dap.Server.InvalidParameterException

Packages that use InvalidParameterException
dods.dap This package contains the DODS core classes, known as the Data Access Protocol (DAP). 
dods.dap.parser This package contains JavaCC generated DAP parser classes. 
dods.dap.Server This package contains the DODS Server classes. 
dods.servers.sql This package contains the DODS Relational Databse Server (DRDS). 
dods.servers.test This package contains the DODS Test Server (DTS). 
 

Uses of InvalidParameterException in dods.dap
 

Methods in dods.dap that throw InvalidParameterException
 DArrayDimension DArray.getDimension(int dimension)
          Returns the DArrayDimension object for the dimension requested.
 void DArrayDimension.setProjection(int start, int stride, int stop)
          Set the projection information for this dimension.
 

Uses of InvalidParameterException in dods.dap.parser
 

Methods in dods.dap.parser that throw InvalidParameterException
 void ExprParser.constraint_expression(CEEvaluator ceEval, BaseTypeFactory factory, ClauseFactory clauseFactory)
          This is the entry point for the Constraint expression parser.
 void ExprParser.projection()
           
 void ExprParser.proj_clause()
           
 void ExprParser.proj_variable()
           
 void ExprParser.array_index(int count, ServerArrayMethods bt)
           
 

Uses of InvalidParameterException in dods.dap.Server
 

Methods in dods.dap.Server that throw InvalidParameterException
 BaseType BTFunction.getReturnType(java.util.List args)
          A given function must always evaluate to the same class of BaseType.
 void CEEvaluator.parseConstraint(java.lang.String expression)
          Parse a constraint expression.
 void CEEvaluator.markAll(boolean state)
          Mark all the variables in the DDS either as part of the current projection (when state is true) or not (state is false).
 void SDArray.setProjection(int dimension, int start, int stride, int stop)
          Set the projection information for this dimension.
 int SDArray.getStart(int dimension)
          Gets the start value for the array projection.
 int SDArray.getStride(int dimension)
          Gets the stride value for the array projection.
 int SDArray.getStop(int dimension)
          Gets the stop value for the array projection.
 void SDGrid.setProjection(int dimension, int start, int stride, int stop)
          Set the projection information for this dimension.
 int SDGrid.getStart(int dimension)
          Gets the start value for the projection of the dimension indicated.
 int SDGrid.getStride(int dimension)
          Gets the stride value for the projection of the dimension indicated.
 int SDGrid.getStop(int dimension)
          Gets the stop value for the projection of the dimension indicated.
 void ServerArrayMethods.setProjection(int dimension, int start, int stride, int stop)
           
 int ServerArrayMethods.getStart(int dimension)
           
 int ServerArrayMethods.getStride(int dimension)
           
 int ServerArrayMethods.getStop(int dimension)
           
 void ServerSideFunction.checkArgs(java.util.List args)
          Checks that the arguments given are acceptable arguments for this function.
 

Uses of InvalidParameterException in dods.servers.sql
 

Methods in dods.servers.sql that throw InvalidParameterException
 void SSFunique.checkArgs(java.util.List args)
          Checks that the arguments given are acceptable arguments for this function.
 

Uses of InvalidParameterException in dods.servers.test
 

Methods in dods.servers.test that throw InvalidParameterException
 void SSFdummyval.checkArgs(java.util.List args)