Class jada.TupleString
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jada.TupleString

java.lang.Object
   |
   +----jada.Tuple
           |
           +----jada.TupleString

public class TupleString
extends Tuple
This is a utility class that allows you to create a tuple directly from its string representation. Watch out: if you use this object as a tuple item be aware that TupleString is not the same as Tuple so the tuples:
Tuple t1=new Tuple(new TupleString("(a, b, c)"));
Tuple t2=new Tuple(new Tuple().getClass()) won't match!

Constructor Index

 o TupleString()
Default constructor.
 o TupleString(String)
Constructor: builds the tuple from the string representation.

Constructors

 o TupleString
  public TupleString()
Default constructor. Builds an emply tuple.
 o TupleString
  public TupleString(String s) throws JadaFormatException, ClassNotFoundException
Constructor: builds the tuple from the string representation. Watch out: no cheking is performed on the string correctness.

All Packages  Class Hierarchy  This Package  Previous  Next  Index