syncresult
Class RawDataField

java.lang.Object
  |
  +--syncresult.RawDataField

public class RawDataField
extends java.lang.Object
implements java.io.Serializable

See Also:
Serialized Form

Constructor Summary
RawDataField(java.lang.String aname, int atype, java.lang.Object avalue, boolean aconstraint)
           
 
Method Summary
 java.lang.String getName()
           
 int getType()
           
 java.lang.Object getValue()
           
 boolean isConstraintField()
           
 void setConstraint()
          This method is used to set a filed as constraint field which will appear in the where clause
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RawDataField

public RawDataField(java.lang.String aname,
                    int atype,
                    java.lang.Object avalue,
                    boolean aconstraint)
Parameters:
aname - is the name of the filed
atype - is the Datatype of the field as specified by java.sql.Types
avalue - is the value of the field as java Object
aconstraint - is a boolean value that indicate whether the field is a constraint filed or not. ie when updataing using the RawDataField it should appear in the where clause
Method Detail

getName

public java.lang.String getName()

getType

public int getType()

getValue

public java.lang.Object getValue()

isConstraintField

public boolean isConstraintField()

setConstraint

public void setConstraint()
This method is used to set a filed as constraint field which will appear in the where clause