All Packages Class Hierarchy This Package Previous Next Index
Class Types.Tuple
java.lang.Object
|
+----Types.Tuple
- public class Tuple
- extends Object
Class Tuple is used throughout the system to store the content of a
record. Tuple is implemented as an array of types.
It is constructed from an array of type descriptors.
-
Tuple()
-
-
Tuple(TypeDesc[])
-
-
copyTo(Tuple)
- This function assume that the two Tuple objects have the same schema.
-
get_fields()
-
-
print(PrintStream)
-
-
print(PrintWriter)
-
-
read(StreamTokenizer)
- read returns false if the EOF is encountered
Tuple
public Tuple()
Tuple
public Tuple(TypeDesc typeStrings[])
read
public boolean read(StreamTokenizer st) throws IOException
- read returns false if the EOF is encountered
print
public void print(PrintWriter os)
print
public void print(PrintStream os)
get_fields
public DTE_Type[] get_fields()
copyTo
public void copyTo(Tuple t)
- This function assume that the two Tuple objects have the same schema.
All Packages Class Hierarchy This Package Previous Next Index