Uses of Class
dods.dap.BaseType

Packages that use BaseType
dods.clients.importwizard   
dods.clients.matlab   
dods.dap This package contains the DODS core classes, known as the Data Access Protocol (DAP). 
dods.dap.functions   
dods.dap.parser This package contains JavaCC generated DAP parser classes. 
dods.dap.Server This package contains the DODS Server classes. 
dods.servers.agg   
dods.servers.ascii This package contains the DODS ASCII client. 
dods.servers.netcdf   
dods.servers.sql This package contains the DODS Relational Databse Server (DRDS). 
dods.servers.test This package contains the DODS Test Server (DTS). 
dods.servers.www This package contains the DODS WWW client. 
dods.util This package contains utility classes used by several DODS packages. 
visad.data.dods Supports read-only access to datasets on DODS servers by importing such datasets as VisAD data objects. 
 

Uses of BaseType in dods.clients.importwizard
 

Constructors in dods.clients.importwizard with parameters of type BaseType
GenericSelector(BaseType var)
          Creates a new instance of GenericSelector
 

Uses of BaseType in dods.clients.matlab
 

Subclasses of BaseType in dods.clients.matlab
 class MatlabArray
          An extention of the DArray class, with optimizations for Matlab.
 class MatlabList
          An extention of the DList class which provides methods to return the data held inside the list as atomic types, limiting the necessary interaction between matlab and java.
 class MatlabSequence
          A Sequence class which will return columns of variables as well as individual variables.
 class MatlabString
           
 class MatlabURL
           
 

Methods in dods.clients.matlab that return BaseType
 BaseType[] MatlabSequence.getColumn(String name)
          Returns a column in a sequence corresponding to name
 

Uses of BaseType in dods.dap
 

Subclasses of BaseType in dods.dap
 class DArray
          This class is used to hold arrays of other DODS data.
 class DBoolean
          Holds a DODS Boolean value.
 class DByte
          Holds a DODS Byte value.
 class DConstructor
          Contains methods used only by the DODS constructor classes (DStructure, DSequence, DGrid, and DList).
 class DFloat32
          Holds a DODS FLoat32 value.
 class DFloat64
          Holds a DODS Float64 value.
 class DGrid
          This class holds a DArray and a set of "Map" vectors.
 class DInt16
          Holds a DODS Int16 value.
 class DInt32
          Holds a DODS Int32 value.
 class DList
          This class implements a simple list of DODS data types.
 class DSequence
          A DSequence in DODS can hold N sequentially accessed instances of a set of variables.
 class DString
          Holds a DODS String value.
 class DStructure
          A DStructure in DODS can hold N instances of any of the other datatypes, including other structures.
 class DUInt16
          Holds a DODS UInt16 value.
 class DUInt32
          Holds a DODS UInt32 value.
 class DURL
          Holds a DODS URL value.
 class DVector
          This class holds a one-dimensional array of DODS data types.
 

Methods in dods.dap that return BaseType
 BaseType BaseType.getParent()
           
 BaseType BaseType.getParent()
           
 BaseType PrimitiveVector.getTemplate()
          Returns the template variable for this vector.
 BaseType PrimitiveVector.getTemplate()
          Returns the template variable for this vector.
 BaseType BaseTypePrimitiveVector.getValue(int i)
          Return the i'th value as a BaseType.
 BaseType BaseTypePrimitiveVector.getValue(int i)
          Return the i'th value as a BaseType.
abstract  BaseType DConstructor.getVar(int index)
          Gets the indexed variable.
 BaseType DGrid.getVar(int index)
          Gets the indexed variable.
 BaseType DSequence.getVar(int index)
          Gets the indexed variable.
 BaseType DStructure.getVar(int index)
          Gets the indexed variable.
abstract  BaseType DConstructor.getVar(int index)
          Gets the indexed variable.
 BaseType DGrid.getVar(int index)
          Gets the indexed variable.
 BaseType DSequence.getVar(int index)
          Gets the indexed variable.
 BaseType DStructure.getVar(int index)
          Gets the indexed variable.
 BaseType DSequence.getVariable(int row, String name)
          Returns the named variable in the given row of the sequence.
 BaseType DSequence.getVariable(int row, String name)
          Returns the named variable in the given row of the sequence.
abstract  BaseType DConstructor.getVariable(String name)
          Gets the named variable.
 BaseType DDS.getVariable(String name)
          Returns a reference to the named variable.
 BaseType DGrid.getVariable(String name)
          Returns the named variable.
 BaseType DSequence.getVariable(String name)
          Returns the named variable.
 BaseType DStructure.getVariable(String name)
          Returns the named variable.
abstract  BaseType DConstructor.getVariable(String name)
          Gets the named variable.
 BaseType DDS.getVariable(String name)
          Returns a reference to the named variable.
 BaseType DGrid.getVariable(String name)
          Returns the named variable.
 BaseType DSequence.getVariable(String name)
          Returns the named variable.
 BaseType DStructure.getVariable(String name)
          Returns the named variable.
 

Methods in dods.dap with parameters of type BaseType
 void DConstructor.addVariable(BaseType v)
          Adds a variable to the container.
 void DDS.addVariable(BaseType bt)
          Adds a variable to the DDS.
 void DVector.addVariable(BaseType v)
          Adds a variable to the container.
 void DConstructor.addVariable(BaseType v)
          Adds a variable to the container.
 void DDS.addVariable(BaseType bt)
          Adds a variable to the DDS.
 void DVector.addVariable(BaseType v)
          Adds a variable to the container.
abstract  void DConstructor.addVariable(BaseType v, int part)
          Adds a variable to the container.
 void DGrid.addVariable(BaseType v, int part)
          Adds a variable to the container.
 void DSequence.addVariable(BaseType v, int part)
          Adds a variable to the container.
 void DStructure.addVariable(BaseType v, int part)
          Adds a variable to the container.
abstract  void DConstructor.addVariable(BaseType v, int part)
          Adds a variable to the container.
 void DGrid.addVariable(BaseType v, int part)
          Adds a variable to the container.
 void DSequence.addVariable(BaseType v, int part)
          Adds a variable to the container.
 void DStructure.addVariable(BaseType v, int part)
          Adds a variable to the container.
 void BaseType.setParent(BaseType bt)
           
 void BaseType.setParent(BaseType bt)
           
 void BaseTypePrimitiveVector.setValue(int i, BaseType newVal)
          Set the i'th value of the array.
 void BaseTypePrimitiveVector.setValue(int i, BaseType newVal)
          Set the i'th value of the array.
 

Constructors in dods.dap with parameters of type BaseType
BaseTypePrimitiveVector(BaseType var)
          Constructs a new BaseTypePrimitiveVector.
BaseTypePrimitiveVector(BaseType var)
          Constructs a new BaseTypePrimitiveVector.
BooleanPrimitiveVector(BaseType var)
          Constructs a new BooleanPrimitiveVector.
BooleanPrimitiveVector(BaseType var)
          Constructs a new BooleanPrimitiveVector.
BytePrimitiveVector(BaseType var)
          Constructs a new BytePrimitiveVector.
BytePrimitiveVector(BaseType var)
          Constructs a new BytePrimitiveVector.
Float32PrimitiveVector(BaseType var)
          Constructs a new Float32PrimitiveVector.
Float32PrimitiveVector(BaseType var)
          Constructs a new Float32PrimitiveVector.
Float64PrimitiveVector(BaseType var)
          Constructs a new Float64PrimitiveVector.
Float64PrimitiveVector(BaseType var)
          Constructs a new Float64PrimitiveVector.
Int16PrimitiveVector(BaseType var)
          Constructs a new Int16PrimitiveVector.
Int16PrimitiveVector(BaseType var)
          Constructs a new Int16PrimitiveVector.
Int32PrimitiveVector(BaseType var)
          Constructs a new Int32PrimitiveVector.
Int32PrimitiveVector(BaseType var)
          Constructs a new Int32PrimitiveVector.
PrimitiveVector(BaseType var)
          Constructs a new PrimitiveVector.
PrimitiveVector(BaseType var)
          Constructs a new PrimitiveVector.
UInt16PrimitiveVector(BaseType var)
          Constructs a new UInt16PrimitiveVector.
UInt16PrimitiveVector(BaseType var)
          Constructs a new UInt16PrimitiveVector.
UInt32PrimitiveVector(BaseType var)
          Constructs a new UInt32PrimitiveVector.
UInt32PrimitiveVector(BaseType var)
          Constructs a new UInt32PrimitiveVector.
 

Uses of BaseType in dods.dap.functions
 

Methods in dods.dap.functions that return BaseType
static BaseType Length.main(BaseType[] args)
           
 

Methods in dods.dap.functions with parameters of type BaseType
static BaseType Length.main(BaseType[] args)
           
 

Uses of BaseType in dods.dap.parser
 

Methods in dods.dap.parser that return BaseType
 BaseType ExprParser.constant()
           
 BaseType ExprParser.constant()
           
 

Uses of BaseType in dods.dap.Server
 

Subclasses of BaseType in dods.dap.Server
 class SDArray
          Holds a DODS Server Array value.
 class SDBoolean
          Holds a DODS Server Boolean value.
 class SDByte
          Holds a DODS Server Byte value.
 class SDFloat32
          Holds a DODS Server Float32 value.
 class SDFloat64
          Holds a DODS Server Float64 value.
 class SDGrid
          Holds a DODS Server Grid value.
 class SDInt16
          Holds a DODS Server Int16 value.
 class SDInt32
          Holds a DODS Server Int32 value.
 class SDList
          Holds a DODS Server List value.
 class SDSequence
          Holds a DODS Server Sequence value.
 class SDString
          Holds a DODS Server String value.
 class SDStructure
          Holds a DODS Server Structure value.
 class SDUInt16
          Holds a DODS Server Unsigned Int16 value.
 class SDUInt32
          Holds a DODS Server Unsigned Int32 value.
 class SDURL
          Holds a DODS Server URL value.
 

Fields in dods.dap.Server declared as BaseType
protected  BaseType BTFunctionClause.value
           
protected  BaseType DereferenceClause.value
           
protected  BaseType ValueClause.value
           
protected  BaseType BTFunctionClause.value
           
protected  BaseType DereferenceClause.value
           
protected  BaseType ValueClause.value
           
 

Methods in dods.dap.Server that return BaseType
 BaseType BTFunctionClause.evaluate()
           
 BaseType DereferenceClause.evaluate()
           
 BaseType SubClause.evaluate()
          Evaluates the clause, first calling evaluate() on any sub-clauses it contains.
 BaseType ValueClause.evaluate()
          Returns the BaseType represented by this clause.
 BaseType BTFunctionClause.evaluate()
           
 BaseType DereferenceClause.evaluate()
           
 BaseType SubClause.evaluate()
          Evaluates the clause, first calling evaluate() on any sub-clauses it contains.
 BaseType ValueClause.evaluate()
          Returns the BaseType represented by this clause.
 BaseType BTFunction.evaluate(List args)
          Evaluates the function using the argument list given.
 BaseType BTFunction.evaluate(List args)
          Evaluates the function using the argument list given.
 BaseType BTFunction.getReturnType(List args)
          A given function must always evaluate to the same class of BaseType.
 BaseType BTFunction.getReturnType(List args)
          A given function must always evaluate to the same class of BaseType.
 BaseType BTFunctionClause.getValue()
           
 BaseType DereferenceClause.getValue()
           
 BaseType SubClause.getValue()
          Returns a BaseType containing the current value of the sub-clause.
 BaseType ValueClause.getValue()
          Returns the BaseType represented by this clause.
 BaseType BTFunctionClause.getValue()
           
 BaseType DereferenceClause.getValue()
           
 BaseType SubClause.getValue()
          Returns a BaseType containing the current value of the sub-clause.
 BaseType ValueClause.getValue()
          Returns the BaseType represented by this clause.
protected  BaseType DereferenceClause.retrieve(String url)
           
protected  BaseType DereferenceClause.retrieve(String url)
           
 

Methods in dods.dap.Server with parameters of type BaseType
 void SDGrid.addVariable(BaseType v, int part)
          Adds a variable to the container.
 void SDGrid.addVariable(BaseType v, int part)
          Adds a variable to the container.
 boolean RelOps.equal(BaseType bt)
           
 boolean SDArray.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDBoolean.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDByte.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDFloat32.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDFloat64.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDGrid.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDInt16.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDInt32.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDList.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDSequence.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDString.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDStructure.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDUInt16.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDUInt32.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDURL.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean ServerMethods.equal(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 boolean RelOps.equal(BaseType bt)
           
 boolean SDArray.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDBoolean.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDByte.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDFloat32.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDFloat64.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDGrid.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDInt16.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDInt32.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDList.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDSequence.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDString.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDStructure.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDUInt16.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDUInt32.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean SDURL.equal(BaseType bt)
          The RelOps interface defines how each type responds to relational operators.
 boolean ServerMethods.equal(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 boolean RelOps.greater_eql(BaseType bt)
           
 boolean SDArray.greater_eql(BaseType bt)
           
 boolean SDBoolean.greater_eql(BaseType bt)
           
 boolean SDByte.greater_eql(BaseType bt)
           
 boolean SDFloat32.greater_eql(BaseType bt)
           
 boolean SDFloat64.greater_eql(BaseType bt)
           
 boolean SDGrid.greater_eql(BaseType bt)
           
 boolean SDInt16.greater_eql(BaseType bt)
           
 boolean SDInt32.greater_eql(BaseType bt)
           
 boolean SDList.greater_eql(BaseType bt)
           
 boolean SDSequence.greater_eql(BaseType bt)
           
 boolean SDString.greater_eql(BaseType bt)
           
 boolean SDStructure.greater_eql(BaseType bt)
           
 boolean SDUInt16.greater_eql(BaseType bt)
           
 boolean SDUInt32.greater_eql(BaseType bt)
           
 boolean SDURL.greater_eql(BaseType bt)
           
 boolean ServerMethods.greater_eql(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 boolean RelOps.greater_eql(BaseType bt)
           
 boolean SDArray.greater_eql(BaseType bt)
           
 boolean SDBoolean.greater_eql(BaseType bt)
           
 boolean SDByte.greater_eql(BaseType bt)
           
 boolean SDFloat32.greater_eql(BaseType bt)
           
 boolean SDFloat64.greater_eql(BaseType bt)
           
 boolean SDGrid.greater_eql(BaseType bt)
           
 boolean SDInt16.greater_eql(BaseType bt)
           
 boolean SDInt32.greater_eql(BaseType bt)
           
 boolean SDList.greater_eql(BaseType bt)
           
 boolean SDSequence.greater_eql(BaseType bt)
           
 boolean SDString.greater_eql(BaseType bt)
           
 boolean SDStructure.greater_eql(BaseType bt)
           
 boolean SDUInt16.greater_eql(BaseType bt)
           
 boolean SDUInt32.greater_eql(BaseType bt)
           
 boolean SDURL.greater_eql(BaseType bt)
           
 boolean ServerMethods.greater_eql(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 boolean RelOps.greater(BaseType bt)
           
 boolean SDArray.greater(BaseType bt)
           
 boolean SDBoolean.greater(BaseType bt)
           
 boolean SDByte.greater(BaseType bt)
           
 boolean SDFloat32.greater(BaseType bt)
           
 boolean SDFloat64.greater(BaseType bt)
           
 boolean SDGrid.greater(BaseType bt)
           
 boolean SDInt16.greater(BaseType bt)
           
 boolean SDInt32.greater(BaseType bt)
           
 boolean SDList.greater(BaseType bt)
           
 boolean SDSequence.greater(BaseType bt)
           
 boolean SDString.greater(BaseType bt)
           
 boolean SDStructure.greater(BaseType bt)
           
 boolean SDUInt16.greater(BaseType bt)
           
 boolean SDUInt32.greater(BaseType bt)
           
 boolean SDURL.greater(BaseType bt)
           
 boolean ServerMethods.greater(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 boolean RelOps.greater(BaseType bt)
           
 boolean SDArray.greater(BaseType bt)
           
 boolean SDBoolean.greater(BaseType bt)
           
 boolean SDByte.greater(BaseType bt)
           
 boolean SDFloat32.greater(BaseType bt)
           
 boolean SDFloat64.greater(BaseType bt)
           
 boolean SDGrid.greater(BaseType bt)
           
 boolean SDInt16.greater(BaseType bt)
           
 boolean SDInt32.greater(BaseType bt)
           
 boolean SDList.greater(BaseType bt)
           
 boolean SDSequence.greater(BaseType bt)
           
 boolean SDString.greater(BaseType bt)
           
 boolean SDStructure.greater(BaseType bt)
           
 boolean SDUInt16.greater(BaseType bt)
           
 boolean SDUInt32.greater(BaseType bt)
           
 boolean SDURL.greater(BaseType bt)
           
 boolean ServerMethods.greater(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 boolean RelOps.less_eql(BaseType bt)
           
 boolean SDArray.less_eql(BaseType bt)
           
 boolean SDBoolean.less_eql(BaseType bt)
           
 boolean SDByte.less_eql(BaseType bt)
           
 boolean SDFloat32.less_eql(BaseType bt)
           
 boolean SDFloat64.less_eql(BaseType bt)
           
 boolean SDGrid.less_eql(BaseType bt)
           
 boolean SDInt16.less_eql(BaseType bt)
           
 boolean SDInt32.less_eql(BaseType bt)
           
 boolean SDList.less_eql(BaseType bt)
           
 boolean SDSequence.less_eql(BaseType bt)
           
 boolean SDString.less_eql(BaseType bt)
           
 boolean SDStructure.less_eql(BaseType bt)
           
 boolean SDUInt16.less_eql(BaseType bt)
           
 boolean SDUInt32.less_eql(BaseType bt)
           
 boolean SDURL.less_eql(BaseType bt)
           
 boolean ServerMethods.less_eql(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 boolean RelOps.less_eql(BaseType bt)
           
 boolean SDArray.less_eql(BaseType bt)
           
 boolean SDBoolean.less_eql(BaseType bt)
           
 boolean SDByte.less_eql(BaseType bt)
           
 boolean SDFloat32.less_eql(BaseType bt)
           
 boolean SDFloat64.less_eql(BaseType bt)
           
 boolean SDGrid.less_eql(BaseType bt)
           
 boolean SDInt16.less_eql(BaseType bt)
           
 boolean SDInt32.less_eql(BaseType bt)
           
 boolean SDList.less_eql(BaseType bt)
           
 boolean SDSequence.less_eql(BaseType bt)
           
 boolean SDString.less_eql(BaseType bt)
           
 boolean SDStructure.less_eql(BaseType bt)
           
 boolean SDUInt16.less_eql(BaseType bt)
           
 boolean SDUInt32.less_eql(BaseType bt)
           
 boolean SDURL.less_eql(BaseType bt)
           
 boolean ServerMethods.less_eql(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 boolean RelOps.less(BaseType bt)
           
 boolean SDArray.less(BaseType bt)
           
 boolean SDBoolean.less(BaseType bt)
           
 boolean SDByte.less(BaseType bt)
           
 boolean SDFloat32.less(BaseType bt)
           
 boolean SDFloat64.less(BaseType bt)
           
 boolean SDGrid.less(BaseType bt)
           
 boolean SDInt16.less(BaseType bt)
           
 boolean SDInt32.less(BaseType bt)
           
 boolean SDList.less(BaseType bt)
           
 boolean SDSequence.less(BaseType bt)
           
 boolean SDString.less(BaseType bt)
           
 boolean SDStructure.less(BaseType bt)
           
 boolean SDUInt16.less(BaseType bt)
           
 boolean SDUInt32.less(BaseType bt)
           
 boolean SDURL.less(BaseType bt)
           
 boolean ServerMethods.less(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 boolean RelOps.less(BaseType bt)
           
 boolean SDArray.less(BaseType bt)
           
 boolean SDBoolean.less(BaseType bt)
           
 boolean SDByte.less(BaseType bt)
           
 boolean SDFloat32.less(BaseType bt)
           
 boolean SDFloat64.less(BaseType bt)
           
 boolean SDGrid.less(BaseType bt)
           
 boolean SDInt16.less(BaseType bt)
           
 boolean SDInt32.less(BaseType bt)
           
 boolean SDList.less(BaseType bt)
           
 boolean SDSequence.less(BaseType bt)
           
 boolean SDString.less(BaseType bt)
           
 boolean SDStructure.less(BaseType bt)
           
 boolean SDUInt16.less(BaseType bt)
           
 boolean SDUInt32.less(BaseType bt)
           
 boolean SDURL.less(BaseType bt)
           
 boolean ServerMethods.less(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 SubClause ClauseFactory.newValueClause(BaseType value, boolean constant)
          Generates a clause representing a simple value, such as "var1" or "19".
 SubClause ClauseFactory.newValueClause(BaseType value, boolean constant)
          Generates a clause representing a simple value, such as "var1" or "19".
 boolean RelOps.not_equal(BaseType bt)
           
 boolean SDArray.not_equal(BaseType bt)
           
 boolean SDBoolean.not_equal(BaseType bt)
           
 boolean SDByte.not_equal(BaseType bt)
           
 boolean SDFloat32.not_equal(BaseType bt)
           
 boolean SDFloat64.not_equal(BaseType bt)
           
 boolean SDGrid.not_equal(BaseType bt)
           
 boolean SDInt16.not_equal(BaseType bt)
           
 boolean SDInt32.not_equal(BaseType bt)
           
 boolean SDList.not_equal(BaseType bt)
           
 boolean SDSequence.not_equal(BaseType bt)
           
 boolean SDString.not_equal(BaseType bt)
           
 boolean SDStructure.not_equal(BaseType bt)
           
 boolean SDUInt16.not_equal(BaseType bt)
           
 boolean SDUInt32.not_equal(BaseType bt)
           
 boolean SDURL.not_equal(BaseType bt)
           
 boolean ServerMethods.not_equal(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 boolean RelOps.not_equal(BaseType bt)
           
 boolean SDArray.not_equal(BaseType bt)
           
 boolean SDBoolean.not_equal(BaseType bt)
           
 boolean SDByte.not_equal(BaseType bt)
           
 boolean SDFloat32.not_equal(BaseType bt)
           
 boolean SDFloat64.not_equal(BaseType bt)
           
 boolean SDGrid.not_equal(BaseType bt)
           
 boolean SDInt16.not_equal(BaseType bt)
           
 boolean SDInt32.not_equal(BaseType bt)
           
 boolean SDList.not_equal(BaseType bt)
           
 boolean SDSequence.not_equal(BaseType bt)
           
 boolean SDString.not_equal(BaseType bt)
           
 boolean SDStructure.not_equal(BaseType bt)
           
 boolean SDUInt16.not_equal(BaseType bt)
           
 boolean SDUInt32.not_equal(BaseType bt)
           
 boolean SDURL.not_equal(BaseType bt)
           
 boolean ServerMethods.not_equal(BaseType bt)
          The Operator class contains a generalized implementation of this method.
static boolean Operator.op(int oprtr, BaseType lop, BaseType rop)
          Performs the Relatove Operation (RelOp) indicated by the parameter oprtr on the 2 passed BaseTypes if appropriate.
static boolean Operator.op(int oprtr, BaseType lop, BaseType rop)
          Performs the Relatove Operation (RelOp) indicated by the parameter oprtr on the 2 passed BaseTypes if appropriate.
 boolean RelOps.regexp(BaseType bt)
           
 boolean SDArray.regexp(BaseType bt)
           
 boolean SDBoolean.regexp(BaseType bt)
           
 boolean SDByte.regexp(BaseType bt)
           
 boolean SDFloat32.regexp(BaseType bt)
           
 boolean SDFloat64.regexp(BaseType bt)
           
 boolean SDGrid.regexp(BaseType bt)
           
 boolean SDInt16.regexp(BaseType bt)
           
 boolean SDInt32.regexp(BaseType bt)
           
 boolean SDList.regexp(BaseType bt)
           
 boolean SDSequence.regexp(BaseType bt)
           
 boolean SDString.regexp(BaseType bt)
           
 boolean SDStructure.regexp(BaseType bt)
           
 boolean SDUInt16.regexp(BaseType bt)
           
 boolean SDUInt32.regexp(BaseType bt)
           
 boolean SDURL.regexp(BaseType bt)
           
 boolean ServerMethods.regexp(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 boolean RelOps.regexp(BaseType bt)
           
 boolean SDArray.regexp(BaseType bt)
           
 boolean SDBoolean.regexp(BaseType bt)
           
 boolean SDByte.regexp(BaseType bt)
           
 boolean SDFloat32.regexp(BaseType bt)
           
 boolean SDFloat64.regexp(BaseType bt)
           
 boolean SDGrid.regexp(BaseType bt)
           
 boolean SDInt16.regexp(BaseType bt)
           
 boolean SDInt32.regexp(BaseType bt)
           
 boolean SDList.regexp(BaseType bt)
           
 boolean SDSequence.regexp(BaseType bt)
           
 boolean SDString.regexp(BaseType bt)
           
 boolean SDStructure.regexp(BaseType bt)
           
 boolean SDUInt16.regexp(BaseType bt)
           
 boolean SDUInt32.regexp(BaseType bt)
           
 boolean SDURL.regexp(BaseType bt)
           
 boolean ServerMethods.regexp(BaseType bt)
          The Operator class contains a generalized implementation of this method.
 

Constructors in dods.dap.Server with parameters of type BaseType
ValueClause(BaseType value, boolean constant)
          Creates a new ValueClause.
ValueClause(BaseType value, boolean constant)
          Creates a new ValueClause.
 

Uses of BaseType in dods.servers.agg
 

Subclasses of BaseType in dods.servers.agg
 class Agg1SDArray
          Aggregates an SDArray distributed across multiple datasets (type 1), where the outer dimension is synthesized, and there is one AggFile per step.
 class Agg3SDArray
          Aggregates an SDArray distributed across multiple datasets (type 3), where the connect dimension already exists.
 class AggSDGrid
          Aggregates an SDGrid distributed across multiple datasets (type 1 or 3)
 class MemSDArray
          An SDArray with its values stored in memory
 class ProxySDArray
          Proxy for an array in another (DODS) dataset.
 class ProxySDBoolean
          Proxy for a variable in another dataset
 class ProxySDByte
          Proxy for a variable in another dataset
 class ProxySDFloat32
          Proxy for a variable in another (DODS) dataset
 class ProxySDFloat64
          Proxy for a variable in another (DODS) dataset
 class ProxySDGrid
          Proxy for a grid in another DODS dataset
 class ProxySDInt16
          Proxy for a variable in another dataset
 class ProxySDInt32
          Proxy for a variable in another dataset
 class ProxySDString
          Proxy for a variable in another (DODS) dataset
 class ProxySDUInt16
          Proxy for a variable in another dataset
 class ProxySDUInt32
          Proxy for a variable in another dataset
 

Methods in dods.servers.agg that return BaseType
static BaseType ProxySDArray.assignBaseType(BaseType bt)
          Override so we can cache the whole array, and subset it locally.
 

Methods in dods.servers.agg with parameters of type BaseType
static BaseType ProxySDArray.assignBaseType(BaseType bt)
          Override so we can cache the whole array, and subset it locally.
 

Uses of BaseType in dods.servers.ascii
 

Subclasses of BaseType in dods.servers.ascii
 class asciiArray
           
 class asciiBool
           
 class asciiByte
           
 class asciiF32
           
 class asciiF64
           
 class asciiGrid
           
 class asciiI16
           
 class asciiI32
           
 class asciiList
           
 class asciiSeq
           
 class asciiString
           
 class asciiStructure
           
 class asciiUI16
           
 class asciiUI32
           
 class asciiURL
           
 

Uses of BaseType in dods.servers.netcdf
 

Subclasses of BaseType in dods.servers.netcdf
 class NcSDArray
          Wraps a netcdf variable with rank > 0 as an SDArray.
 class NcSDByte
          Wraps a netcdf scalar byte variable.
 class NcSDCharArray
          Wraps a netcdf char variable with rank > 1 as an SDArray.
 class NcSDFloat32
          Wraps a netcdf scalar float variable.
 class NcSDFloat64
          Wraps a netcdf scalar double variable.
 class NcSDGrid
          Wraps a netcdf variable with rank > 0, whose dimensions all have coordinate variables, as an SDGrid.
 class NcSDInt16
          Wraps a netcdf scalar short variable.
 class NcSDInt32
          Wraps a netcdf scalar int variable.
 class NcSDString
          Wraps a netcdf scalar or 1D char variable.
 

Uses of BaseType in dods.servers.sql
 

Subclasses of BaseType in dods.servers.sql
 class sqlArray
          Holds a DODS Server sqlArray value.
 class sqlBool
          Holds a DODS Server Boolean value.
 class sqlByte
          Holds a DODS Server sqlByte value.
 class sqlF32
          Holds a DODS Server sqlF32 value.
 class sqlF64
          Holds a DODS Server sqlF64 value.
 class sqlGrid
          Holds a DODS Server sqlGrid value.
 class sqlI16
          Holds a DODS Server sqlI16 value.
 class sqlI32
          Holds a DODS Server Int32 value.
 class sqlList
          Holds a DODS Server sqlList value.
 class sqlSeq
          Holds a DODS Server Sequence value.
 class sqlString
          Holds a DODS Server String value.
 class sqlStruct
          Holds a DODS Server sqlStruct value.
 class sqlUI16
          Holds a DODS Server sqlUI16 value.
 class sqlUI32
          Holds a DODS Server sqlUI32 value.
 class sqlURL
          Holds a DODS Server sqlURL value.
 

Uses of BaseType in dods.servers.test
 

Subclasses of BaseType in dods.servers.test
 class test_SDArray
          Holds a DODS Server Array value.
 class test_SDBoolean
          Holds a DODS Server Boolean value.
 class test_SDByte
          Holds a DODS Server Byte value.
 class test_SDFloat32
          Holds a DODS Server Float32 value.
 class test_SDFloat64
          Holds a DODS Server Float64 value.
 class test_SDGrid
          Holds a DODS Server Grid value.
 class test_SDInt16
          Holds a DODS Server Int16 value.
 class test_SDInt32
          Holds a DODS Server Int32 value.
 class test_SDList
          Holds a DODS Server List value.
 class test_SDSequence
          Holds a DODS Server Sequence value.
 class test_SDString
           
 class test_SDStructure
          Holds a DODS Server Structure value.
 class test_SDUInt16
          Holds a DODS Server UInt16 value.
 class test_SDUInt32
          Holds a DODS Server UInt32 value.
 class test_SDURL
          Holds a DODS Server Byte value.
 

Methods in dods.servers.test that return BaseType
 BaseType SSFdummyval.evaluate(List args)
           
 BaseType SSFdummyval.getReturnType(List args)
           
 

Uses of BaseType in dods.servers.www
 

Subclasses of BaseType in dods.servers.www
 class wwwArray
           
 class wwwBool
           
 class wwwByte
           
 class wwwF32
           
 class wwwF64
           
 class wwwGrid
           
 class wwwI16
           
 class wwwI32
           
 class wwwList
           
 class wwwSequence
           
 class wwwString
           
 class wwwStructure
           
 class wwwUI16
           
 class wwwUI32
           
 class wwwURL
           
 

Methods in dods.servers.www with parameters of type BaseType
 void wwwOutPut.writeSimpleVar(PrintWriter pw, BaseType bt)
           
 void wwwOutPut.writeVariableAttributes(BaseType bt, DAS das)
           
 

Uses of BaseType in dods.util
 

Methods in dods.util with parameters of type BaseType
static String dasTools.fancyTypeName(BaseType bt)
           
static String dasTools.fancyTypeName(BaseType bt)
           
 

Uses of BaseType in visad.data.dods
 

Methods in visad.data.dods with parameters of type BaseType
protected static AttributeTable Adapter.attributeTable(DAS das, BaseType baseType)
          Returns the attribute table corresponding to a DODS variable.
protected static AttributeTable Adapter.attributeTable(DAS das, BaseType baseType)
          Returns the attribute table corresponding to a DODS variable.
 DataImpl VariableAdapter.data(BaseType baseType, boolean copy)
          Returns the VisAD DataImpl corresponding to the data of a DODS variable and the metaData of the DODS variable used during construction of this instance.
 DataImpl VariableAdapter.data(BaseType baseType, boolean copy)
          Returns the VisAD DataImpl corresponding to the data of a DODS variable and the metaData of the DODS variable used during construction of this instance.
 DataImpl DataFactory.data(BaseType var, DAS das, boolean copy)
          Returns the VisAD data object corresponding to a DODS variable.
 DataImpl DataFactory.data(BaseType var, DAS das, boolean copy)
          Returns the VisAD data object corresponding to a DODS variable.
protected static RealType Adapter.realType(BaseType variable, AttributeTable table)
          Returns the VisAD RealType corresponding to a DODS variable.
protected static RealType Adapter.realType(BaseType variable, AttributeTable table)
          Returns the VisAD RealType corresponding to a DODS variable.
protected static RealType Adapter.realType(BaseType variable, DAS das)
          Returns the VisAD RealType corresponding to a DODS variable.
protected static RealType Adapter.realType(BaseType variable, DAS das)
          Returns the VisAD RealType corresponding to a DODS variable.
 VariableAdapter VariableAdapterFactory.variableAdapter(BaseType var, DAS das)
          Returns the adapter corresponding to a DODS variable.
 VariableAdapter VariableAdapterFactory.variableAdapter(BaseType var, DAS das)
          Returns the adapter corresponding to a DODS variable.