wt.query
Class FixedLengthStringExpression
java.lang.Object
wt.query.FixedLengthStringExpression
- All Implemented Interfaces:
- Serializable, Expression, RelationalExpression
public class FixedLengthStringExpression
- extends Object
- implements RelationalExpression, Serializable
This class represents a fixed length string constant in a SQL statement.
Supported API: true
Extendable: false
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
FixedLengthStringExpression
public FixedLengthStringExpression(String a_value,
int a_length,
char a_fill)
Supported API: true
- Parameters:
a_value - String value.a_length - Fixed length of the string column.a_fill - Character to use to fill if the string size is less than a_length.
FixedLengthStringExpression
public FixedLengthStringExpression(Character a_value,
int a_length,
char a_fill)
Supported API: true
- Parameters:
a_value - Character value for the Stringa_length - Fixed length of the string column.a_fill - Character to use to fill if the string size is less than a_length.