All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yandex.ydb.table.result.StructReader Maven / Gradle / Ivy

package com.yandex.ydb.table.result;

/**
 * @author Sergey Polovko
 */
public interface StructReader {

    int getStructMembersCount();

    String getStructMemberName(int index);

    ValueReader getStructMember(int index);

    ValueReader getStructMember(String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy