package dalclient; import java.util.*; /** * Query record attribute class. Describes an attribute of a dataset * descriptor or table row. */ public class QRAttribute { String value; QRAttribute() { value = ""; } QRAttribute(String s) { value = s; } public boolean boolValue() { return (new Boolean(value).booleanValue()); } public int intValue() { return (new Integer(value).intValue()); } public float floatValue() { return (new Float(value).floatValue()); } public double doubleValue() { return (new Double(value).doubleValue()); } public String stringValue() { return (value); } }