Package opendap.dap
Class UInt32PrimitiveVector
- java.lang.Object
-
- opendap.dap.DAPNode
-
- opendap.dap.PrimitiveVector
-
- opendap.dap.Int32PrimitiveVector
-
- opendap.dap.UInt32PrimitiveVector
-
- All Implemented Interfaces:
Serializable
,Cloneable
,ClientIO
public class UInt32PrimitiveVector extends Int32PrimitiveVector
A vector of unsigned ints.- See Also:
PrimitiveVector
, Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class opendap.dap.DAPNode
DAPNode.CloneMap
-
-
Field Summary
-
Fields inherited from class opendap.dap.DAPNode
_nameClear, _nameEncoded, log
-
-
Constructor Summary
Constructors Constructor Description UInt32PrimitiveVector(BaseType var)
Constructs a newUInt32PrimitiveVector
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
printSingleVal(PrintWriter os, int index)
Prints the value of a single variable in this vector.void
printVal(PrintWriter os, String space)
Prints the value of all variables in this vector.-
Methods inherited from class opendap.dap.Int32PrimitiveVector
cloneDAG, deserialize, externalize, externalize, getInternalStorage, getLength, getValue, printVal, setInternalStorage, setLength, setValue, subset
-
Methods inherited from class opendap.dap.PrimitiveVector
getTemplate, getTypeName, printDecl, printDecl
-
Methods inherited from class opendap.dap.DAPNode
clone, cloneDAG, getClearName, getEncodedName, getParent, isProject, setClearName, setEncodedName, setParent, setProject, setProject, setProjected
-
-
-
-
Constructor Detail
-
UInt32PrimitiveVector
public UInt32PrimitiveVector(BaseType var)
Constructs a newUInt32PrimitiveVector
.
-
-
Method Detail
-
printVal
public void printVal(PrintWriter os, String space)
Prints the value of all variables in this vector. This method is primarily intended for debugging OPeNDAP applications and text-based clients such as geturl.- Overrides:
printVal
in classInt32PrimitiveVector
- Parameters:
os
- thePrintWriter
on which to print the value.space
- this value is passed to theprintDecl
method, and controls the leading spaces of the output.- See Also:
BaseType.printVal(PrintWriter, String, boolean)
-
printSingleVal
public void printSingleVal(PrintWriter os, int index)
Prints the value of a single variable in this vector. method is used byDArray
'sprintVal
method.- Overrides:
printSingleVal
in classInt32PrimitiveVector
- Parameters:
os
- thePrintWriter
on which to print the value.index
- the index of the variable to print.- See Also:
DArray.printVal(PrintWriter, String, boolean)
-
-