org.jbundle.thin.base.db.FieldList.getEndingID()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(96)

本文整理了Java中org.jbundle.thin.base.db.FieldList.getEndingID()方法的一些代码示例,展示了FieldList.getEndingID()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FieldList.getEndingID()方法的具体详情如下:
包路径:org.jbundle.thin.base.db.FieldList
类名称:FieldList
方法名:getEndingID

FieldList.getEndingID介绍

[英]Get the ending ID for this table. Override this for different behavior.
[中]获取此表的结束ID。为不同的行为重写此选项。

代码示例

代码示例来源:origin: org.jbundle.base/org.jbundle.base.mixed

/**
 * Get the starting ID for this table.
 * Override this for different behavior.
 * @return The starting id
 */
public int getEndingID()
{
  if (this.getTable() != null)
    if (this.getTable().getDatabase() != null)
      return this.getTable().getDatabase().getEndingID();
  return super.getEndingID();   // Never (default)
}
/**

代码示例来源:origin: org.jbundle.base.db/org.jbundle.base.db

/**
 * Get the starting ID for this table.
 * Override this for different behavior.
 * @return The starting id
 */
public int getEndingID()
{
  if (this.getTable() != null)
    if (this.getTable().getDatabase() != null)
      return this.getTable().getDatabase().getEndingID();
  return super.getEndingID();   // Never (default)
}
/**

代码示例来源:origin: org.jbundle.base/org.jbundle.base

/**
 * Get the starting ID for this table.
 * Override this for different behavior.
 * @return The starting id
 */
public int getEndingID()
{
  if (this.getTable() != null)
    if (this.getTable().getDatabase() != null)
      return this.getTable().getDatabase().getEndingID();
  return super.getEndingID();   // Never (default)
}
/**

相关文章