com.clarifai.grpc.api.CooccurrenceMatrixEntryOrBuilder 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 CooccurrenceMatrixEntryOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.CooccurrenceMatrixEntry)
com.google.protobuf.MessageOrBuilder {
/**
*
* concept_id for the row
*
*
* string row = 1;
* @return The row.
*/
java.lang.String getRow();
/**
*
* concept_id for the row
*
*
* string row = 1;
* @return The bytes for row.
*/
com.google.protobuf.ByteString
getRowBytes();
/**
*
* concept_id for the col
*
*
* string col = 2;
* @return The col.
*/
java.lang.String getCol();
/**
*
* concept_id for the col
*
*
* string col = 2;
* @return The bytes for col.
*/
com.google.protobuf.ByteString
getColBytes();
/**
* uint32 count = 3;
* @return The count.
*/
int getCount();
}