FileDocCategorySizeDatePackage
ByteColumn.javaAPI DocExample532Thu Jun 28 16:14:16 BST 2001com.ora.jsp.sql.column

ByteColumn

public class ByteColumn extends com.ora.jsp.sql.Column
This class represents a byte column.
author
Hans Bergsten, Gefion software
version
1.0

Fields Summary
private byte
value
Constructors Summary
public ByteColumn(String name, byte value)

        super(name);
        this.value = value;
    
Methods Summary
public bytegetByte()

        return value;
    
public java.lang.StringgetString()

        return String.valueOf(value);