Enum UninvertingReader.Type

    • Enum Constant Detail

      • INTEGER_POINT

        public static final UninvertingReader.Type INTEGER_POINT
        Single-valued Integer, (e.g. indexed with IntPoint)

        Fields with this type act as if they were indexed with NumericDocValuesField.

      • LONG_POINT

        public static final UninvertingReader.Type LONG_POINT
        Single-valued Integer, (e.g. indexed with LongPoint)

        Fields with this type act as if they were indexed with NumericDocValuesField.

      • FLOAT_POINT

        public static final UninvertingReader.Type FLOAT_POINT
        Single-valued Integer, (e.g. indexed with FloatPoint)

        Fields with this type act as if they were indexed with NumericDocValuesField.

      • DOUBLE_POINT

        public static final UninvertingReader.Type DOUBLE_POINT
        Single-valued Integer, (e.g. indexed with DoublePoint)

        Fields with this type act as if they were indexed with NumericDocValuesField.

      • BINARY

        public static final UninvertingReader.Type BINARY
        Single-valued Binary, (e.g. indexed with StringField)

        Fields with this type act as if they were indexed with BinaryDocValuesField.

      • SORTED

        public static final UninvertingReader.Type SORTED
        Single-valued Binary, (e.g. indexed with StringField)

        Fields with this type act as if they were indexed with SortedDocValuesField.

      • SORTED_SET_BINARY

        public static final UninvertingReader.Type SORTED_SET_BINARY
        Multi-valued Binary, (e.g. indexed with StringField)

        Fields with this type act as if they were indexed with SortedSetDocValuesField.

      • SORTED_SET_INTEGER

        public static final UninvertingReader.Type SORTED_SET_INTEGER
        Multi-valued Integer, (e.g. indexed with LegacyIntField)

        Fields with this type act as if they were indexed with SortedSetDocValuesField.

      • SORTED_SET_FLOAT

        public static final UninvertingReader.Type SORTED_SET_FLOAT
        Multi-valued Float, (e.g. indexed with LegacyFloatField)

        Fields with this type act as if they were indexed with SortedSetDocValuesField.

      • SORTED_SET_LONG

        public static final UninvertingReader.Type SORTED_SET_LONG
        Multi-valued Long, (e.g. indexed with LegacyLongField)

        Fields with this type act as if they were indexed with SortedSetDocValuesField.

      • SORTED_SET_DOUBLE

        public static final UninvertingReader.Type SORTED_SET_DOUBLE
        Multi-valued Double, (e.g. indexed with LegacyDoubleField)

        Fields with this type act as if they were indexed with SortedSetDocValuesField.

    • Method Detail

      • values

        public static UninvertingReader.Type[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (UninvertingReader.Type c : UninvertingReader.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UninvertingReader.Type valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null