Interface Row

All Known Implementing Classes:
RowBuffer

public interface Row
Represents a parsed input row represented as a character slice.
  • Method Summary

    Modifier and Type
    Method
    Description
    char[]
     
     
    int
    end()
     
    boolean
     
    boolean
    isSet(int fieldIndex)
     
    keyOf(int[] fieldPositions)
     
    int
    length(int fieldIndex)
     
    int
     
    int
    start(int fieldIndex)
     
  • Method Details

    • size

      int size()
    • isEmpty

      boolean isEmpty()
    • isSet

      boolean isSet(int fieldIndex)
    • chars

      char[] chars()
    • end

      int end()
    • start

      int start(int fieldIndex)
    • length

      int length(int fieldIndex)
    • keyOf

      RowKey keyOf(int[] fieldPositions)
    • copy

      Row copy()