Interface FieldDefinition


public interface FieldDefinition
フィールド定義を表すインターフェースです。
  • Method Summary

    Modifier and Type
    Method
    Description
    getField(int idx)
    インデックスを指定してフィールドを返します。
    インデックスは0ベースです。
    フィールド名を指定してフィールドを返します。
    int
    フィールド数を返します。
    int
    フィールド名に対応するインデックスを返します。
    インデックス順にフィールド名を返すIteratorを返します。
  • Method Details

    • getFieldCount

      int getFieldCount()
      フィールド数を返します。
    • getField

      Field getField(int idx)
      インデックスを指定してフィールドを返します。
      インデックスは0ベースです。
    • getField

      Field getField(String name)
      フィールド名を指定してフィールドを返します。
    • indexOfName

      int indexOfName(String name)
      フィールド名に対応するインデックスを返します。
    • keys

      Iterator<String> keys()
      インデックス順にフィールド名を返すIteratorを返します。