Package com.google.protobuf
Class Method.Builder
- java.lang.Object
-
- com.google.protobuf.AbstractMessageLite.Builder<MessageType,BuilderType>
-
- com.google.protobuf.GeneratedMessageLite.Builder<Method,Method.Builder>
-
- com.google.protobuf.Method.Builder
-
- All Implemented Interfaces:
MessageLite.Builder
,MessageLiteOrBuilder
,MethodOrBuilder
,java.lang.Cloneable
- Enclosing class:
- Method
public static final class Method.Builder extends GeneratedMessageLite.Builder<Method,Method.Builder> implements MethodOrBuilder
Method represents a method of an API interface.
Protobuf typegoogle.protobuf.Method
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite.Builder
AbstractMessageLite.Builder.LimitedInputStream
-
-
Field Summary
-
Fields inherited from class com.google.protobuf.GeneratedMessageLite.Builder
instance, isBuilt
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Method.Builder
addAllOptions(java.lang.Iterable<? extends Option> values)
Any metadata attached to the method.Method.Builder
addOptions(int index, Option value)
Any metadata attached to the method.Method.Builder
addOptions(int index, Option.Builder builderForValue)
Any metadata attached to the method.Method.Builder
addOptions(Option value)
Any metadata attached to the method.Method.Builder
addOptions(Option.Builder builderForValue)
Any metadata attached to the method.Method.Builder
clearName()
The simple name of this method.Method.Builder
clearOptions()
Any metadata attached to the method.Method.Builder
clearRequestStreaming()
If true, the request is streamed.Method.Builder
clearRequestTypeUrl()
A URL of the input message type.Method.Builder
clearResponseStreaming()
If true, the response is streamed.Method.Builder
clearResponseTypeUrl()
The URL of the output message type.Method.Builder
clearSyntax()
The source syntax of this method.java.lang.String
getName()
The simple name of this method.ByteString
getNameBytes()
The simple name of this method.Option
getOptions(int index)
Any metadata attached to the method.int
getOptionsCount()
Any metadata attached to the method.java.util.List<Option>
getOptionsList()
Any metadata attached to the method.boolean
getRequestStreaming()
If true, the request is streamed.java.lang.String
getRequestTypeUrl()
A URL of the input message type.ByteString
getRequestTypeUrlBytes()
A URL of the input message type.boolean
getResponseStreaming()
If true, the response is streamed.java.lang.String
getResponseTypeUrl()
The URL of the output message type.ByteString
getResponseTypeUrlBytes()
The URL of the output message type.Syntax
getSyntax()
The source syntax of this method.int
getSyntaxValue()
The source syntax of this method.Method.Builder
removeOptions(int index)
Any metadata attached to the method.Method.Builder
setName(java.lang.String value)
The simple name of this method.Method.Builder
setNameBytes(ByteString value)
The simple name of this method.Method.Builder
setOptions(int index, Option value)
Any metadata attached to the method.Method.Builder
setOptions(int index, Option.Builder builderForValue)
Any metadata attached to the method.Method.Builder
setRequestStreaming(boolean value)
If true, the request is streamed.Method.Builder
setRequestTypeUrl(java.lang.String value)
A URL of the input message type.Method.Builder
setRequestTypeUrlBytes(ByteString value)
A URL of the input message type.Method.Builder
setResponseStreaming(boolean value)
If true, the response is streamed.Method.Builder
setResponseTypeUrl(java.lang.String value)
The URL of the output message type.Method.Builder
setResponseTypeUrlBytes(ByteString value)
The URL of the output message type.Method.Builder
setSyntax(Syntax value)
The source syntax of this method.Method.Builder
setSyntaxValue(int value)
The source syntax of this method.-
Methods inherited from class com.google.protobuf.GeneratedMessageLite.Builder
build, buildPartial, clear, clone, copyOnWrite, copyOnWriteInternal, getDefaultInstanceForType, internalMergeFrom, isInitialized, mergeFrom, mergeFrom, mergeFrom, mergeFrom
-
Methods inherited from class com.google.protobuf.AbstractMessageLite.Builder
addAll, addAll, mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, newUninitializedMessageException
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
The simple name of this method.
string name = 1;
- Specified by:
getName
in interfaceMethodOrBuilder
- Returns:
- The name.
-
getNameBytes
public ByteString getNameBytes()
The simple name of this method.
string name = 1;
- Specified by:
getNameBytes
in interfaceMethodOrBuilder
- Returns:
- The bytes for name.
-
setName
public Method.Builder setName(java.lang.String value)
The simple name of this method.
string name = 1;
- Parameters:
value
- The name to set.- Returns:
- This builder for chaining.
-
clearName
public Method.Builder clearName()
The simple name of this method.
string name = 1;
- Returns:
- This builder for chaining.
-
setNameBytes
public Method.Builder setNameBytes(ByteString value)
The simple name of this method.
string name = 1;
- Parameters:
value
- The bytes for name to set.- Returns:
- This builder for chaining.
-
getRequestTypeUrl
public java.lang.String getRequestTypeUrl()
A URL of the input message type.
string request_type_url = 2;
- Specified by:
getRequestTypeUrl
in interfaceMethodOrBuilder
- Returns:
- The requestTypeUrl.
-
getRequestTypeUrlBytes
public ByteString getRequestTypeUrlBytes()
A URL of the input message type.
string request_type_url = 2;
- Specified by:
getRequestTypeUrlBytes
in interfaceMethodOrBuilder
- Returns:
- The bytes for requestTypeUrl.
-
setRequestTypeUrl
public Method.Builder setRequestTypeUrl(java.lang.String value)
A URL of the input message type.
string request_type_url = 2;
- Parameters:
value
- The requestTypeUrl to set.- Returns:
- This builder for chaining.
-
clearRequestTypeUrl
public Method.Builder clearRequestTypeUrl()
A URL of the input message type.
string request_type_url = 2;
- Returns:
- This builder for chaining.
-
setRequestTypeUrlBytes
public Method.Builder setRequestTypeUrlBytes(ByteString value)
A URL of the input message type.
string request_type_url = 2;
- Parameters:
value
- The bytes for requestTypeUrl to set.- Returns:
- This builder for chaining.
-
getRequestStreaming
public boolean getRequestStreaming()
If true, the request is streamed.
bool request_streaming = 3;
- Specified by:
getRequestStreaming
in interfaceMethodOrBuilder
- Returns:
- The requestStreaming.
-
setRequestStreaming
public Method.Builder setRequestStreaming(boolean value)
If true, the request is streamed.
bool request_streaming = 3;
- Parameters:
value
- The requestStreaming to set.- Returns:
- This builder for chaining.
-
clearRequestStreaming
public Method.Builder clearRequestStreaming()
If true, the request is streamed.
bool request_streaming = 3;
- Returns:
- This builder for chaining.
-
getResponseTypeUrl
public java.lang.String getResponseTypeUrl()
The URL of the output message type.
string response_type_url = 4;
- Specified by:
getResponseTypeUrl
in interfaceMethodOrBuilder
- Returns:
- The responseTypeUrl.
-
getResponseTypeUrlBytes
public ByteString getResponseTypeUrlBytes()
The URL of the output message type.
string response_type_url = 4;
- Specified by:
getResponseTypeUrlBytes
in interfaceMethodOrBuilder
- Returns:
- The bytes for responseTypeUrl.
-
setResponseTypeUrl
public Method.Builder setResponseTypeUrl(java.lang.String value)
The URL of the output message type.
string response_type_url = 4;
- Parameters:
value
- The responseTypeUrl to set.- Returns:
- This builder for chaining.
-
clearResponseTypeUrl
public Method.Builder clearResponseTypeUrl()
The URL of the output message type.
string response_type_url = 4;
- Returns:
- This builder for chaining.
-
setResponseTypeUrlBytes
public Method.Builder setResponseTypeUrlBytes(ByteString value)
The URL of the output message type.
string response_type_url = 4;
- Parameters:
value
- The bytes for responseTypeUrl to set.- Returns:
- This builder for chaining.
-
getResponseStreaming
public boolean getResponseStreaming()
If true, the response is streamed.
bool response_streaming = 5;
- Specified by:
getResponseStreaming
in interfaceMethodOrBuilder
- Returns:
- The responseStreaming.
-
setResponseStreaming
public Method.Builder setResponseStreaming(boolean value)
If true, the response is streamed.
bool response_streaming = 5;
- Parameters:
value
- The responseStreaming to set.- Returns:
- This builder for chaining.
-
clearResponseStreaming
public Method.Builder clearResponseStreaming()
If true, the response is streamed.
bool response_streaming = 5;
- Returns:
- This builder for chaining.
-
getOptionsList
public java.util.List<Option> getOptionsList()
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
- Specified by:
getOptionsList
in interfaceMethodOrBuilder
-
getOptionsCount
public int getOptionsCount()
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
- Specified by:
getOptionsCount
in interfaceMethodOrBuilder
-
getOptions
public Option getOptions(int index)
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
- Specified by:
getOptions
in interfaceMethodOrBuilder
-
setOptions
public Method.Builder setOptions(int index, Option value)
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
-
setOptions
public Method.Builder setOptions(int index, Option.Builder builderForValue)
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
-
addOptions
public Method.Builder addOptions(Option value)
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
-
addOptions
public Method.Builder addOptions(int index, Option value)
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
-
addOptions
public Method.Builder addOptions(Option.Builder builderForValue)
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
-
addOptions
public Method.Builder addOptions(int index, Option.Builder builderForValue)
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
-
addAllOptions
public Method.Builder addAllOptions(java.lang.Iterable<? extends Option> values)
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
-
clearOptions
public Method.Builder clearOptions()
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
-
removeOptions
public Method.Builder removeOptions(int index)
Any metadata attached to the method.
repeated .google.protobuf.Option options = 6;
-
getSyntaxValue
public int getSyntaxValue()
The source syntax of this method.
.google.protobuf.Syntax syntax = 7;
- Specified by:
getSyntaxValue
in interfaceMethodOrBuilder
- Returns:
- The enum numeric value on the wire for syntax.
-
setSyntaxValue
public Method.Builder setSyntaxValue(int value)
The source syntax of this method.
.google.protobuf.Syntax syntax = 7;
- Parameters:
value
- The syntax to set.- Returns:
- This builder for chaining.
-
getSyntax
public Syntax getSyntax()
The source syntax of this method.
.google.protobuf.Syntax syntax = 7;
- Specified by:
getSyntax
in interfaceMethodOrBuilder
- Returns:
- The syntax.
-
setSyntax
public Method.Builder setSyntax(Syntax value)
The source syntax of this method.
.google.protobuf.Syntax syntax = 7;
- Parameters:
value
- The enum numeric value on the wire for syntax to set.- Returns:
- This builder for chaining.
-
clearSyntax
public Method.Builder clearSyntax()
The source syntax of this method.
.google.protobuf.Syntax syntax = 7;
- Returns:
- This builder for chaining.
-
-