Package org.elasticsearch.action.get.MultiGetRequest

Examples of org.elasticsearch.action.get.MultiGetRequest.Item.index()


    public boolean matches(Object item) {
      if (expected == item) return true;
      if (item == null) return false;
      if (expected.getClass() != item.getClass()) return false;
      Item other = (Item) item;
      return expected.index().equals(other.index())
          && expected.type().equals(other.type())
          && expected.id().equals(other.id())
          && Arrays.equals(expected.fields(), other.fields());
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.