/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ package org.opensearch.jdbc.internal.results; import java.util.List; public class Row { private List columnData; public Row(List columnData) { this.columnData = columnData; } public Object get(int index) { return columnData.get(index); } }