org.apache.solr.client.solrj.io.Tuple Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.solr.client.solrj.io;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.time.Instant;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.solr.common.MapWriter;
import org.apache.solr.common.params.StreamParams;
/**
* A simple abstraction of a record containing key/value pairs.
* Convenience methods are provided for returning single and multiValue String, Long and Double values.
* Note that ints and floats are treated as longs and doubles respectively.
*
**/
public class Tuple implements Cloneable, MapWriter {
/**
* When EOF field is true the Tuple marks the end of the stream.
* The EOF Tuple will not contain a record from the stream, but it may contain
* metrics/aggregates gathered by underlying streams.
* */
public boolean EOF;
/**
* When EXCEPTION field is true the Tuple marks an exception in the stream
* and the corresponding "EXCEPTION" field contains a related message.
*/
public boolean EXCEPTION;
/**
* Tuple fields.
* @deprecated use {@link #getFields()} instead of this public field.
*/
@Deprecated
public Map
© 2015 - 2025 Weber Informatics LLC | Privacy Policy