程序包 gu.sql2java

类 UnnameRow

java.lang.Object
gu.sql2java.BaseRow
gu.sql2java.UnnameRow
所有已实现的接口:
BaseBean, Cloneable, Comparable<BaseRow>

public class UnnameRow extends BaseRow
  • 构造器详细资料

  • 方法详细资料

    • isNew

      public boolean isNew()
      从接口复制的说明: BaseBean
      Determines if the current object is new.
      返回:
      true if the current object is new, false if the object is not new
    • setNew

      public void setNew(boolean isNew)
      从接口复制的说明: BaseBean
      Specifies to the object if it has been set as new.
      参数:
      isNew - the boolean value to be assigned to the isNew field
    • getInitialized

      public String getInitialized()
      返回:
      the initialized status of columns
    • setInitialized

      public void setInitialized(String initialized)
      参数:
      initialized - the initialized status of columns
    • getModified

      public String getModified()
      返回:
      the modified status of columns
    • setModified

      public void setModified(String modified)
      参数:
      modified - the modified status of columns
    • resetModified

      public void resetModified()
      从接口复制的说明: BaseBean
      Resets the object modification status to 'not modified'.
    • resetModified

      public void resetModified(int columnID)
      从接口复制的说明: BaseBean
      reset columns modification status defined by columnID
      参数:
      columnID - column id
    • modified

      public void modified(int columnID)
      从接口复制的说明: BaseBean
      set the object modification status to 'modified' and initialization status to 'initialized'
      参数:
      columnID - column id
    • isInitialized

      public final boolean isInitialized(int columnID)
      从接口复制的说明: BaseBean
      Determines if the columnID has been initialized.
      It is useful to determine if a field is null on purpose or just because it has not been initialized.
      参数:
      columnID - column id
      返回:
      true if the field has been initialized, false otherwise
    • isModified

      public final boolean isModified(int columnID)
      从接口复制的说明: BaseBean
      Determines if the columnID has been modified.
      参数:
      columnID - column id
      返回:
      true if the field has been modified, false if the field has not been modified
    • getValue

      public final <T> T getValue(int columnID)
      指定者:
      getValue 在接口中 BaseBean
      覆盖:
      getValue 在类中 BaseRow
      参数:
      columnID - column id
      返回:
      return a object representation of the given column id
    • getOriginValue

      public <T> T getOriginValue(int columnID)
      指定者:
      getOriginValue 在接口中 BaseBean
      覆盖:
      getOriginValue 在类中 BaseRow
      参数:
      columnID - column id
      返回:
      return a origin object representation of the given column id
    • setValue

      public final <T> void setValue(int columnID, T value)
      从接口复制的说明: BaseBean
      set a value representation of the given column id
      指定者:
      setValue 在接口中 BaseBean
      覆盖:
      setValue 在类中 BaseRow
      参数:
      columnID - column id
    • asValueArray

      public Object[] asValueArray(int... columnIds)
      指定者:
      asValueArray 在接口中 BaseBean
      覆盖:
      asValueArray 在类中 BaseRow
      参数:
      columnIds - column id that will be output, if null or empty,output all columns
      返回:
      values array for all fields
    • clone

      public UnnameRow clone()
      指定者:
      clone 在接口中 BaseBean
      覆盖:
      clone 在类中 BaseRow