Interface IIndex


public interface IIndex
  • Method Summary

    Modifier and Type
    Method
    Description
    add(String fieldName, Object value)
    Adds a value to the list associated with a key
    default IIndex
    add(String fieldName, Collection<?> values)
     
  • Method Details

    • add

      IIndex add(String fieldName, Object value)
      Adds a value to the list associated with a key
      Parameters:
      fieldName - key
      value - value
      Returns:
      this
    • add

      default IIndex add(String fieldName, Collection<?> values)