com.clarifai.grpc.api.FrameOrBuilder 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 FrameOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.Frame)
com.google.protobuf.MessageOrBuilder {
/**
*
* Information aboue frame such as number and time.
*
*
* .clarifai.api.FrameInfo frame_info = 1;
* @return Whether the frameInfo field is set.
*/
boolean hasFrameInfo();
/**
*
* Information aboue frame such as number and time.
*
*
* .clarifai.api.FrameInfo frame_info = 1;
* @return The frameInfo.
*/
com.clarifai.grpc.api.FrameInfo getFrameInfo();
/**
*
* Information aboue frame such as number and time.
*
*
* .clarifai.api.FrameInfo frame_info = 1;
*/
com.clarifai.grpc.api.FrameInfoOrBuilder getFrameInfoOrBuilder();
/**
*
* A recursive definition of the data within the Frame. For example, this will contain
* data.concepts if the Frame also has annotations or predictions of concepts within it.
* This can also have data.regions for annotation or predictions of detection regions, which can
* then recursively have their data field filled in as well.
*
*
* .clarifai.api.Data data = 2;
* @return Whether the data field is set.
*/
boolean hasData();
/**
*
* A recursive definition of the data within the Frame. For example, this will contain
* data.concepts if the Frame also has annotations or predictions of concepts within it.
* This can also have data.regions for annotation or predictions of detection regions, which can
* then recursively have their data field filled in as well.
*
*
* .clarifai.api.Data data = 2;
* @return The data.
*/
com.clarifai.grpc.api.Data getData();
/**
*
* A recursive definition of the data within the Frame. For example, this will contain
* data.concepts if the Frame also has annotations or predictions of concepts within it.
* This can also have data.regions for annotation or predictions of detection regions, which can
* then recursively have their data field filled in as well.
*
*
* .clarifai.api.Data data = 2;
*/
com.clarifai.grpc.api.DataOrBuilder getDataOrBuilder();
/**
*
* An ID for the frame.
*
*
* string id = 3;
* @return The id.
*/
java.lang.String getId();
/**
*
* An ID for the frame.
*
*
* string id = 3;
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
}