visad
Interface Data

All Superinterfaces:
Thing
All Known Subinterfaces:
EarthLocation, Field, FlatFieldIface, Function, Gridded1DSetIface, GriddedSetIface, ImageSequence, LatLonPoint, NamedLocation, NavigatedField, RealIface, RealTupleIface, RemoteClientData, RemoteClientField, RemoteClientPartitionedField, RemoteClientTuple, RemoteClusterData, RemoteData, RemoteField, RemoteFlatField, RemoteFunction, RemoteNodeData, RemoteNodeField, RemoteNodePartitionedField, RemoteNodeTuple, RemoteTupleIface, SampledSetIface, SatelliteData, ScalarIface, SetIface, SimpleSetIface, SingleBandedImage, TupleIface
All Known Implementing Classes:
DataImpl, DateTime, DoubleSet, EarthLocationTuple, FieldImpl, FileField, FileFlatField, FlatField, FloatSet, FunctionImpl, Gridded1DDoubleSet, Gridded1DSet, Gridded2DDoubleSet, Gridded2DSet, Gridded3DDoubleSet, Gridded3DSet, GriddedSet, ImageSequenceImpl, Integer1DSet, Integer2DSet, Integer3DSet, IntegerNDSet, Irregular1DSet, Irregular2DSet, Irregular3DSet, IrregularSet, JamaCholeskyDecomposition, JamaEigenvalueDecomposition, JamaLUDecomposition, JamaMatrix, JamaQRDecomposition, JamaSingularValueDecomposition, LatLonTuple, Linear1DSet, Linear2DSet, Linear3DSet, LinearLatLonSet, LinearNDSet, List1DDoubleSet, List1DSet, NamedLocationTuple, NavigatedImage, ProductSet, Real, RealTuple, RemoteClientDataImpl, RemoteClientFieldImpl, RemoteClientPartitionedFieldImpl, RemoteClientTupleImpl, RemoteClusterDataImpl, RemoteDataImpl, RemoteFieldImpl, RemoteFlatFieldImpl, RemoteFunctionImpl, RemoteNodeDataImpl, RemoteNodeFieldImpl, RemoteNodePartitionedFieldImpl, RemoteNodeTupleImpl, SampledSet, SatelliteImage, Scalar, Set, SimpleSet, SingleBandedImageImpl, SingletonSet, Text, Tuple, UnionSet, UserDummyDataImpl

public interface Data
extends Thing

Data is the top-level interface of the VisAD data hierarchy. See the DataImpl class for more information.


Field Summary
static int ABS
          constants for various unary arithmetic operations
static int ACOS
           
static int ACOS_DEGREES
           
static int ADD
          constants for various binary arithmetic operations
static int ASIN
           
static int ASIN_DEGREES
           
static int ATAN
           
static int ATAN_DEGREES
           
static int ATAN2
           
static int ATAN2_DEGREES
           
static int CEIL
           
static int COS
           
static int COS_DEGREES
           
static double DEGREES_TO_RADIANS
           
static int DEPENDENT
          DEPENDENT error estimation Mode
static int DIVIDE
           
static int EXP
           
static int FLOOR
           
static int INDEPENDENT
          INDEPENDENT error estimation Mode
static int INV_ATAN2
           
static int INV_ATAN2_DEGREES
           
static int INV_DIVIDE
           
static int INV_POW
           
static int INV_REMAINDER
           
static int INV_SUBTRACT
           
static int LOG
           
static int MAX
           
static int MIN
           
static int MULTIPLY
           
static int NEAREST_NEIGHBOR
          NEAREST_NEIGHBOR resampling mode
static int NEGATE
           
static int NO_ERRORS
          NO_ERRORS error estimation Mode
static int NOP
           
static int POW
           
static double RADIANS_TO_DEGREES
          constants for angle Unit conversions
static int REMAINDER
           
static int RINT
           
static int ROUND
           
static int SIN
           
static int SIN_DEGREES
           
static int SQRT
           
static int SUBTRACT
           
static int TAN
           
static int TAN_DEGREES
           
static int WEIGHTED_AVERAGE
          WEIGHTED_AVERAGE resampling Mode
 
Method Summary
 Data abs()
          a list of unary operations using default modes for sampling (Data.NEAREST_NEIGHBOR) and error estimation (Data.NO_ERRORS)
 Data abs(int sampling_mode, int error_mode)
          a list of unary operations supporting non-default modes for sampling and error estimation
 Data acos()
           
 Data acos(int sampling_mode, int error_mode)
           
 Data acosDegrees()
           
 Data acosDegrees(int sampling_mode, int error_mode)
           
 Data add(Data data)
          a list of binary operations using default modes for sampling (Data.NEAREST_NEIGHBOR) and error estimation (Data.NO_ERRORS)
 Data add(Data data, int sampling_mode, int error_mode)
          a list of binary operations supporting non-default modes for sampling and error estimation
 Data adjustSamplingError(Data error, int error_mode)
          adjust ErrorEstimate-s for sampling errors in error; would like 'default' visibility here, but must be declared 'public' because it is defined in the Data interface
 Data asin()
           
 Data asin(int sampling_mode, int error_mode)
           
 Data asinDegrees()
           
 Data asinDegrees(int sampling_mode, int error_mode)
           
 Data atan()
           
 Data atan(int sampling_mode, int error_mode)
           
 Data atan2(Data data)
           
 Data atan2(Data data, int sampling_mode, int error_mode)
           
 Data atan2Degrees(Data data)
           
 Data atan2Degrees(Data data, int sampling_mode, int error_mode)
           
 Data atanDegrees()
           
 Data atanDegrees(int sampling_mode, int error_mode)
           
 Data binary(Data data, int op, int sampling_mode, int error_mode)
          general binary operation between this and data; op may be Data.ADD, Data.SUBTRACT, etc; these include all binary operations defined for Java primitive data types; sampling_mode may be Data.NEAREST_NEIGHBOR or Data.WEIGHTED_AVERAGE; error_mode may be Data.INDEPENDENT, Data.DEPENDENT or Data.NO_ERRORS; result takes the MathType of this unless the default Units of that MathType conflict with Units of the result, in which case a generic MathType with appropriate Units is constructed
 Data binary(Data data, int op, MathType new_type, int sampling_mode, int error_mode)
          general binary operation between this and data; op may be Data.ADD, Data.SUBTRACT, etc; these include all binary operations defined for Java primitive data types; new_type is the MathType of the result; sampling_mode may be Data.NEAREST_NEIGHBOR or Data.WEIGHTED_AVERAGE; error_mode may be Data.INDEPENDENT, Data.DEPENDENT or Data.NO_ERRORS
 Data ceil()
           
 Data ceil(int sampling_mode, int error_mode)
           
 Data changeMathType(MathType new_type)
          clone this Data object except give it new_type
 double[][] computeRanges(RealType[] reals)
          return range of values of RealType real[i] in return[i][0], return[i][1]
 DataShadow computeRanges(ShadowType type, DataShadow shadow)
          recursive version of computeRanges; would like 'default' visibility here, but must be declared 'public' because it is defined in the Data interface
 DataShadow computeRanges(ShadowType type, int n)
          compute ranges of values for each of 'n' RealType-s in DisplayImpl.RealTypeVector; would like 'default' visibility here, but must be declared 'public' because it is defined in the Data interface
 Data cos()
           
 Data cos(int sampling_mode, int error_mode)
           
 Data cosDegrees()
           
 Data cosDegrees(int sampling_mode, int error_mode)
           
 java.lang.Object dataClone()
          DataImpl.dataClone returns clone; RemoteDataImpl.dataClone returns clone inherited from UnicastRemoteObject
 Data divide(Data data)
           
 Data divide(Data data, int sampling_mode, int error_mode)
           
 Data exp()
           
 Data exp(int sampling_mode, int error_mode)
           
 Data floor()
           
 Data floor(int sampling_mode, int error_mode)
           
 MathType getType()
           
 boolean isMissing()
          a method to tell whether data object has a missing value
 DataImpl local()
          if remote (i.e., RemoteData), return a local copy; if local (i.e., DataImpl), return this
 Data log()
           
 Data log(int sampling_mode, int error_mode)
           
 java.lang.String longString()
          generates a longer string than generated by toString
 java.lang.String longString(java.lang.String pre)
          generates a longer string than generated by toString, indented by pre (a string of blanks)
 Data max(Data data)
           
 Data max(Data data, int sampling_mode, int error_mode)
           
 Data min(Data data)
           
 Data min(Data data, int sampling_mode, int error_mode)
           
 Data multiply(Data data)
           
 Data multiply(Data data, int sampling_mode, int error_mode)
           
 Data negate()
           
 Data negate(int sampling_mode, int error_mode)
           
 Data pow(Data data)
           
 Data pow(Data data, int sampling_mode, int error_mode)
           
 Data remainder(Data data)
           
 Data remainder(Data data, int sampling_mode, int error_mode)
           
 Data rint()
           
 Data rint(int sampling_mode, int error_mode)
           
 Data round()
           
 Data round(int sampling_mode, int error_mode)
           
 Data sin()
           
 Data sin(int sampling_mode, int error_mode)
           
 Data sinDegrees()
           
 Data sinDegrees(int sampling_mode, int error_mode)
           
 Data sqrt()
           
 Data sqrt(int sampling_mode, int error_mode)
           
 Data subtract(Data data)
           
 Data subtract(Data data, int sampling_mode, int error_mode)
           
 Data tan()
           
 Data tan(int sampling_mode, int error_mode)
           
 Data tanDegrees()
           
 Data tanDegrees(int sampling_mode, int error_mode)
           
 Data unary(int op, int sampling_mode, int error_mode)
          general unary operation; operation may be Data.ABS, Data.ACOS, etc; these include all unary operations defined for Java primitive data types; sampling_mode may be Data.NEAREST_NEIGHBOR or Data.WEIGHTED_AVERAGE; error_mode may be Data.INDEPENDENT, Data.DEPENDENT or Data.NO_ERRORS; result takes the MathType of this unless the default Units of that MathType conflict with Units of the result, in which case a generic MathType with appropriate Units is constructed
 Data unary(int op, MathType new_type, int sampling_mode, int error_mode)
          general unary operation; operation may be Data.ABS, Data.ACOS, etc; these include all unary operations defined for Java primitive data types; new_type is the MathType of the result; sampling_mode may be Data.NEAREST_NEIGHBOR or Data.WEIGHTED_AVERAGE; error_mode may be Data.INDEPENDENT, Data.DEPENDENT or Data.NO_ERRORS
 
Methods inherited from interface visad.Thing
addReference, removeReference
 

Field Detail

NEAREST_NEIGHBOR

static final int NEAREST_NEIGHBOR
NEAREST_NEIGHBOR resampling mode

See Also:
Constant Field Values

WEIGHTED_AVERAGE

static final int WEIGHTED_AVERAGE
WEIGHTED_AVERAGE resampling Mode

See Also:
Constant Field Values

INDEPENDENT

static final int INDEPENDENT
INDEPENDENT error estimation Mode

See Also:
Constant Field Values

DEPENDENT

static final int DEPENDENT
DEPENDENT error estimation Mode

See Also:
Constant Field Values

NO_ERRORS

static final int NO_ERRORS
NO_ERRORS error estimation Mode

See Also:
Constant Field Values

ADD

static final int ADD
constants for various binary arithmetic operations

See Also:
Constant Field Values

SUBTRACT

static final int SUBTRACT
See Also:
Constant Field Values

INV_SUBTRACT

static final int INV_SUBTRACT
See Also:
Constant Field Values

MULTIPLY

static final int MULTIPLY
See Also:
Constant Field Values

DIVIDE

static final int DIVIDE
See Also:
Constant Field Values

INV_DIVIDE

static final int INV_DIVIDE
See Also:
Constant Field Values

POW

static final int POW
See Also:
Constant Field Values

INV_POW

static final int INV_POW
See Also:
Constant Field Values

MAX

static final int MAX
See Also:
Constant Field Values

MIN

static final int MIN
See Also:
Constant Field Values

ATAN2

static final int ATAN2
See Also:
Constant Field Values

ATAN2_DEGREES

static final int ATAN2_DEGREES
See Also:
Constant Field Values

INV_ATAN2

static final int INV_ATAN2
See Also:
Constant Field Values

INV_ATAN2_DEGREES

static final int INV_ATAN2_DEGREES
See Also:
Constant Field Values

REMAINDER

static final int REMAINDER
See Also:
Constant Field Values

INV_REMAINDER

static final int INV_REMAINDER
See Also:
Constant Field Values

ABS

static final int ABS
constants for various unary arithmetic operations

See Also:
Constant Field Values

ACOS

static final int ACOS
See Also:
Constant Field Values

ACOS_DEGREES

static final int ACOS_DEGREES
See Also:
Constant Field Values

ASIN

static final int ASIN
See Also:
Constant Field Values

ASIN_DEGREES

static final int ASIN_DEGREES
See Also:
Constant Field Values

ATAN

static final int ATAN
See Also:
Constant Field Values

ATAN_DEGREES

static final int ATAN_DEGREES
See Also:
Constant Field Values

CEIL

static final int CEIL
See Also:
Constant Field Values

COS

static final int COS
See Also:
Constant Field Values

COS_DEGREES

static final int COS_DEGREES
See Also:
Constant Field Values

EXP

static final int EXP
See Also:
Constant Field Values

FLOOR

static final int FLOOR
See Also:
Constant Field Values

LOG

static final int LOG
See Also:
Constant Field Values

RINT

static final int RINT
See Also:
Constant Field Values

ROUND

static final int ROUND
See Also:
Constant Field Values

SIN

static final int SIN
See Also:
Constant Field Values

SIN_DEGREES

static final int SIN_DEGREES
See Also:
Constant Field Values

SQRT

static final int SQRT
See Also:
Constant Field Values

TAN

static final int TAN
See Also:
Constant Field Values

TAN_DEGREES

static final int TAN_DEGREES
See Also:
Constant Field Values

NEGATE

static final int NEGATE
See Also:
Constant Field Values

NOP

static final int NOP
See Also:
Constant Field Values

RADIANS_TO_DEGREES

static final double RADIANS_TO_DEGREES
constants for angle Unit conversions

See Also:
Constant Field Values

DEGREES_TO_RADIANS

static final double DEGREES_TO_RADIANS
See Also:
Constant Field Values
Method Detail

local

DataImpl local()
               throws VisADException,
                      java.rmi.RemoteException
if remote (i.e., RemoteData), return a local copy; if local (i.e., DataImpl), return this

Throws:
VisADException
java.rmi.RemoteException

getType

MathType getType()
                 throws VisADException,
                        java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

isMissing

boolean isMissing()
                  throws VisADException,
                         java.rmi.RemoteException
a method to tell whether data object has a missing value

Throws:
VisADException
java.rmi.RemoteException

binary

Data binary(Data data,
            int op,
            int sampling_mode,
            int error_mode)
            throws VisADException,
                   java.rmi.RemoteException
general binary operation between this and data; op may be Data.ADD, Data.SUBTRACT, etc; these include all binary operations defined for Java primitive data types; sampling_mode may be Data.NEAREST_NEIGHBOR or Data.WEIGHTED_AVERAGE; error_mode may be Data.INDEPENDENT, Data.DEPENDENT or Data.NO_ERRORS; result takes the MathType of this unless the default Units of that MathType conflict with Units of the result, in which case a generic MathType with appropriate Units is constructed

Throws:
VisADException
java.rmi.RemoteException

binary

Data binary(Data data,
            int op,
            MathType new_type,
            int sampling_mode,
            int error_mode)
            throws VisADException,
                   java.rmi.RemoteException
general binary operation between this and data; op may be Data.ADD, Data.SUBTRACT, etc; these include all binary operations defined for Java primitive data types; new_type is the MathType of the result; sampling_mode may be Data.NEAREST_NEIGHBOR or Data.WEIGHTED_AVERAGE; error_mode may be Data.INDEPENDENT, Data.DEPENDENT or Data.NO_ERRORS

Throws:
VisADException
java.rmi.RemoteException

add

Data add(Data data)
         throws VisADException,
                java.rmi.RemoteException
a list of binary operations using default modes for sampling (Data.NEAREST_NEIGHBOR) and error estimation (Data.NO_ERRORS)

Throws:
VisADException
java.rmi.RemoteException

subtract

Data subtract(Data data)
              throws VisADException,
                     java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

multiply

Data multiply(Data data)
              throws VisADException,
                     java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

divide

Data divide(Data data)
            throws VisADException,
                   java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

pow

Data pow(Data data)
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

max

Data max(Data data)
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

min

Data min(Data data)
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

atan2

Data atan2(Data data)
           throws VisADException,
                  java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

atan2Degrees

Data atan2Degrees(Data data)
                  throws VisADException,
                         java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

remainder

Data remainder(Data data)
               throws VisADException,
                      java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

add

Data add(Data data,
         int sampling_mode,
         int error_mode)
         throws VisADException,
                java.rmi.RemoteException
a list of binary operations supporting non-default modes for sampling and error estimation

Throws:
VisADException
java.rmi.RemoteException

subtract

Data subtract(Data data,
              int sampling_mode,
              int error_mode)
              throws VisADException,
                     java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

multiply

Data multiply(Data data,
              int sampling_mode,
              int error_mode)
              throws VisADException,
                     java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

divide

Data divide(Data data,
            int sampling_mode,
            int error_mode)
            throws VisADException,
                   java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

pow

Data pow(Data data,
         int sampling_mode,
         int error_mode)
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

max

Data max(Data data,
         int sampling_mode,
         int error_mode)
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

min

Data min(Data data,
         int sampling_mode,
         int error_mode)
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

atan2

Data atan2(Data data,
           int sampling_mode,
           int error_mode)
           throws VisADException,
                  java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

atan2Degrees

Data atan2Degrees(Data data,
                  int sampling_mode,
                  int error_mode)
                  throws VisADException,
                         java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

remainder

Data remainder(Data data,
               int sampling_mode,
               int error_mode)
               throws VisADException,
                      java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

unary

Data unary(int op,
           int sampling_mode,
           int error_mode)
           throws VisADException,
                  java.rmi.RemoteException
general unary operation; operation may be Data.ABS, Data.ACOS, etc; these include all unary operations defined for Java primitive data types; sampling_mode may be Data.NEAREST_NEIGHBOR or Data.WEIGHTED_AVERAGE; error_mode may be Data.INDEPENDENT, Data.DEPENDENT or Data.NO_ERRORS; result takes the MathType of this unless the default Units of that MathType conflict with Units of the result, in which case a generic MathType with appropriate Units is constructed

Throws:
VisADException
java.rmi.RemoteException

unary

Data unary(int op,
           MathType new_type,
           int sampling_mode,
           int error_mode)
           throws VisADException,
                  java.rmi.RemoteException
general unary operation; operation may be Data.ABS, Data.ACOS, etc; these include all unary operations defined for Java primitive data types; new_type is the MathType of the result; sampling_mode may be Data.NEAREST_NEIGHBOR or Data.WEIGHTED_AVERAGE; error_mode may be Data.INDEPENDENT, Data.DEPENDENT or Data.NO_ERRORS

Throws:
VisADException
java.rmi.RemoteException

changeMathType

Data changeMathType(MathType new_type)
                    throws VisADException,
                           java.rmi.RemoteException
clone this Data object except give it new_type

Throws:
VisADException
java.rmi.RemoteException

abs

Data abs()
         throws VisADException,
                java.rmi.RemoteException
a list of unary operations using default modes for sampling (Data.NEAREST_NEIGHBOR) and error estimation (Data.NO_ERRORS)

Throws:
VisADException
java.rmi.RemoteException

acos

Data acos()
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

acosDegrees

Data acosDegrees()
                 throws VisADException,
                        java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

asin

Data asin()
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

asinDegrees

Data asinDegrees()
                 throws VisADException,
                        java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

atan

Data atan()
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

atanDegrees

Data atanDegrees()
                 throws VisADException,
                        java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

ceil

Data ceil()
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

cos

Data cos()
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

cosDegrees

Data cosDegrees()
                throws VisADException,
                       java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

exp

Data exp()
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

floor

Data floor()
           throws VisADException,
                  java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

log

Data log()
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

rint

Data rint()
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

round

Data round()
           throws VisADException,
                  java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

sin

Data sin()
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

sinDegrees

Data sinDegrees()
                throws VisADException,
                       java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

sqrt

Data sqrt()
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

tan

Data tan()
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

tanDegrees

Data tanDegrees()
                throws VisADException,
                       java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

negate

Data negate()
            throws VisADException,
                   java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

abs

Data abs(int sampling_mode,
         int error_mode)
         throws VisADException,
                java.rmi.RemoteException
a list of unary operations supporting non-default modes for sampling and error estimation

Throws:
VisADException
java.rmi.RemoteException

acos

Data acos(int sampling_mode,
          int error_mode)
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

acosDegrees

Data acosDegrees(int sampling_mode,
                 int error_mode)
                 throws VisADException,
                        java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

asin

Data asin(int sampling_mode,
          int error_mode)
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

asinDegrees

Data asinDegrees(int sampling_mode,
                 int error_mode)
                 throws VisADException,
                        java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

atan

Data atan(int sampling_mode,
          int error_mode)
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

atanDegrees

Data atanDegrees(int sampling_mode,
                 int error_mode)
                 throws VisADException,
                        java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

ceil

Data ceil(int sampling_mode,
          int error_mode)
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

cos

Data cos(int sampling_mode,
         int error_mode)
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

cosDegrees

Data cosDegrees(int sampling_mode,
                int error_mode)
                throws VisADException,
                       java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

exp

Data exp(int sampling_mode,
         int error_mode)
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

floor

Data floor(int sampling_mode,
           int error_mode)
           throws VisADException,
                  java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

log

Data log(int sampling_mode,
         int error_mode)
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

rint

Data rint(int sampling_mode,
          int error_mode)
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

round

Data round(int sampling_mode,
           int error_mode)
           throws VisADException,
                  java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

sin

Data sin(int sampling_mode,
         int error_mode)
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

sinDegrees

Data sinDegrees(int sampling_mode,
                int error_mode)
                throws VisADException,
                       java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

sqrt

Data sqrt(int sampling_mode,
          int error_mode)
          throws VisADException,
                 java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

tan

Data tan(int sampling_mode,
         int error_mode)
         throws VisADException,
                java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

tanDegrees

Data tanDegrees(int sampling_mode,
                int error_mode)
                throws VisADException,
                       java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

negate

Data negate(int sampling_mode,
            int error_mode)
            throws VisADException,
                   java.rmi.RemoteException
Throws:
VisADException
java.rmi.RemoteException

computeRanges

double[][] computeRanges(RealType[] reals)
                         throws VisADException,
                                java.rmi.RemoteException
return range of values of RealType real[i] in return[i][0], return[i][1]

Throws:
VisADException
java.rmi.RemoteException

computeRanges

DataShadow computeRanges(ShadowType type,
                         int n)
                         throws VisADException,
                                java.rmi.RemoteException
compute ranges of values for each of 'n' RealType-s in DisplayImpl.RealTypeVector; would like 'default' visibility here, but must be declared 'public' because it is defined in the Data interface

Throws:
VisADException
java.rmi.RemoteException

computeRanges

DataShadow computeRanges(ShadowType type,
                         DataShadow shadow)
                         throws VisADException,
                                java.rmi.RemoteException
recursive version of computeRanges; would like 'default' visibility here, but must be declared 'public' because it is defined in the Data interface

Throws:
VisADException
java.rmi.RemoteException

adjustSamplingError

Data adjustSamplingError(Data error,
                         int error_mode)
                         throws VisADException,
                                java.rmi.RemoteException
adjust ErrorEstimate-s for sampling errors in error; would like 'default' visibility here, but must be declared 'public' because it is defined in the Data interface

Throws:
VisADException
java.rmi.RemoteException

longString

java.lang.String longString()
                            throws VisADException,
                                   java.rmi.RemoteException
generates a longer string than generated by toString

Throws:
VisADException
java.rmi.RemoteException

longString

java.lang.String longString(java.lang.String pre)
                            throws VisADException,
                                   java.rmi.RemoteException
generates a longer string than generated by toString, indented by pre (a string of blanks)

Throws:
VisADException
java.rmi.RemoteException

dataClone

java.lang.Object dataClone()
                           throws java.rmi.RemoteException
DataImpl.dataClone returns clone; RemoteDataImpl.dataClone returns clone inherited from UnicastRemoteObject

Throws:
java.rmi.RemoteException