org.apache.metamodel.schema.Table.getColumn()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(228)

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

Table.getColumn介绍

[英]Gets a column by index. Use #getColumnCount() to get the (0-based) index range.
[中]按索引获取列。使用#getColumnCount()获取(基于0的)索引范围。

代码示例

代码示例来源:origin: org.apache.metamodel/MetaModel-core

  1. /**
  2. * Constructs a {@link SimpleTableDef} using a {@link Table} as a prototype.
  3. *
  4. * @param table
  5. */
  6. public SimpleTableDef(Table table) {
  7. _name = table.getName();
  8. _columnNames = new String[table.getColumnCount()];
  9. _columnTypes = new ColumnType[table.getColumnCount()];
  10. for (int i = 0; i < table.getColumnCount(); i++) {
  11. Column column = table.getColumn(i);
  12. _columnNames[i] = column.getName();
  13. _columnTypes[i] = column.getType();
  14. }
  15. }

代码示例来源:origin: apache/metamodel

  1. /**
  2. * Constructs a {@link SimpleTableDef} using a {@link Table} as a prototype.
  3. *
  4. * @param table
  5. */
  6. public SimpleTableDef(Table table) {
  7. _name = table.getName();
  8. _columnNames = new String[table.getColumnCount()];
  9. _columnTypes = new ColumnType[table.getColumnCount()];
  10. for (int i = 0; i < table.getColumnCount(); i++) {
  11. Column column = table.getColumn(i);
  12. _columnNames[i] = column.getName();
  13. _columnTypes[i] = column.getType();
  14. }
  15. }

代码示例来源:origin: datacleaner/DataCleaner

  1. private SimpleTableDef createTableDef(final Table table) {
  2. final int columnCount = table.getColumnCount();
  3. final String[] names = new String[columnCount];
  4. final ColumnType[] types = new ColumnType[columnCount];
  5. for (int i = 0; i < columnCount; i++) {
  6. names[i] = table.getColumn(i).getName();
  7. types[i] = table.getColumn(i).getType();
  8. }
  9. return new SimpleTableDef(table.getName(), names, types);
  10. }

相关文章