org.apache.log.output.db
Class ColumnInfo

java.lang.Object
  |
  +--org.apache.log.output.db.ColumnInfo

public class ColumnInfo
extends Object

A descriptor for each column stored in table.

Author:
Avalon Development Team, Peter Donald

Constructor Summary
ColumnInfo(String name, int type, String aux)
          Creation of a new column info instance.
 
Method Summary
 String getAux()
          Return the auxillary column information.
 String getName()
          Return the column name
 int getType()
          Return the column type as an integer
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ColumnInfo

public ColumnInfo(String name,
                  int type,
                  String aux)
Creation of a new column info instance.

Parameters:
name - the column name
type - the column type
aux - the auxillary value
Method Detail

getName

public String getName()
Return the column name

Returns:
the name of the column

getType

public int getType()
Return the column type as an integer

Returns:
the type

getAux

public String getAux()
Return the auxillary column information.

Returns:
the information


Copyright © 2001 Apache Jakarta Project. All Rights Reserved.