
org.elasticsearch.index.mapper.LuceneDocument Maven / Gradle / Ivy
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.index.mapper;
import org.apache.lucene.index.IndexableField;
import org.apache.lucene.util.BytesRef;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
/**
* Fork of {@link org.apache.lucene.document.Document} with additional functionality.
*/
public class LuceneDocument implements Iterable {
private final LuceneDocument parent;
private final String path;
private final String prefix;
private final List fields;
private Map
© 2015 - 2025 Weber Informatics LLC | Privacy Policy