Uses of Class
opendap.dap.Server.InvalidParameterException

Packages that use InvalidParameterException
opendap.dap This package contains the OPeNDAP core classes, known as the Data Access Protocol (DAP). 
opendap.dap.parser This package contains Bison 2.4.2 generated DAP parser classes. 
opendap.dap.Server This package contains the OPeNDAP Server classes. 
opendap.servers.test This package contains the OPeNDAP Test Server (DTS). 
 

Uses of InvalidParameterException in opendap.dap
 

Methods in opendap.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 opendap.dap.parser
 

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

Uses of InvalidParameterException in opendap.dap.Server
 

Methods in opendap.dap.Server that throw InvalidParameterException
 void ServerSideFunction.checkArgs(java.util.List args)
          Checks that the arguments given are acceptable arguments for this function.
 BaseType BTFunction.getReturnType(java.util.List args)
          A given function must always evaluate to the same class of BaseType.
 int SDArray.getStart(int dimension)
          Gets the start value for the array projection.
 int SDGrid.getStart(int dimension)
          Gets the start value for the projection of the dimension indicated.
 int ServerArrayMethods.getStart(int dimension)
           
 int SDArray.getStop(int dimension)
          Gets the stop value for the array projection.
 int SDGrid.getStop(int dimension)
          Gets the stop value for the projection of the dimension indicated.
 int ServerArrayMethods.getStop(int dimension)
           
 int SDArray.getStride(int dimension)
          Gets the stride value for the array projection.
 int SDGrid.getStride(int dimension)
          Gets the stride value for the projection of the dimension indicated.
 int ServerArrayMethods.getStride(int dimension)
           
 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 CEEvaluator.parseConstraint(java.lang.String expression)
          Parse a constraint expression.
 void SDArray.setProjection(int dimension, int start, int stride, int stop)
          Set the projection information for this dimension.
 void SDGrid.setProjection(int dimension, int start, int stride, int stop)
          Set the projection information for this dimension.
 void ServerArrayMethods.setProjection(int dimension, int start, int stride, int stop)
           
 

Uses of InvalidParameterException in opendap.servers.test
 

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