com.ibm.commerce.catalog.objects
Class OperatorBean

com.ibm.commerce.catalog.objects.OperatorBean
All Implemented Interfaces:
java.io.Serializable

public class OperatorBean
implements java.io.Serializable

This bean provides access to the OPERATOR table.

The following is a description of this table:

This table is used to define operators.

See Also:
Serialized Form

Constructor Summary
OperatorBean()
           
 
Method Summary
 java.lang.String getOperator()
          This method provides access to the OPERATOR.OPERATOR column of DB2 type CHAR(32) NOT NULL.
 java.lang.Integer getOperatorId()
          This method provides access to the OPERATOR.OPERATOR_ID column of DB2 type INTEGER NOT NULL.
 java.lang.String getOperatorType()
          This method provides access to the OPERATOR.OPERATORTYPE column of DB2 type CHAR(1) NOT NULL.
 void setOperator(java.lang.String aOperator)
          This method provides access to the OPERATOR.OPERATOR column of DB2 type CHAR(32) NOT NULL.
 void setOperatorId(java.lang.Integer aOperatorId)
          This method provides access to the OPERATOR.OPERATOR_ID column of DB2 type INTEGER NOT NULL.
 void setOperatorType(java.lang.String aOperatorType)
          This method provides access to the OPERATOR.OPERATORTYPE column of DB2 type CHAR(1) NOT NULL.
 

Constructor Detail

OperatorBean

public OperatorBean()
Method Detail

getOperator

public java.lang.String getOperator()

This method provides access to the OPERATOR.OPERATOR column of DB2 type CHAR(32) NOT NULL.

The following is a description of this column:

The operator. For example, "<" or ">".

Returns:
java.lang.String

getOperatorId

public java.lang.Integer getOperatorId()

This method provides access to the OPERATOR.OPERATOR_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Unique table index. This is the primary key.

Returns:
java.lang.Integer

getOperatorType

public java.lang.String getOperatorType()

This method provides access to the OPERATOR.OPERATORTYPE column of DB2 type CHAR(1) NOT NULL.

The following is a description of this column:

The operator type:

  1. Simple operator (allows a single value) - Default
  2. Compound operator (range - continuous)
  3. Compound operator (set)

Returns:
java.lang.String

setOperator

public void setOperator(java.lang.String aOperator)

This method provides access to the OPERATOR.OPERATOR column of DB2 type CHAR(32) NOT NULL.

The following is a description of this column:

The operator. For example, "<" or ">=".

Parameters:
aOperator - java.lang.String
Returns:
void

setOperatorId

public void setOperatorId(java.lang.Integer aOperatorId)

This method provides access to the OPERATOR.OPERATOR_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Unique table index. This is the primary key.

Parameters:
aOperatorId - java.lang.Integer
Returns:
void

setOperatorType

public void setOperatorType(java.lang.String aOperatorType)

This method provides access to the OPERATOR.OPERATORTYPE column of DB2 type CHAR(1) NOT NULL.

The following is a description of this column:

The operator type:

  1. Simple operator (allows a single value) - Default
  2. Compound operator (range - continuous)
  3. Compound operator (set)

Parameters:
aOperatorType - java.lang.String
Returns:
void