Serialized Form


Package opendap.dap

Class opendap.dap.Alias extends Attribute implements Serializable

Serialized Fields

aliasedToAttributeNamed

String aliasedToAttributeNamed
If is_alias is true, the name of the Attribute we are aliased to.


targetAttribute

Attribute targetAttribute
The Attribute to which this Alias points.


targetVariable

BaseType targetVariable
The BaseType variable that contains the Attribute to which this Alias points.

Class opendap.dap.Attribute extends DAPNode implements Serializable

Serialized Fields

type

int type
The type of the attribute.


attr

Object attr
Either an AttributeTable or a Vector of String.

Class opendap.dap.AttributeBadValueException extends DASException implements Serializable

Class opendap.dap.AttributeExistsException extends DASException implements Serializable

Class opendap.dap.AttributeTable extends DAPNode implements Serializable

Serialized Fields

_attr

SortedTable _attr
A table of Attributes with their names as a key

Class opendap.dap.BadSemanticsException extends DDSException implements Serializable

Class opendap.dap.BaseType extends DAPNode implements Serializable

Serialized Fields

_attr

Attribute _attr
The Attribute Table used to contain attributes specific to this instance of a BaseType variable. This is the repository for "Semantic Metadata"


_attrTbl

AttributeTable _attrTbl

Class opendap.dap.BaseTypePrimitiveVector extends PrimitiveVector implements Serializable

Serialized Fields

vals

BaseType[] vals
the array of BaseType values.

Class opendap.dap.BooleanPrimitiveVector extends PrimitiveVector implements Serializable

Serialized Fields

vals

boolean[] vals
the array of float values.

Class opendap.dap.BytePrimitiveVector extends PrimitiveVector implements Serializable

Serialized Fields

vals

byte[] vals
the array of byte values.

Class opendap.dap.ConstraintException extends RuntimeException implements Serializable

Class opendap.dap.DAP2Exception extends Exception implements Serializable

Serialized Fields

errorCode

int errorCode
The error code.

 

errorMessage

String errorMessage
The error message.

 

programType

int programType
The program type.

 

programSource

String programSource
The program source. if programType is TCL_PROGRAM, then this is ASCII text. Otherwise, undefined (this will need to become a byte[] array if the server sends Java bytecodes, for example).

 

Class opendap.dap.DAPNode extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

_name

String _name
The name of this variable - not www enccoded


_nameEncoded

String _nameEncoded

_myParent

DAPNode _myParent
The parent (container class) of this object, if one exists


projected

boolean projected
Track if this variable is being used as part of a projection.


_attr

Attribute _attr
The Attribute Table used to contain attributes specific to this instance of a BaseType variable. This is the repository for "Semantic Metadata"


_attrTbl

AttributeTable _attrTbl

Class opendap.dap.DArray extends DVector implements Serializable

Serialized Fields

dimVector

Vector<E> dimVector
A Vector of DArrayDimension information (i.e. the shape)

Class opendap.dap.DArrayDimension extends DAPNode implements Serializable

Serialized Fields

decl

DArrayDimension.Slice decl

projection

DArrayDimension.Slice projection

container

DArray container

Class opendap.dap.DAS extends AttributeTable implements Serializable

Serialized Fields

currentAT

AttributeTable currentAT

currentAlias

Alias currentAlias

factory

BaseTypeFactory factory

Class opendap.dap.DASException extends DAP2Exception implements Serializable

Class opendap.dap.DataDDS extends DDS implements Serializable

Serialized Fields

ver

ServerVersion ver
The ServerVersion returned from the open OPeNDAP connection.

Class opendap.dap.DataReadException extends DDSException implements Serializable

Class opendap.dap.DByte extends BaseType implements Serializable

Serialized Fields

val

byte val
The value of this DByte.

Class opendap.dap.DConstructor extends BaseType implements Serializable

Class opendap.dap.DDS extends DStructure implements Serializable

Serialized Fields

currentBT

BaseType currentBT

currentAT

AttributeTable currentAT

factory

BaseTypeFactory factory
Factory for new DAP variables.


schemaLocation

String schemaLocation

_dataBlobID

String _dataBlobID

url

String url

Class opendap.dap.DDSException extends DAP2Exception implements Serializable

Class opendap.dap.DefaultFactory extends Object implements Serializable

serialVersionUID: 1L

Class opendap.dap.DFloat32 extends BaseType implements Serializable

Serialized Fields

val

float val
The value of this DFloat32.

Class opendap.dap.DFloat64 extends BaseType implements Serializable

Serialized Fields

val

double val
The value of this DFloat64.

Class opendap.dap.DGrid extends DConstructor implements Serializable

Serialized Fields

arrayVar

DArray arrayVar
The Array component of this DGrid.


mapVars

Vector<E> mapVars
The Map component of this DGrid.

Class opendap.dap.DInt16 extends BaseType implements Serializable

Serialized Fields

val

short val
The value of this DInt16.

Class opendap.dap.DInt32 extends BaseType implements Serializable

Serialized Fields

val

int val
The value of this DInt32.

Class opendap.dap.DList extends DVector implements Serializable

Class opendap.dap.DSequence extends DConstructor implements Serializable

Serialized Fields

varTemplate

Vector<E> varTemplate
The variables in this DSequence, stored in a Vector of BaseType objects and used as a template for deserialize.


allValues

Vector<E> allValues
The values in this DSequence, stored as a Vector of Vector of BaseType objects.


level

int level
Level number in a multilevel sequence.

Class opendap.dap.DString extends BaseType implements Serializable

Serialized Fields

hasValue

boolean hasValue

val

String val
The value of this DString.

Class opendap.dap.DStructure extends DConstructor implements Serializable

Serialized Fields

vars

Vector<E> vars
The variables in this DStructure, stored in a Vector of BaseType objects.

Class opendap.dap.DUInt16 extends DInt16 implements Serializable

Class opendap.dap.DUInt32 extends DInt32 implements Serializable

Class opendap.dap.DURL extends DString implements Serializable

Class opendap.dap.DVector extends BaseType implements Serializable

Serialized Fields

vals

PrimitiveVector vals
The values in this DVector, stored in a PrimitiveVector.


containedvar

BaseType containedvar
The variable of which we are the parent

Class opendap.dap.Float32PrimitiveVector extends PrimitiveVector implements Serializable

serialVersionUID: 1L

Serialized Fields

vals

float[] vals
the array of float values.

Class opendap.dap.Float64PrimitiveVector extends PrimitiveVector implements Serializable

Serialized Fields

vals

double[] vals
the array of double values.

Class opendap.dap.Int16PrimitiveVector extends PrimitiveVector implements Serializable

Serialized Fields

vals

short[] vals
the array of short values.

Class opendap.dap.Int32PrimitiveVector extends PrimitiveVector implements Serializable

Serialized Fields

vals

int[] vals
the array of int values.

Class opendap.dap.InvalidDimensionException extends DAP2Exception implements Serializable

Class opendap.dap.MalformedAliasException extends DASException implements Serializable

Class opendap.dap.NoSuchAttributeException extends DASException implements Serializable

Class opendap.dap.NoSuchFunctionException extends DDSException implements Serializable

Class opendap.dap.NoSuchTypeException extends DDSException implements Serializable

Class opendap.dap.NoSuchVariableException extends DDSException implements Serializable

Class opendap.dap.PrimitiveVector extends DAPNode implements Serializable

Serialized Fields

var

BaseType var
Template variable to use for printDecl and deserialize (BaseTypePrimitiveVector only).

Class opendap.dap.ServerVersion extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

major

int major
Major version number.


minor

int minor
Minor version number.


subminor

int subminor
Sub-Minor version number.


versionString

String versionString
Full version string.

Class opendap.dap.UInt16PrimitiveVector extends Int16PrimitiveVector implements Serializable

Class opendap.dap.UInt32PrimitiveVector extends Int32PrimitiveVector implements Serializable

Class opendap.dap.UnresolvedAliasException extends DASException implements Serializable


Package opendap.dap.parsers

Class opendap.dap.parsers.ParseException extends IOException implements Serializable


Package opendap.Server

Class opendap.Server.DAP2ServerSideException extends DAP2Exception implements Serializable

Class opendap.Server.InvalidOperatorException extends DAP2ServerSideException implements Serializable

Class opendap.Server.InvalidParameterException extends DAP2ServerSideException implements Serializable

Class opendap.Server.RegExpException extends DAP2ServerSideException implements Serializable

Class opendap.Server.SBHException extends DAP2ServerSideException implements Serializable

Class opendap.Server.SDArray extends DArray implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDByte extends DByte implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDFloat32 extends DFloat32 implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDFloat64 extends DFloat64 implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDGrid extends DGrid implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

AP

Vector<E> AP

Class opendap.Server.SDInt16 extends DInt16 implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDInt32 extends DInt32 implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDList extends DList implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDSequence extends DSequence implements Serializable

Serialized Fields

_Debug

boolean _Debug

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDString extends DString implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDStructure extends DStructure implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDUInt16 extends DUInt16 implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDUInt32 extends DUInt32 implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.SDURL extends DURL implements Serializable

Serialized Fields

Synthesized

boolean Synthesized

ReadMe

boolean ReadMe

Class opendap.Server.ServerDDS extends DDS implements Serializable

Class opendap.Server.SSFunctionException extends DAP2ServerSideException implements Serializable

Class opendap.Server.WrongTypeException extends DAP2ServerSideException implements Serializable


Package opendap.servlet

Class opendap.servlet.AbstractServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

allowDeflate

boolean allowDeflate

track

boolean track
************************************************************************ Debugging


syncLock

Object syncLock
************************************************************************ Used for thread syncronization.

 

HitCounter

int HitCounter
************************************************************************ Count "hits" on the server...

 

prArr

ArrayList<E> prArr

Class opendap.servlet.BadURLException extends DAP2Exception implements Serializable


Package opendap.servlet.ascii

Class opendap.servlet.ascii.asciiArray extends DArray implements Serializable

Class opendap.servlet.ascii.asciiByte extends DByte implements Serializable

Class opendap.servlet.ascii.asciiF32 extends DFloat32 implements Serializable

Class opendap.servlet.ascii.asciiF64 extends DFloat64 implements Serializable

Class opendap.servlet.ascii.asciiGrid extends DGrid implements Serializable

Class opendap.servlet.ascii.asciiI16 extends DInt16 implements Serializable

Class opendap.servlet.ascii.asciiI32 extends DInt32 implements Serializable

Class opendap.servlet.ascii.asciiSeq extends DSequence implements Serializable

Class opendap.servlet.ascii.asciiString extends DString implements Serializable

Class opendap.servlet.ascii.asciiStructure extends DStructure implements Serializable

Class opendap.servlet.ascii.asciiUI16 extends DUInt16 implements Serializable

Class opendap.servlet.ascii.asciiUI32 extends DUInt32 implements Serializable

Class opendap.servlet.ascii.asciiURL extends DURL implements Serializable


Package opendap.servlet.www

Class opendap.servlet.www.wwwArray extends DArray implements Serializable

Class opendap.servlet.www.wwwByte extends DByte implements Serializable

Class opendap.servlet.www.wwwF32 extends DFloat32 implements Serializable

Class opendap.servlet.www.wwwF64 extends DFloat64 implements Serializable

Class opendap.servlet.www.wwwGrid extends DGrid implements Serializable

Class opendap.servlet.www.wwwI16 extends DInt16 implements Serializable

Class opendap.servlet.www.wwwI32 extends DInt32 implements Serializable

Class opendap.servlet.www.wwwSequence extends DSequence implements Serializable

Class opendap.servlet.www.wwwString extends DString implements Serializable

Class opendap.servlet.www.wwwStructure extends DStructure implements Serializable

Class opendap.servlet.www.wwwUI16 extends DUInt16 implements Serializable

Class opendap.servlet.www.wwwUI32 extends DUInt32 implements Serializable

Class opendap.servlet.www.wwwURL extends DURL implements Serializable


Package opendap.tools

Class opendap.tools.GeturlApplet extends Object implements Serializable

Class opendap.tools.GeturlFrame extends Frame implements Serializable

Serialized Fields

isApplet

boolean isApplet
True if we are an applet.


urlField

TextField urlField
The TextField containing the URL to retrieve.


outputArea

TextArea outputArea
The TextArea where output should be written.


getDASButton

Button getDASButton
The "Get DAS", "Get DDS", and "Get Data" buttons.


getDDSButton

Button getDDSButton
The "Get DAS", "Get DDS", and "Get Data" buttons.


getDataButton

Button getDataButton
The "Get DAS", "Get DDS", and "Get Data" buttons.

Class opendap.tools.StatusWindow extends Frame implements Serializable

Serialized Fields

urlLabel

Label urlLabel
The Label showing the OPeNDAP URL being downloaded.


bytesRead

int bytesRead
The number of bytes downloaded so far.


startTime

long startTime
The start time in milliseconds.


lastUpdateTime

long lastUpdateTime
The last time the transfer rate was updated, in milliseconds.


cancelPushed

boolean cancelPushed
Has the cancel button been pushed by the user?


bytesReadLabel

Label bytesReadLabel
The Label showing the number of bytes read


transferRateLabel

Label transferRateLabel
The Label showing the current transfer rate


cancelButton

Button cancelButton
The cancel button. (NOTE: synchronize methods which access this!)


nf

NumberFormat nf
The NumberFormat object used for writing floating point labels.


Package opendap.util

Class opendap.util.InvalidSwitch extends Throwable implements Serializable

Class opendap.util.SortedTable extends Dictionary implements Serializable

serialVersionUID: 1L

Serialized Fields

keys

Vector<E> keys

elements

Vector<E> elements

Package thredds.bufrtables

Class thredds.bufrtables.BtServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

log

org.slf4j.Logger log

cdmValidateCache

DiskCache2 cdmValidateCache

factory

org.apache.commons.fileupload.disk.DiskFileItemFactory factory

cacheDir

File cacheDir

maxFileUploadSize

long maxFileUploadSize

allow

boolean allow

deleteImmediately

boolean deleteImmediately

contentPath

String contentPath

Package thredds.catalog2.builder

Class thredds.catalog2.builder.BuilderException extends Exception implements Serializable

Serialized Fields

issues

BuilderIssues issues

Package thredds.catalog2.xml.parser

Class thredds.catalog2.xml.parser.ThreddsXmlParserException extends Exception implements Serializable

Serialized Fields

issues

List<E> issues

Package thredds.catalog2.xml.writer

Class thredds.catalog2.xml.writer.ThreddsXmlWriterException extends Exception implements Serializable


Package thredds.filesystem

Class thredds.filesystem.CacheDirectory extends CacheFile implements Serializable

Serialized Fields

parentDirName

String parentDirName

children

CacheFile[] children

Class thredds.filesystem.CacheDirectoryProto extends Object implements Serializable

serialVersionUID: 7526472295622776147L

Serialization Methods

readExternal

public void readExternal(ObjectInput in)
                  throws IOException,
                         ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeExternal

public void writeExternal(ObjectOutput out)
                   throws IOException
Throws:
IOException

Class thredds.filesystem.CacheFile extends Object implements Serializable

Serialized Fields

shortName

String shortName

lastModified

long lastModified

length

long length

isDirectory

boolean isDirectory

att

HashMap<K,V> att

Class thredds.filesystem.CacheFileProto extends Object implements Serializable

serialVersionUID: 7526472295622776147L

Serialization Methods

readExternal

public void readExternal(ObjectInput in)
                  throws IOException,
                         ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeExternal

public void writeExternal(ObjectOutput out)
                   throws IOException
Throws:
IOException

Class thredds.filesystem.FileSystemProto.Attribute extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

name_

Object name_

type_

FileSystemProto.Attribute.Type type_

len_

int len_

data_

com.google.protobuf.ByteString data_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class thredds.filesystem.FileSystemProto.Directory extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

path_

Object path_

lastModified_

long lastModified_

files_

List<E> files_

atts_

List<E> atts_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class thredds.filesystem.FileSystemProto.File extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

name_

Object name_

lastModified_

long lastModified_

length_

long length_

isDirectory_

boolean isDirectory_

atts_

List<E> atts_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Package thredds.inventory

Class thredds.inventory.DatasetCollectionManager.TriggerEvent extends EventObject implements Serializable

Serialized Fields

message

String message

Package thredds.wcs.v1_0_0_1

Class thredds.wcs.v1_0_0_1.WcsException extends Exception implements Serializable

Serialized Fields

code

WcsException.Code code

locator

String locator

textMessages

List<E> textMessages

Package thredds.wcs.v1_0_0_Plus

Class thredds.wcs.v1_0_0_Plus.WcsException extends Exception implements Serializable

Serialized Fields

code

WcsException.Code code

locator

String locator

textMessages

List<E> textMessages

Package thredds.wcs.v1_1_0

Class thredds.wcs.v1_1_0.WcsException extends Exception implements Serializable

Serialized Fields

code

WcsException.Code code

locator

String locator

textMessages

List<E> textMessages

Package ucar.atd.dorade

Class ucar.atd.dorade.DoradeSweep.DoradeSweepException extends Exception implements Serializable

Class ucar.atd.dorade.DoradeSweep.MovingSensorException extends Exception implements Serializable


Package ucar.grib

Class ucar.grib.NotSupportedException extends IOException implements Serializable

Class ucar.grib.NoValidGribException extends Exception implements Serializable


Package ucar.jpeg.colorspace

Class ucar.jpeg.colorspace.ColorSpaceException extends Exception implements Serializable


Package ucar.jpeg.colorspace.boxes

Class ucar.jpeg.colorspace.boxes.JP2Box.BoxType extends Hashtable implements Serializable


Package ucar.jpeg.icc

Class ucar.jpeg.icc.ICCProfileException extends Exception implements Serializable

Class ucar.jpeg.icc.ICCProfileInvalidException extends ICCProfileException implements Serializable

Class ucar.jpeg.icc.ICCProfileNotFoundException extends ICCProfileException implements Serializable


Package ucar.jpeg.icc.lut

Class ucar.jpeg.icc.lut.MatrixBasedTransformException extends Exception implements Serializable

Class ucar.jpeg.icc.lut.MonochromeTransformException extends Exception implements Serializable


Package ucar.jpeg.icc.tags

Class ucar.jpeg.icc.tags.ICCTagTable extends Hashtable implements Serializable

Serialized Fields

trios

Vector<E> trios

tagCount

int tagCount

Package ucar.jpeg.jj2000.disp

Class ucar.jpeg.jj2000.disp.ImgScrollPane extends Container implements Serializable

Serialized Fields

hsbar

ucar.jpeg.jj2000.disp.ImgScrollPane.ISPScrollbar hsbar
The horizontal scrollbar.

 

vsbar

ucar.jpeg.jj2000.disp.ImgScrollPane.ISPScrollbar vsbar
The vertical scrollabr.

 

imgDisplay

ucar.jpeg.jj2000.disp.ImgScrollPane.ImageScrollDisplay imgDisplay
The image display

 

sbType

int sbType
The scrollbar type (always, as needed, etc.)

 

zoom

float zoom
The zoom to use in displaying the image. A factor larger than one produces a zoom in effect.

 

lastZoom

float lastZoom
The zoom used in the last scrollbar calculation.

 

lastSize

Dimension lastSize
The viewable size used in the last scrollbar calculation.

 

copyScroll

boolean copyScroll
If scrolling is to be done by copying ot not. If not done by copying everything is redrawn.

 

Package ucar.jpeg.jj2000.j2k

Class ucar.jpeg.jj2000.j2k.NoNextElementException extends RuntimeException implements Serializable

Class ucar.jpeg.jj2000.j2k.NotImplementedError extends Error implements Serializable


Package ucar.jpeg.jj2000.j2k.codestream

Class ucar.jpeg.jj2000.j2k.codestream.CorruptedCodestreamException extends IOException implements Serializable


Package ucar.jpeg.jj2000.j2k.decoder

Class ucar.jpeg.jj2000.j2k.decoder.SimpleAppletDecoder extends Applet implements Serializable

Serialized Fields

dec

Decoder dec
The decoder


pl

ParameterList pl
The parameter list to give to the decoder


decThread

Thread decThread
The thread where the decoder is run


decStarted

boolean decStarted
If the decoder thread has already been started


isp

ImgScrollPane isp
Where the image is displayed


Package ucar.jpeg.jj2000.j2k.util

Class ucar.jpeg.jj2000.j2k.util.ParameterList extends Properties implements Serializable

Class ucar.jpeg.jj2000.j2k.util.StringFormatException extends IllegalArgumentException implements Serializable


Package ucar.ma2

Class ucar.ma2.ForbiddenConversionException extends RuntimeException implements Serializable

Class ucar.ma2.InvalidRangeException extends Exception implements Serializable


Package ucar.nc2.ft.fmrc

Class ucar.nc2.ft.fmrc.FmrcInvLite extends Object implements Serializable

Serialized Fields

collectionName

String collectionName

base

Date base

nruns

int nruns

runOffset

double[] runOffset

forecastOffset

double[] forecastOffset

offsets

double[] offsets

locationList

List<E> locationList

locationMap

Map<K,V> locationMap

gridSets

List<E> gridSets

invList

List<E> invList

Class ucar.nc2.ft.fmrc.FmrcInvLite.Gridset extends Object implements Serializable

Serialized Fields

gridsetName

String gridsetName

grids

List<E> grids

noffsets

int noffsets

timeOffset

double[] timeOffset

timeBounds

double[] timeBounds

timeCoordMap

Map<K,V> timeCoordMap

Class ucar.nc2.ft.fmrc.FmrcInvLite.Gridset.Grid extends Object implements Serializable

Serialized Fields

name

String name

inv

FmrcInvLite.Gridset.GridInventory inv

Class ucar.nc2.ft.fmrc.FmrcInvLite.Gridset.GridInventory extends Object implements Serializable

Serialized Fields

location

int[] location

invIndex

int[] invIndex

Package ucar.nc2.ft.point.remote

Class ucar.nc2.ft.point.remote.PointStreamProto.Location extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

time_

double time_

lat_

double lat_

lon_

double lon_

alt_

double alt_

nomTime_

double nomTime_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.ft.point.remote.PointStreamProto.Member extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

name_

Object name_

desc_

Object desc_

units_

Object units_

dataType_

NcStreamProto.DataType dataType_

section_

NcStreamProto.Section section_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.ft.point.remote.PointStreamProto.PointFeature extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

loc_

PointStreamProto.Location loc_

data_

com.google.protobuf.ByteString data_

sdata_

com.google.protobuf.LazyStringList sdata_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.ft.point.remote.PointStreamProto.PointFeatureCollection extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

name_

Object name_

timeUnit_

Object timeUnit_

members_

List<E> members_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.ft.point.remote.PointStreamProto.Station extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

id_

Object id_

lat_

double lat_

lon_

double lon_

alt_

double alt_

desc_

Object desc_

wmoId_

Object wmoId_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.ft.point.remote.PointStreamProto.StationList extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

stations_

List<E> stations_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Package ucar.nc2.iosp.fysat

Class ucar.nc2.iosp.fysat.UnsupportedDatasetException extends IOException implements Serializable

serialVersionUID: 1L


Package ucar.nc2.iosp.mcidas

Class ucar.nc2.iosp.mcidas.McIDASAreaProjection extends ProjectionImpl implements Serializable

Serialized Fields

anav

edu.wisc.ssec.mcidas.AREAnav anav
Area navigation


lines

int lines
number of lines


elements

int elements
number of elements


dirBlock

int[] dirBlock
directory block


navBlock

int[] navBlock
navigation block


auxBlock

int[] auxBlock
aux block


Package ucar.nc2.iosp.noaa

Class ucar.nc2.iosp.noaa.GhcnmProto.StationIndex extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

stnid_

long stnid_

stnPos_

long stnPos_

dataPos_

long dataPos_

dataCount_

int dataCount_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.iosp.noaa.GhcnmProto.StationIndexList extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

list_

List<E> list_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Package ucar.nc2.stream

Class ucar.nc2.stream.NcStreamProto.Attribute extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

name_

Object name_

type_

NcStreamProto.Attribute.Type type_

len_

int len_

data_

com.google.protobuf.ByteString data_

sdata_

com.google.protobuf.LazyStringList sdata_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.Data extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

varName_

Object varName_

dataType_

NcStreamProto.DataType dataType_

section_

NcStreamProto.Section section_

bigend_

boolean bigend_

version_

int version_

compress_

NcStreamProto.Compress compress_

crc32_

int crc32_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.Dimension extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

name_

Object name_

length_

long length_

isUnlimited_

boolean isUnlimited_

isVlen_

boolean isVlen_

isPrivate_

boolean isPrivate_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.EnumTypedef extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

name_

Object name_

map_

List<E> map_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.EnumTypedef.EnumType extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

code_

int code_

value_

Object value_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.Error extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

message_

Object message_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.Group extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

name_

Object name_

dims_

List<E> dims_

vars_

List<E> vars_

structs_

List<E> structs_

atts_

List<E> atts_

groups_

List<E> groups_

enumTypes_

List<E> enumTypes_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.Header extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

location_

Object location_

title_

Object title_

id_

Object id_

root_

NcStreamProto.Group root_

version_

int version_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.Range extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

start_

long start_

size_

long size_

stride_

long stride_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.Section extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

range_

List<E> range_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.Structure extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

name_

Object name_

dataType_

NcStreamProto.DataType dataType_

shape_

List<E> shape_

atts_

List<E> atts_

vars_

List<E> vars_

structs_

List<E> structs_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.StructureData extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

member_

List<E> member_

data_

com.google.protobuf.ByteString data_

heapCount_

List<E> heapCount_

sdata_

com.google.protobuf.LazyStringList sdata_

nrows_

long nrows_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class ucar.nc2.stream.NcStreamProto.Variable extends com.google.protobuf.GeneratedMessage implements Serializable

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

bitField0_

int bitField0_

name_

Object name_

dataType_

NcStreamProto.DataType dataType_

shape_

List<E> shape_

atts_

List<E> atts_

unsigned_

boolean unsigned_

data_

com.google.protobuf.ByteString data_

enumType_

Object enumType_

dimIndex_

List<E> dimIndex_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Package ucar.nc2.util

Class ucar.nc2.util.HashMapLRU extends LinkedHashMap implements Serializable

Serialized Fields

max_entries

int max_entries

Package ucar.nc2.util.net

Class ucar.nc2.util.net.HTTPException extends IOException implements Serializable


Package ucar.unidata.geoloc

Class ucar.unidata.geoloc.LatLonPointImpl extends Object implements Serializable

Serialized Fields

lat

double lat
East latitude in degrees, always +/- 90


lon

double lon
North longitude in degrees, always +/- 180

Class ucar.unidata.geoloc.ProjectionImpl extends Object implements Serializable

Serialized Fields

name

String name
name of this projection


isLatLon

boolean isLatLon
flag for latlon


atts

List<E> atts
list of attributes


defaultMapArea

ProjectionRect defaultMapArea
default map area

Class ucar.unidata.geoloc.ProjectionPointImpl extends Point2D.Double implements Serializable

Class ucar.unidata.geoloc.ProjectionRect extends Rectangle2D.Double implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Read the object from the input stream of the serialized object

Throws:
ClassNotFoundException - couldn't file the class
IOException - Problem reading from stream

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Wrtie the object to the output stream

Throws:
IOException - Problem writing to stream

Package ucar.unidata.geoloc.projection

Class ucar.unidata.geoloc.projection.AlbersEqualArea extends ProjectionImpl implements Serializable

Serialized Fields

n

double n
constants from Snyder's equations


C

double C
constants from Snyder's equations


rho0

double rho0
constants from Snyder's equations


lat0

double lat0
lat/lon in radians


lon0

double lon0
lat/lon in radians


par1

double par1
parallel 1 and 2


par2

double par2
parallel 1 and 2


lon0Degrees

double lon0Degrees
lon naught


origin

LatLonPointImpl origin
origin


falseEasting

double falseEasting

falseNorthing

double falseNorthing

earth_radius

double earth_radius

Class ucar.unidata.geoloc.projection.FlatEarth extends ProjectionImpl implements Serializable

Serialized Fields

rotAngle

double rotAngle
constants from Snyder's equations


lat0

double lat0
center lat/lon in radians


lon0

double lon0
center lat/lon in radians


cosRot

double cosRot
some constants


sinRot

double sinRot
some constants


origin

LatLonPointImpl origin
origin


spherical

boolean spherical
spherical vs ellipsoidal


radius

double radius

Class ucar.unidata.geoloc.projection.LambertAzimuthalEqualArea extends ProjectionImpl implements Serializable

Serialized Fields

R

double R
constants from Snyder's equations


sinLat0

double sinLat0
constants from Snyder's equations


cosLat0

double cosLat0
constants from Snyder's equations


lon0Degrees

double lon0Degrees
constants from Snyder's equations


lat0

double lat0
center lat/lon in degrees


lon0

double lon0
center lat/lon in degrees


falseEasting

double falseEasting
false easting


falseNorthing

double falseNorthing
false northing


origin

LatLonPointImpl origin
origin


spherical

boolean spherical
spherical vs ellipsoidal

Class ucar.unidata.geoloc.projection.LambertConformal extends ProjectionImpl implements Serializable

Serialized Fields

n

double n
constants from Snyder's equations


F

double F
constants from Snyder's equations


rho

double rho
constants from Snyder's equations


earthRadiusTimesF

double earthRadiusTimesF
Earth's radius time F


lon0Degrees

double lon0Degrees
lon naught


lat0

double lat0
lat/lon in radians


lon0

double lon0
lat/lon in radians


par1

double par1
parallel 1 and 2


par2

double par2
parallel 1 and 2


falseEasting

double falseEasting

falseNorthing

double falseNorthing

earth_radius

double earth_radius

origin

LatLonPointImpl origin
origin

Class ucar.unidata.geoloc.projection.LatLonProjection extends ProjectionImpl implements Serializable

Serialized Fields

centerLon

double centerLon
center longitude


projR1

ProjectionRect projR1
projection rect 1


projR2

ProjectionRect projR2
projection rect 1


rects

ProjectionRect[] rects
array fo rects

Class ucar.unidata.geoloc.projection.Mercator extends ProjectionImpl implements Serializable

Serialized Fields

lon0

double lon0
longitude of the origin degrees


par

double par
standard parallel degrees


par_r

double par_r
standard parallel in radians


A

double A
Factor


falseEasting

double falseEasting

falseNorthing

double falseNorthing

origin

LatLonPointImpl origin
origin point

Class ucar.unidata.geoloc.projection.Orthographic extends ProjectionImpl implements Serializable

Serialized Fields

R

double R
constants from Snyder's equations


lon0Degrees

double lon0Degrees
constants from Snyder's equations


lat0

double lat0
center lat/lon in radians


lon0

double lon0
center lat/lon in radians


cosLat0

double cosLat0
some constants


sinLat0

double sinLat0
some constants


origin

LatLonPointImpl origin
origin


spherical

boolean spherical
spherical vs ellipsoidal

Class ucar.unidata.geoloc.projection.ProjectionAdapter extends ProjectionImpl implements Serializable

Serialized Fields

proj

Projection proj
projection to adapt

Class ucar.unidata.geoloc.projection.RotatedLatLon extends ProjectionImpl implements Serializable

Serialized Fields

lonpole

double lonpole

latpole

double latpole

polerotate

double polerotate

cosDlat

double cosDlat

sinDlat

double sinDlat

Class ucar.unidata.geoloc.projection.RotatedPole extends ProjectionImpl implements Serializable

Serialized Fields

northPole

ProjectionPointImpl northPole

rotY

double[][] rotY

rotZ

double[][] rotZ

Class ucar.unidata.geoloc.projection.Stereographic extends ProjectionImpl implements Serializable

Serialized Fields

latts

double latts
some variables


latt

double latt
some variables


lont

double lont
some variables


scale

double scale
some variables


sinlatt

double sinlatt
some variables


coslatt

double coslatt
some variables


central_meridian

double central_meridian
some variables


isNorth

boolean isNorth

isPolar

boolean isPolar

falseEasting

double falseEasting
easting/northing


falseNorthing

double falseNorthing
easting/northing


origin

LatLonPointImpl origin
origin point

Class ucar.unidata.geoloc.projection.TransverseMercator extends ProjectionImpl implements Serializable

Serialized Fields

lat0

double lat0
parameters


lon0

double lon0
parameters


scale

double scale
parameters


origin

LatLonPointImpl origin
origin point


falseEasting

double falseEasting
_more_


falseNorthing

double falseNorthing
_more_

Class ucar.unidata.geoloc.projection.UtmProjection extends ProjectionImpl implements Serializable

Serialized Fields

convert2latlon

ucar.unidata.geoloc.projection.Utm_To_Gdc_Converter convert2latlon

convert2xy

ucar.unidata.geoloc.projection.Gdc_To_Utm_Converter convert2xy

save

ucar.unidata.geoloc.projection.UtmProjection.SaveParams save

Class ucar.unidata.geoloc.projection.VerticalPerspectiveView extends ProjectionImpl implements Serializable

Serialized Fields

P

double P
constants from Snyder's equations


H

double H
constants from Snyder's equations


R

double R
constants from Snyder's equations


lon0Degrees

double lon0Degrees
constants from Snyder's equations


lat0

double lat0
center lat/lon in radians


lon0

double lon0
center lat/lon in radians


cosLat0

double cosLat0
some constants


sinLat0

double sinLat0
some constants


false_east

double false_east
some constants


false_north

double false_north
some constants


maxR

double maxR
square of "map limit" circle of this radius from the origin, p 173


maxR2

double maxR2
square of "map limit" circle of this radius from the origin, p 173


origin

LatLonPointImpl origin
origin


spherical

boolean spherical
spherical vs ellipsoidal


Package ucar.unidata.geoloc.projection.proj4

Class ucar.unidata.geoloc.projection.proj4.AlbersEqualAreaEllipse extends ProjectionImpl implements Serializable

Serialized Fields

lat0deg

double lat0deg

lon0deg

double lon0deg

lat0rad

double lat0rad

lon0rad

double lon0rad

par1deg

double par1deg

par2deg

double par2deg

phi1

double phi1

phi2

double phi2

falseEasting

double falseEasting

falseNorthing

double falseNorthing

earth

Earth earth

e

double e

es

double es

one_es

double one_es

totalScale

double totalScale

ec

double ec

n

double n

c

double c

dd

double dd

n2

double n2

rho0

double rho0

isSpherical

boolean isSpherical

Class ucar.unidata.geoloc.projection.proj4.LambertConformalConicEllipse extends ProjectionImpl implements Serializable

Serialized Fields

lat0deg

double lat0deg

lon0deg

double lon0deg

lat0rad

double lat0rad

lon0rad

double lon0rad

par1deg

double par1deg

par2deg

double par2deg

par1rad

double par1rad

par2rad

double par2rad

falseEasting

double falseEasting

falseNorthing

double falseNorthing

earth

Earth earth

e

double e

es

double es

totalScale

double totalScale

n

double n

c

double c

rho0

double rho0

isSpherical

boolean isSpherical

Class ucar.unidata.geoloc.projection.proj4.StereographicAzimuthalProjection extends ProjectionImpl implements Serializable

Serialized Fields

projectionLatitude

double projectionLatitude

projectionLongitude

double projectionLongitude

n

double n

scaleFactor

double scaleFactor

trueScaleLatitude

double trueScaleLatitude

falseEasting

double falseEasting

falseNorthing

double falseNorthing

earth

Earth earth

e

double e

es

double es

one_es

double one_es

totalScale

double totalScale

isSpherical

boolean isSpherical

EPS10

double EPS10

akm1

double akm1

sinphi0

double sinphi0

cosphi0

double cosphi0

mode

int mode

Class ucar.unidata.geoloc.projection.proj4.TransverseMercatorProjection extends ProjectionImpl implements Serializable

Serialized Fields

esp

double esp

ml0

double ml0

en

double[] en

projectionLatitude

double projectionLatitude

projectionLongitude

double projectionLongitude

scaleFactor

double scaleFactor

falseEasting

double falseEasting

falseNorthing

double falseNorthing

ellipsoid

Earth ellipsoid

e

double e

es

double es

one_es

double one_es

totalScale

double totalScale

spherical

boolean spherical

Package ucar.unidata.geoloc.projection.sat

Class ucar.unidata.geoloc.projection.sat.MSGnavigation extends ProjectionImpl implements Serializable

Serialized Fields

lat0

double lat0

lon0

double lon0

major_axis

double major_axis

minor_axis

double minor_axis

sat_height

double sat_height

scale_x

double scale_x

scale_y

double scale_y

const1

double const1

const2

double const2

const3

double const3

maxR

double maxR

maxR2

double maxR2

Package ucar.unidata.io.bzip2

Class ucar.unidata.io.bzip2.BZip2ReadException extends RuntimeException implements Serializable


Package ucar.unidata.util

Class ucar.unidata.util.Parameter extends Object implements Serializable

Serialized Fields

name

String name

valueS

String valueS

valueD

double[] valueD

isString

boolean isString

hashCode

int hashCode

Package ucar.units

Class ucar.units.BadUnitException extends UnitDBException implements Serializable

serialVersionUID: 1L

Class ucar.units.BaseQuantity extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name
 

symbol

String symbol
 

Class ucar.units.BaseQuantityException extends UnitException implements Serializable

serialVersionUID: 1L

Class ucar.units.BaseUnit extends DerivedUnitImpl implements Serializable

serialVersionUID: 1L

Serialized Fields

baseQuantity

BaseQuantity baseQuantity
The base quantity associated with this base unit.

 

Class ucar.units.ConversionException extends UnitException implements Serializable

serialVersionUID: 1L

Class ucar.units.DerivedUnitImpl extends UnitImpl implements Serializable

serialVersionUID: 1L

Serialized Fields

dimension

UnitDimension dimension
The dimension of this derived unit.

 

Class ucar.units.DivideException extends OperationException implements Serializable

serialVersionUID: 1L

Class ucar.units.Factor extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

_base

Base _base
The Base entity.

 

_exponent

int _exponent
The exponent.

 

Class ucar.units.LogarithmicUnit extends UnitImpl implements Serializable

serialVersionUID: 1L

Serialized Fields

base

double base
The logarithmic base.

 

reference

DerivableUnit reference
The reference level.

 

Class ucar.units.MultiplyException extends OperationException implements Serializable

serialVersionUID: 1L

Class ucar.units.NameException extends UnitException implements Serializable

serialVersionUID: 1L

Class ucar.units.NoSuchUnitException extends SpecificationException implements Serializable

serialVersionUID: 1L

Class ucar.units.OffsetUnit extends UnitImpl implements Serializable

serialVersionUID: 1L

Serialized Fields

_offset

double _offset
The origin of this unit in terms of the reference unit.

 

_unit

Unit _unit
The reference unit.

 

_derivedUnit

DerivedUnit _derivedUnit
The derived unit that is convertible with this unit.

 

Class ucar.units.OperationException extends UnitException implements Serializable

serialVersionUID: 1L

Class ucar.units.ParseException extends Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

String eol
The end of line string for this machine.

Class ucar.units.PrefixDBAccessException extends PrefixDBException implements Serializable

serialVersionUID: 1L

Class ucar.units.PrefixDBException extends UnitException implements Serializable

serialVersionUID: 1L

Class ucar.units.PrefixDBImpl extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

nameSet

SortedSet<E> nameSet
The set of prefix names.

 

symbolSet

SortedSet<E> symbolSet
The set of prefix symbols.

 

valueMap

Map<K,V> valueMap
The mapping between prefix values and prefixes.

 

Class ucar.units.PrefixDBManager extends Object implements Serializable

serialVersionUID: 1L

Class ucar.units.PrefixExistsException extends PrefixDBException implements Serializable

serialVersionUID: 1L

Class ucar.units.QuantityExistsException extends UnitException implements Serializable

serialVersionUID: 1L

Class ucar.units.RaiseException extends OperationException implements Serializable

serialVersionUID: 1L

Class ucar.units.RegularBaseQuantity extends BaseQuantity implements Serializable

serialVersionUID: 1L

Class ucar.units.ScaledUnit extends UnitImpl implements Serializable

serialVersionUID: 1L

Serialized Fields

_scale

double _scale
The multiplicative factor.

 

_unit

Unit _unit
The reference unit.

 

Class ucar.units.ShiftException extends OperationException implements Serializable

serialVersionUID: 1L

Class ucar.units.SI extends UnitSystemImpl implements Serializable

serialVersionUID: 1L

Class ucar.units.SpecificationException extends UnitException implements Serializable

serialVersionUID: 1L

Class ucar.units.StandardPrefixDB extends PrefixDBImpl implements Serializable

serialVersionUID: 1L

Class ucar.units.StandardUnitDB extends UnitDBImpl implements Serializable

serialVersionUID: 1L

Class ucar.units.SupplementaryBaseQuantity extends BaseQuantity implements Serializable

serialVersionUID: 1L

Class ucar.units.TimeScaleUnit extends UnitImpl implements Serializable

serialVersionUID: 1L

Serialized Fields

_unit

Unit _unit
The reference time unit.

 

_origin

Date _origin
The time origin for this instance.

 

Class ucar.units.TokenMgrError extends Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.

Class ucar.units.UnitClassException extends UnitFormatException implements Serializable

serialVersionUID: 1L

Class ucar.units.UnitDBAccessException extends UnitDBException implements Serializable

serialVersionUID: 1L

Class ucar.units.UnitDBException extends UnitException implements Serializable

serialVersionUID: 1L

Class ucar.units.UnitDBImpl extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

unitSet

Set<E> unitSet
The set of units.

 

nameMap

Map<K,V> nameMap
The name-to-unit map.

 

symbolMap

Map<K,V> symbolMap
The symbol-to-unit map.

 

Class ucar.units.UnitDBManager extends Object implements Serializable

serialVersionUID: 1L

Class ucar.units.UnitException extends Exception implements Serializable

serialVersionUID: 1L

Class ucar.units.UnitExistsException extends UnitDBException implements Serializable

serialVersionUID: 1L

Class ucar.units.UnitFormatException extends UnitException implements Serializable

serialVersionUID: 1L

Class ucar.units.UnitFormatManager extends Object implements Serializable

serialVersionUID: 1L

Class ucar.units.UnitID extends Object implements Serializable

serialVersionUID: 1L

Class ucar.units.UnitImpl extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

UnitName id
The unit identifier.

 

Class ucar.units.UnitName extends UnitID implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name
The name of the unit.

 

plural

String plural
The plural form of the unit name.

 

symbol

String symbol
The symbol for the unit.

 

Class ucar.units.UnitParseException extends SpecificationException implements Serializable

serialVersionUID: 1L

Class ucar.units.UnitSymbol extends UnitID implements Serializable

serialVersionUID: 1L

Serialized Fields

symbol

String symbol
The symbol for the unit.

 

Class ucar.units.UnitSystemException extends UnitException implements Serializable

serialVersionUID: 1L

Class ucar.units.UnitSystemImpl extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

quantityMap

HashMap<K,V> quantityMap
The quantity-to-base-unit map.

 

baseUnitDB

UnitDB baseUnitDB
The base unit database;

 

acceptableUnitDB

UnitDBImpl acceptableUnitDB
The complete database;

 

Class ucar.units.UnitSystemManager extends Object implements Serializable

serialVersionUID: 1L

Class ucar.units.UnknownBaseQuantity extends BaseQuantity implements Serializable

serialVersionUID: 1L

Class ucar.units.UnknownUnit extends BaseUnit implements Serializable

serialVersionUID: 1L



Copyright © 1999-2011 UCAR/Unidata. All Rights Reserved.