com.google.protobuf.MethodOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/protobuf/api.proto
package com.google.protobuf;
public interface MethodOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.protobuf.Method)
com.google.protobuf.MessageOrBuilder {
/**
* string name = 1 [json_name = "name"];
* @return The name.
*/
java.lang.String getName();
/**
* string name = 1 [json_name = "name"];
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* string request_type_url = 2 [json_name = "requestTypeUrl"];
* @return The requestTypeUrl.
*/
java.lang.String getRequestTypeUrl();
/**
* string request_type_url = 2 [json_name = "requestTypeUrl"];
* @return The bytes for requestTypeUrl.
*/
com.google.protobuf.ByteString
getRequestTypeUrlBytes();
/**
* bool request_streaming = 3 [json_name = "requestStreaming"];
* @return The requestStreaming.
*/
boolean getRequestStreaming();
/**
* string response_type_url = 4 [json_name = "responseTypeUrl"];
* @return The responseTypeUrl.
*/
java.lang.String getResponseTypeUrl();
/**
* string response_type_url = 4 [json_name = "responseTypeUrl"];
* @return The bytes for responseTypeUrl.
*/
com.google.protobuf.ByteString
getResponseTypeUrlBytes();
/**
* bool response_streaming = 5 [json_name = "responseStreaming"];
* @return The responseStreaming.
*/
boolean getResponseStreaming();
/**
* repeated .google.protobuf.Option options = 6 [json_name = "options"];
*/
java.util.List
getOptionsList();
/**
* repeated .google.protobuf.Option options = 6 [json_name = "options"];
*/
com.google.protobuf.Option getOptions(int index);
/**
* repeated .google.protobuf.Option options = 6 [json_name = "options"];
*/
int getOptionsCount();
/**
* repeated .google.protobuf.Option options = 6 [json_name = "options"];
*/
java.util.List extends com.google.protobuf.OptionOrBuilder>
getOptionsOrBuilderList();
/**
* repeated .google.protobuf.Option options = 6 [json_name = "options"];
*/
com.google.protobuf.OptionOrBuilder getOptionsOrBuilder(
int index);
/**
* .google.protobuf.Syntax syntax = 7 [json_name = "syntax"];
* @return The enum numeric value on the wire for syntax.
*/
int getSyntaxValue();
/**
* .google.protobuf.Syntax syntax = 7 [json_name = "syntax"];
* @return The syntax.
*/
com.google.protobuf.Syntax getSyntax();
}