Package org.apache.log.output.db
Class ColumnInfo
- java.lang.Object
-
- org.apache.log.output.db.ColumnInfo
-
public class ColumnInfo extends java.lang.ObjectA descriptor for each column stored in table.- Author:
- Avalon Development Team, Peter Donald
-
-
Constructor Summary
Constructors Constructor Description ColumnInfo(java.lang.String name, int type, java.lang.String aux)Creation of a new column info instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAux()Return the auxillary column information.java.lang.StringgetName()Return the column nameintgetType()Return the column type as an integer
-
-
-
Method Detail
-
getName
public java.lang.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 java.lang.String getAux()
Return the auxillary column information.- Returns:
- the information
-
-