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-java Show documentation
Show all versions of protobuf-java Show documentation
Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an
efficient yet extensible format.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: google/protobuf/type.proto
// Protobuf Java Version: 4.28.1
package com.google.protobuf;
public interface OptionOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.protobuf.Option)
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();
/**
* .google.protobuf.Any value = 2 [json_name = "value"];
* @return Whether the value field is set.
*/
boolean hasValue();
/**
* .google.protobuf.Any value = 2 [json_name = "value"];
* @return The value.
*/
com.google.protobuf.Any getValue();
/**
* .google.protobuf.Any value = 2 [json_name = "value"];
*/
com.google.protobuf.AnyOrBuilder getValueOrBuilder();
}