saaps.dbt
Class ACEsweHourly

java.lang.Object
  |
  +--saaps.dbt.DatabaseObject
        |
        +--saaps.dbt.ACEsweHourly

public class ACEsweHourly
extends DatabaseObject
implements java.io.Serializable

A class for ACE objects. The class contains the date, Bx, By, Bz, n, and V from the ACE spacecraft. There are methods to read and write date and ACE data.

See Also:
Serialized Form

Constructor Summary
ACEsweHourly()
           
ACEsweHourly(java.util.Date D)
          This constructor is used if you want an "empty" object with this date.
ACEsweHourly(java.util.Date D, double[] data)
           
ACEsweHourly(java.util.Date D, double N, double V)
           
ACEsweHourly(long L, double N, double V)
           
 
Method Summary
 java.util.Vector getData()
           
 double getData(int index)
          This method will return the data value of the DatabaseObject at position "index" converted to a double.
 long getDataSize()
          This method returns the size of the data that is to be written to file
 java.util.Date getDate()
          getDate will return the Date associated with this DatabaseObject
 double getN()
           
 int getNumberOfDataIndexes()
          getNumberOfDataIndexes will return the number of data "types" this DatabaseObject has.
 double getV()
           
 void setDate(java.util.Date D)
           
 void setDate(long L)
           
 void setN(double N)
           
 void setV(double V)
           
 java.lang.String toString()
           
 
Methods inherited from class saaps.dbt.DatabaseObject
getInstance, getInstance, getObjectSize
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ACEsweHourly

public ACEsweHourly()

ACEsweHourly

public ACEsweHourly(java.util.Date D)
This constructor is used if you want an "empty" object with this date.

ACEsweHourly

public ACEsweHourly(java.util.Date D,
                    double N,
                    double V)

ACEsweHourly

public ACEsweHourly(long L,
                    double N,
                    double V)

ACEsweHourly

public ACEsweHourly(java.util.Date D,
                    double[] data)
Method Detail

getNumberOfDataIndexes

public int getNumberOfDataIndexes()
Description copied from class: DatabaseObject
getNumberOfDataIndexes will return the number of data "types" this DatabaseObject has.
Overrides:
getNumberOfDataIndexes in class DatabaseObject

getDate

public java.util.Date getDate()
Description copied from class: DatabaseObject
getDate will return the Date associated with this DatabaseObject
Overrides:
getDate in class DatabaseObject

getN

public double getN()

getV

public double getV()

getData

public java.util.Vector getData()

getData

public double getData(int index)
Description copied from class: DatabaseObject
This method will return the data value of the DatabaseObject at position "index" converted to a double. If datavalue index doesn't exist we should either throw an exception or return a value that doesn't represent a number.
Overrides:
getData in class DatabaseObject

getDataSize

public long getDataSize()
                 throws java.io.IOException
This method returns the size of the data that is to be written to file
Overrides:
getDataSize in class DatabaseObject

setDate

public void setDate(java.util.Date D)

setDate

public void setDate(long L)

setN

public void setN(double N)

setV

public void setV(double V)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object