Package wt.query
Class FixedLengthStringExpression
java.lang.Object
wt.query.FixedLengthStringExpression
- All Implemented Interfaces:
Serializable,wt.query.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
Supported API: true
Extendable: false
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFixedLengthStringExpression(Character a_value, int a_length, char a_fill)
Supported API: trueFixedLengthStringExpression(String a_value, int a_length, char a_fill)
Supported API: true -
Method Summary
-
Constructor Details
-
FixedLengthStringExpression
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
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.
-