public class PSNHeader
extends java.lang.Object
Constructor and Description |
---|
PSNHeader(java.io.DataInputStream data) |
Modifier and Type | Method and Description |
---|---|
short |
getAdBitRes() |
java.lang.String |
getChannelId() |
double |
getCompAz() |
double |
getCompIncident() |
byte |
getCompOrientation() |
PSNDateTime |
getDateTime() |
int |
getFlags() |
double |
getMagCorrect() |
int |
getNumRecords() |
byte |
getSampleCompression() |
int |
getSampleCount() |
byte |
getSampleDataType() |
double |
getSampleMax() |
double |
getSampleMean() |
double |
getSampleMin() |
double |
getSampleRate() |
double |
getSensitivity() |
double |
getSensorElevation() |
double |
getSensorLat() |
double |
getSensorLong() |
java.lang.String |
getSensorName() |
java.lang.String |
getSensorNetwork() |
byte |
getSensorType() |
double |
getStartTimeOffset() |
byte |
getTimeRefStatus() |
java.lang.String |
getTimeRefType() |
int |
getVarHeadLength() |
boolean |
isVolumeFile() |
java.lang.String |
toString()
Returns a string representation of the object.
|
public PSNHeader(java.io.DataInputStream data) throws java.io.IOException, java.io.FileNotFoundException
java.io.IOException
java.io.FileNotFoundException
public boolean isVolumeFile()
public int getNumRecords()
public int getVarHeadLength()
public PSNDateTime getDateTime()
public double getStartTimeOffset()
public double getSampleRate()
public int getSampleCount()
public int getFlags()
public java.lang.String getTimeRefType()
public byte getTimeRefStatus()
public byte getSampleDataType()
public byte getSampleCompression()
public double getCompIncident()
public double getCompAz()
public byte getCompOrientation()
public byte getSensorType()
public double getSensorLat()
public double getSensorLong()
public double getSensorElevation()
public java.lang.String getSensorName()
public java.lang.String getChannelId()
public java.lang.String getSensorNetwork()
public double getSensitivity()
public double getMagCorrect()
public short getAdBitRes()
public double getSampleMin()
public double getSampleMax()
public double getSampleMean()
public java.lang.String toString()
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
toString
in class java.lang.Object