org.apache.ws.jaxme.sqls
public interface BinaryColumn extends Column
Interface of a column with datatype {@link Column.Type#BINARY} or {@link Column.Type#VARBINARY}.
Method Summary | |
---|---|
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 |
If the column has fixed length: Returns the columns length. Otherwise returns the columns maximum length.
Returns whether the column has fixed or variable length.
If the column has fixed length: Sets the columns length. Otherwise sets the columns maximum length.
Shortcut for setLength(new Integer(pLength))
.