Package | Description |
---|---|
opendap.dap.parser |
This package contains Bison 2.4.2 generated DAP parser classes.
|
opendap.dap.Server |
This package contains the OPeNDAP Server classes.
|
Modifier and Type | Method and Description |
---|---|
SubClause |
ExprParser.value() |
Modifier and Type | Class and Description |
---|---|
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 |
ValueClause
Represents a clause containing a simple value.
|
Modifier and Type | Field and Description |
---|---|
protected SubClause |
RelOpClause.lhs |
Modifier and Type | Method and Description |
---|---|
SubClause |
RelOpClause.getLHS()
Returns a SubClause representing the right-hand side of the
comparison.
|
SubClause |
ClauseFactory.newBTFunctionClause(java.lang.String functionName,
java.util.List children)
Generates a clause which invokes a function that returns a
BaseType.
|
SubClause |
ClauseFactory.newDereferenceClause(java.lang.String url)
Generates a clause representing a remote value, referenced by a URL.
|
SubClause |
ClauseFactory.newValueClause(BaseType value,
boolean constant)
Generates a clause representing a simple value,
such as "var1" or "19".
|
Modifier and Type | Method and Description |
---|---|
TopLevelClause |
ClauseFactory.newRelOpClause(int operator,
SubClause lhs,
java.util.List rhs)
Generates a clause which which compares subclauses, using one of the
relative operators supported by the Operator class.
|
Constructor and Description |
---|
RelOpClause(int operator,
SubClause lhs,
java.util.List rhs)
Creates a new RelOpClause.
|