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
See Also:
  • Constructor Details

    • 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.