com.marklogic.client.row.RowSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marklogic-client-api Show documentation
Show all versions of marklogic-client-api Show documentation
The official MarkLogic Java client API.
/*
* Copyright 2016-2019 MarkLogic Corporation
*
* Licensed 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 com.marklogic.client.row;
import java.io.Closeable;
import java.util.stream.Stream;
/**
* A Row Set represents a set of rows produced by a plan
* and read from the database.
*
* The parameterized type will be RowRecord when reading each row as a map
* and can be a JSON read handle when reading each row as a JSON document,
* or an XML read handle when reading each row as a XML document.
*
* The parameterized type can also be a JSON or XML IO representation with
* a registered handle such as a Jackson JsonNode or an XML DOM Document.
*
* @param the type for reading a row from the set
*/
public interface RowSet extends Iterable, Closeable {
/**
* Identifies the columns in the row set.
* @return The column names
*/
String[] getColumnNames();
/**
* Identifies the data types of the columns.
*
* The array lists the data types only if the rows were
* requested with a RowManager configured by calling the
* setDatatypeStyle() method with RowSetPart.HEADER.
*
* Note that setting the data type style to HEADER does
* not cast the values of the column. The actual data type
* of the column values may be different from the header
* data type if the column values are inconsistent.
*
* @return The column data types
*/
String[] getColumnTypes();
/**
* Streams each row in the set of rows.
* @return a stream for the set of rows read from the database
*/
Stream stream();
}