com.google.protobuf.MethodOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protobuf-lite Show documentation
Show all versions of protobuf-lite Show documentation
A trimmed-down version of the Protocol Buffers library.
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.MessageLiteOrBuilder {
/**
*
* The simple name of this method.
*
*
* optional string name = 1;
*/
java.lang.String getName();
/**
*
* The simple name of this method.
*
*
* optional string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* A URL of the input message type.
*
*
* optional string request_type_url = 2;
*/
java.lang.String getRequestTypeUrl();
/**
*
* A URL of the input message type.
*
*
* optional string request_type_url = 2;
*/
com.google.protobuf.ByteString
getRequestTypeUrlBytes();
/**
*
* If true, the request is streamed.
*
*
* optional bool request_streaming = 3;
*/
boolean getRequestStreaming();
/**
*
* The URL of the output message type.
*
*
* optional string response_type_url = 4;
*/
java.lang.String getResponseTypeUrl();
/**
*
* The URL of the output message type.
*
*
* optional string response_type_url = 4;
*/
com.google.protobuf.ByteString
getResponseTypeUrlBytes();
/**
*
* If true, the response is streamed.
*
*
* optional bool response_streaming = 5;
*/
boolean getResponseStreaming();
/**
*
* Any metadata attached to the method.
*
*
* repeated .google.protobuf.Option options = 6;
*/
java.util.List
getOptionsList();
/**
*
* Any metadata attached to the method.
*
*
* repeated .google.protobuf.Option options = 6;
*/
com.google.protobuf.Option getOptions(int index);
/**
*
* Any metadata attached to the method.
*
*
* repeated .google.protobuf.Option options = 6;
*/
int getOptionsCount();
/**
*
* The source syntax of this method.
*
*
* optional .google.protobuf.Syntax syntax = 7;
*/
int getSyntaxValue();
/**
*
* The source syntax of this method.
*
*
* optional .google.protobuf.Syntax syntax = 7;
*/
com.google.protobuf.Syntax getSyntax();
}