de.tum.cit.ase.athena.protobuf.SegmentOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athena-client Show documentation
Show all versions of athena-client Show documentation
A system to support (semi-)automated assessment of textual exercises.
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: clustering.proto
package de.tum.cit.ase.athena.protobuf;
public interface SegmentOrBuilder extends
// @@protoc_insertion_point(interface_extends:Segment)
com.google.protobuf.MessageOrBuilder {
/**
* string id = 1;
* @return The id.
*/
java.lang.String getId();
/**
* string id = 1;
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
/**
* optional int32 submissionId = 2;
* @return Whether the submissionId field is set.
*/
boolean hasSubmissionId();
/**
* optional int32 submissionId = 2;
* @return The submissionId.
*/
int getSubmissionId();
/**
* optional string text = 3;
* @return Whether the text field is set.
*/
boolean hasText();
/**
* optional string text = 3;
* @return The text.
*/
java.lang.String getText();
/**
* optional string text = 3;
* @return The bytes for text.
*/
com.google.protobuf.ByteString
getTextBytes();
/**
* optional int32 startIndex = 4;
* @return Whether the startIndex field is set.
*/
boolean hasStartIndex();
/**
* optional int32 startIndex = 4;
* @return The startIndex.
*/
int getStartIndex();
/**
* optional int32 endIndex = 5;
* @return Whether the endIndex field is set.
*/
boolean hasEndIndex();
/**
* optional int32 endIndex = 5;
* @return The endIndex.
*/
int getEndIndex();
}