Interface RawValueBasedInvertedIndexCreator

    • Method Summary

      Modifier and Type Method Description
      void add​(double value)
      For single-value column, adds the double value for the next document.
      void add​(double[] values, int length)
      For multi-value column, adds the double values for the next document.
      void add​(float value)
      For single-value column, adds the float value for the next document.
      void add​(float[] values, int length)
      For multi-value column, adds the float values for the next document.
      void add​(int value)
      For single-value column, adds the int value for the next document.
      void add​(int[] values, int length)
      For multi-value column, adds the int values for the next document.
      void add​(long value)
      For single-value column, adds the long value for the next document.
      void add​(long[] values, int length)
      For multi-value column, adds the long values for the next document.
    • Method Detail

      • add

        void add​(int value)
        For single-value column, adds the int value for the next document.
      • add

        void add​(int[] values,
                 int length)
        For multi-value column, adds the int values for the next document.
      • add

        void add​(long value)
        For single-value column, adds the long value for the next document.
      • add

        void add​(long[] values,
                 int length)
        For multi-value column, adds the long values for the next document.
      • add

        void add​(float value)
        For single-value column, adds the float value for the next document.
      • add

        void add​(float[] values,
                 int length)
        For multi-value column, adds the float values for the next document.
      • add

        void add​(double value)
        For single-value column, adds the double value for the next document.
      • add

        void add​(double[] values,
                 int length)
        For multi-value column, adds the double values for the next document.