com.google.protobuf.OptionOrBuilder 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/type.proto
package com.google.protobuf;
public interface OptionOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.protobuf.Option)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
* The option's name. For example, `"java_package"`.
*
*
* optional string name = 1;
*/
java.lang.String getName();
/**
*
* The option's name. For example, `"java_package"`.
*
*
* optional string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* The option's value. For example, `"com.google.protobuf"`.
*
*
* optional .google.protobuf.Any value = 2;
*/
boolean hasValue();
/**
*
* The option's value. For example, `"com.google.protobuf"`.
*
*
* optional .google.protobuf.Any value = 2;
*/
com.google.protobuf.Any getValue();
}