com.clarifai.grpc.api.CooccurrenceMatrixOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface CooccurrenceMatrixOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.CooccurrenceMatrix)
com.google.protobuf.MessageOrBuilder {
/**
* repeated .clarifai.api.CooccurrenceMatrixEntry matrix = 1;
*/
java.util.List
getMatrixList();
/**
* repeated .clarifai.api.CooccurrenceMatrixEntry matrix = 1;
*/
com.clarifai.grpc.api.CooccurrenceMatrixEntry getMatrix(int index);
/**
* repeated .clarifai.api.CooccurrenceMatrixEntry matrix = 1;
*/
int getMatrixCount();
/**
* repeated .clarifai.api.CooccurrenceMatrixEntry matrix = 1;
*/
java.util.List extends com.clarifai.grpc.api.CooccurrenceMatrixEntryOrBuilder>
getMatrixOrBuilderList();
/**
* repeated .clarifai.api.CooccurrenceMatrixEntry matrix = 1;
*/
com.clarifai.grpc.api.CooccurrenceMatrixEntryOrBuilder getMatrixOrBuilder(
int index);
/**
*
* These concept_ids are ordered by the strength of the diagonal in the ConfusionMatrix.
*
*
* repeated string concept_ids = 2;
* @return A list containing the conceptIds.
*/
java.util.List
getConceptIdsList();
/**
*
* These concept_ids are ordered by the strength of the diagonal in the ConfusionMatrix.
*
*
* repeated string concept_ids = 2;
* @return The count of conceptIds.
*/
int getConceptIdsCount();
/**
*
* These concept_ids are ordered by the strength of the diagonal in the ConfusionMatrix.
*
*
* repeated string concept_ids = 2;
* @param index The index of the element to return.
* @return The conceptIds at the given index.
*/
java.lang.String getConceptIds(int index);
/**
*
* These concept_ids are ordered by the strength of the diagonal in the ConfusionMatrix.
*
*
* repeated string concept_ids = 2;
* @param index The index of the value to return.
* @return The bytes of the conceptIds at the given index.
*/
com.google.protobuf.ByteString
getConceptIdsBytes(int index);
}