FileDocCategorySizeDatePackage
BooleanValue.javaAPI DocExample533Thu Jun 28 16:14:16 BST 2001com.ora.jsp.sql.value

BooleanValue.java

package com.ora.jsp.sql.value;

import com.ora.jsp.sql.Value;

/**
 * This class represents a boolean value used by the SQL tags.
 *
 * @author Hans Bergsten, Gefion software <hans@gefionsoftware.com>
 * @version 1.0
 */
public class BooleanValue extends Value {
    private boolean value;

    public BooleanValue(boolean value) {
        this.value = value;
    }

    public boolean getBoolean() {
        return value;
    }

    public String getString() {
        return String.valueOf(value);
    }
}