wt.query
Class FixedLengthStringExpression

java.lang.Object
  extended by 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

Constructor Summary
FixedLengthStringExpression(Character a_value, int a_length, char a_fill)
          

Supported API: true
FixedLengthStringExpression(String a_value, int a_length, char a_fill)
          

Supported API: true
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

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 String
a_length - Fixed length of the string column.
a_fill - Character to use to fill if the string size is less than a_length.