gov.nasa.gsfc.drl.rtstps.core.output.hdf5
Class TemporaryAndTestDomain

java.lang.Object
  extended by gov.nasa.gsfc.drl.rtstps.core.output.hdf5.TemporaryAndTestDomain

public class TemporaryAndTestDomain
extends java.lang.Object

The Temporary and Test Domain is part of Domain description (@link DomainDescription}. This class supports the proper creation of these fields. It is currently unused in this package.


Field Summary
private  java.lang.String description
           
private  java.lang.String name
           
 
Constructor Summary
TemporaryAndTestDomain(char field1, char field2, java.lang.String description)
          Create a temporary and test domain using two fields and a description
TemporaryAndTestDomain(char field1, int field2, java.lang.String description)
          Create a temporary and test domain using two fields, where the second is a value modulo 10, and a description
TemporaryAndTestDomain(int field1, char field2, java.lang.String description)
          Create a temporary and test domain using two fields, where the first is a value modulo 10, and a description
TemporaryAndTestDomain(int test, java.lang.String description)
          Create a temporary and test domain with a test number and description
 
Method Summary
 java.lang.String getDescription()
          Return the description
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

name

private java.lang.String name

description

private java.lang.String description
Constructor Detail

TemporaryAndTestDomain

public TemporaryAndTestDomain(int test,
                              java.lang.String description)
Create a temporary and test domain with a test number and description

Parameters:
test - the test number, modulo 100
description - the description

TemporaryAndTestDomain

public TemporaryAndTestDomain(char field1,
                              char field2,
                              java.lang.String description)
Create a temporary and test domain using two fields and a description

Parameters:
field1 - the first field
field2 - the second field
description - the description

TemporaryAndTestDomain

public TemporaryAndTestDomain(int field1,
                              char field2,
                              java.lang.String description)
Create a temporary and test domain using two fields, where the first is a value modulo 10, and a description

Parameters:
field1 - a value, calculated modulo 10
field2 - the second field
description - the description

TemporaryAndTestDomain

public TemporaryAndTestDomain(char field1,
                              int field2,
                              java.lang.String description)
Create a temporary and test domain using two fields, where the second is a value modulo 10, and a description

Parameters:
field1 - the first field
field2 - a value, calculated modulo 10
description - the description
Method Detail

getDescription

public java.lang.String getDescription()
Return the description

Returns:
a String containing the description

toString

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