Uses of Interface
opendap.dap.Server.Clause

Packages that use Clause
opendap.dap.parser This package contains Bison 2.4.2 generated DAP parser classes. 
opendap.dap.Server This package contains the OPeNDAP Server classes. 
 

Uses of Clause in opendap.dap.parser
 

Methods in opendap.dap.parser that return Clause
 Clause ExprParser.bool_function()
           
 Clause ExprParser.clause()
           
 

Uses of Clause in opendap.dap.Server
 

Subinterfaces of Clause in opendap.dap.Server
 interface SubClause
          Represents a sub-clause of the selection portion of a constraint expression.
 interface TopLevelClause
          Represents a top-level clause in the selection portion of a constraint expression (CE).
 

Classes in opendap.dap.Server that implement Clause
 class AbstractClause
          Provides default implementations for the Clause interface methods.
 class BoolFunctionClause
          Represents a clause which invokes a function that returns a boolean value.
 class BTFunctionClause
          Represents a clause which invokes a function that returns a BaseType.
 class DereferenceClause
          Represents a sub-clause that is a URL reference to remote data.
 class RelOpClause
          Represents a clause which compares subclauses, using one of the relative operators supported by the Operator class.
 class ValueClause
          Represents a clause containing a simple value.
 

Fields in opendap.dap.Server declared as Clause
protected  Clause BTFunctionClause.parent
           
protected  Clause DereferenceClause.parent
           
protected  Clause ValueClause.parent
           
 

Methods in opendap.dap.Server that return Clause
 Clause BTFunctionClause.getParent()
           
 Clause DereferenceClause.getParent()
           
 Clause SubClause.getParent()
          Returns the Clause which contains this subclause.
 Clause ValueClause.getParent()
           
 

Methods in opendap.dap.Server with parameters of type Clause
 void CEEvaluator.appendClause(Clause c)
          Add a clause to the constraint expression.
 boolean CEEvaluator.removeClause(Clause c)
          Remove a clause from the constraint expression.
 void BTFunctionClause.setParent(Clause parent)
           
 void DereferenceClause.setParent(Clause parent)
           
 void SubClause.setParent(Clause parent)
          Sets the parent of this subclause.
 void ValueClause.setParent(Clause parent)