com.google.protobuf.EnumOrBuilder 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 EnumOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.protobuf.Enum)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
* Enum type name.
*
*
* optional string name = 1;
*/
java.lang.String getName();
/**
*
* Enum type name.
*
*
* optional string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
java.util.List
getEnumvalueList();
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
com.google.protobuf.EnumValue getEnumvalue(int index);
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
int getEnumvalueCount();
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
java.util.List
getOptionsList();
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
com.google.protobuf.Option getOptions(int index);
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
int getOptionsCount();
/**
*
* The source context.
*
*
* optional .google.protobuf.SourceContext source_context = 4;
*/
boolean hasSourceContext();
/**
*
* The source context.
*
*
* optional .google.protobuf.SourceContext source_context = 4;
*/
com.google.protobuf.SourceContext getSourceContext();
/**
*
* The source syntax.
*
*
* optional .google.protobuf.Syntax syntax = 5;
*/
int getSyntaxValue();
/**
*
* The source syntax.
*
*
* optional .google.protobuf.Syntax syntax = 5;
*/
com.google.protobuf.Syntax getSyntax();
}