org.apache.ws.jaxme.sqls
Interface BinaryColumn
- Column
- AbstractColumn, ColumnImpl, DB2ColumnImpl, HsqlDbColumnImpl, VirtualColumn
public interface BinaryColumn
Long | getLength() - If the column has fixed length: Returns the columns length.
|
boolean | hasFixedLength() - Returns whether the column has fixed or variable length.
|
void | setLength(Long pLength) - If the column has fixed length: Sets the columns length.
|
void | setLength(long pLength) - Shortcut for
setLength(new Integer(pLength)) .
|
getCustomData , getName , getQName , getTable , getType , isBinaryColumn , isNullable , isPrimaryKeyPart , isStringColumn , isVirtual , setCustomData , setNullable |
getLength
public Long getLength()
If the column has fixed length: Returns the columns length.
Otherwise returns the columns maximum length.
hasFixedLength
public boolean hasFixedLength()
Returns whether the column has fixed or variable length.
setLength
public void setLength(Long pLength)
If the column has fixed length: Sets the columns length.
Otherwise sets the columns maximum length.
setLength
public void setLength(long pLength)
Shortcut for setLength(new Integer(pLength))
.