com.google.protobuf.Enum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protobuf-javalite Show documentation
Show all versions of protobuf-javalite Show documentation
Lite version of Protocol Buffers library. This version is optimized for code size, but does
not guarantee API/ABI stability.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/protobuf/type.proto
package com.google.protobuf;
/**
*
* Enum type definition.
*
*
* Protobuf type {@code google.protobuf.Enum}
*/
public final class Enum extends
com.google.protobuf.GeneratedMessageLite<
Enum, Enum.Builder> implements
// @@protoc_insertion_point(message_implements:google.protobuf.Enum)
EnumOrBuilder {
private Enum() {
name_ = "";
enumvalue_ = emptyProtobufList();
options_ = emptyProtobufList();
}
public static final int NAME_FIELD_NUMBER = 1;
private java.lang.String name_;
/**
*
* Enum type name.
*
*
* string name = 1;
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
return name_;
}
/**
*
* Enum type name.
*
*
* string name = 1;
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getNameBytes() {
return com.google.protobuf.ByteString.copyFromUtf8(name_);
}
/**
*
* Enum type name.
*
*
* string name = 1;
* @param value The name to set.
*/
private void setName(
java.lang.String value) {
java.lang.Class> valueClass = value.getClass();
name_ = value;
}
/**
*
* Enum type name.
*
*
* string name = 1;
*/
private void clearName() {
name_ = getDefaultInstance().getName();
}
/**
*
* Enum type name.
*
*
* string name = 1;
* @param value The bytes for name to set.
*/
private void setNameBytes(
com.google.protobuf.ByteString value) {
checkByteStringIsUtf8(value);
name_ = value.toStringUtf8();
}
public static final int ENUMVALUE_FIELD_NUMBER = 2;
private com.google.protobuf.Internal.ProtobufList enumvalue_;
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
@java.lang.Override
public java.util.List getEnumvalueList() {
return enumvalue_;
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
public java.util.List extends com.google.protobuf.EnumValueOrBuilder>
getEnumvalueOrBuilderList() {
return enumvalue_;
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
@java.lang.Override
public int getEnumvalueCount() {
return enumvalue_.size();
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
@java.lang.Override
public com.google.protobuf.EnumValue getEnumvalue(int index) {
return enumvalue_.get(index);
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
public com.google.protobuf.EnumValueOrBuilder getEnumvalueOrBuilder(
int index) {
return enumvalue_.get(index);
}
private void ensureEnumvalueIsMutable() {
com.google.protobuf.Internal.ProtobufList tmp = enumvalue_;
if (!tmp.isModifiable()) {
enumvalue_ =
com.google.protobuf.GeneratedMessageLite.mutableCopy(tmp);
}
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
private void setEnumvalue(
int index, com.google.protobuf.EnumValue value) {
value.getClass();
ensureEnumvalueIsMutable();
enumvalue_.set(index, value);
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
private void addEnumvalue(com.google.protobuf.EnumValue value) {
value.getClass();
ensureEnumvalueIsMutable();
enumvalue_.add(value);
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
private void addEnumvalue(
int index, com.google.protobuf.EnumValue value) {
value.getClass();
ensureEnumvalueIsMutable();
enumvalue_.add(index, value);
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
private void addAllEnumvalue(
java.lang.Iterable extends com.google.protobuf.EnumValue> values) {
ensureEnumvalueIsMutable();
com.google.protobuf.AbstractMessageLite.addAll(
values, enumvalue_);
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
private void clearEnumvalue() {
enumvalue_ = emptyProtobufList();
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
private void removeEnumvalue(int index) {
ensureEnumvalueIsMutable();
enumvalue_.remove(index);
}
public static final int OPTIONS_FIELD_NUMBER = 3;
private com.google.protobuf.Internal.ProtobufList options_;
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
@java.lang.Override
public java.util.List getOptionsList() {
return options_;
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
public java.util.List extends com.google.protobuf.OptionOrBuilder>
getOptionsOrBuilderList() {
return options_;
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
@java.lang.Override
public int getOptionsCount() {
return options_.size();
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
@java.lang.Override
public com.google.protobuf.Option getOptions(int index) {
return options_.get(index);
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
public com.google.protobuf.OptionOrBuilder getOptionsOrBuilder(
int index) {
return options_.get(index);
}
private void ensureOptionsIsMutable() {
com.google.protobuf.Internal.ProtobufList tmp = options_;
if (!tmp.isModifiable()) {
options_ =
com.google.protobuf.GeneratedMessageLite.mutableCopy(tmp);
}
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
private void setOptions(
int index, com.google.protobuf.Option value) {
value.getClass();
ensureOptionsIsMutable();
options_.set(index, value);
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
private void addOptions(com.google.protobuf.Option value) {
value.getClass();
ensureOptionsIsMutable();
options_.add(value);
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
private void addOptions(
int index, com.google.protobuf.Option value) {
value.getClass();
ensureOptionsIsMutable();
options_.add(index, value);
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
private void addAllOptions(
java.lang.Iterable extends com.google.protobuf.Option> values) {
ensureOptionsIsMutable();
com.google.protobuf.AbstractMessageLite.addAll(
values, options_);
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
private void clearOptions() {
options_ = emptyProtobufList();
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
private void removeOptions(int index) {
ensureOptionsIsMutable();
options_.remove(index);
}
public static final int SOURCE_CONTEXT_FIELD_NUMBER = 4;
private com.google.protobuf.SourceContext sourceContext_;
/**
*
* The source context.
*
*
* .google.protobuf.SourceContext source_context = 4;
*/
@java.lang.Override
public boolean hasSourceContext() {
return sourceContext_ != null;
}
/**
*
* The source context.
*
*
* .google.protobuf.SourceContext source_context = 4;
*/
@java.lang.Override
public com.google.protobuf.SourceContext getSourceContext() {
return sourceContext_ == null ? com.google.protobuf.SourceContext.getDefaultInstance() : sourceContext_;
}
/**
*
* The source context.
*
*
* .google.protobuf.SourceContext source_context = 4;
*/
private void setSourceContext(com.google.protobuf.SourceContext value) {
value.getClass();
sourceContext_ = value;
}
/**
*
* The source context.
*
*
* .google.protobuf.SourceContext source_context = 4;
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeSourceContext(com.google.protobuf.SourceContext value) {
value.getClass();
if (sourceContext_ != null &&
sourceContext_ != com.google.protobuf.SourceContext.getDefaultInstance()) {
sourceContext_ =
com.google.protobuf.SourceContext.newBuilder(sourceContext_).mergeFrom(value).buildPartial();
} else {
sourceContext_ = value;
}
}
/**
*
* The source context.
*
*
* .google.protobuf.SourceContext source_context = 4;
*/
private void clearSourceContext() { sourceContext_ = null;
}
public static final int SYNTAX_FIELD_NUMBER = 5;
private int syntax_;
/**
*
* The source syntax.
*
*
* .google.protobuf.Syntax syntax = 5;
* @return The enum numeric value on the wire for syntax.
*/
@java.lang.Override
public int getSyntaxValue() {
return syntax_;
}
/**
*
* The source syntax.
*
*
* .google.protobuf.Syntax syntax = 5;
* @return The syntax.
*/
@java.lang.Override
public com.google.protobuf.Syntax getSyntax() {
com.google.protobuf.Syntax result = com.google.protobuf.Syntax.forNumber(syntax_);
return result == null ? com.google.protobuf.Syntax.UNRECOGNIZED : result;
}
/**
*
* The source syntax.
*
*
* .google.protobuf.Syntax syntax = 5;
* @param value The enum numeric value on the wire for syntax to set.
*/
private void setSyntaxValue(int value) {
syntax_ = value;
}
/**
*
* The source syntax.
*
*
* .google.protobuf.Syntax syntax = 5;
* @param value The syntax to set.
*/
private void setSyntax(com.google.protobuf.Syntax value) {
syntax_ = value.getNumber();
}
/**
*
* The source syntax.
*
*
* .google.protobuf.Syntax syntax = 5;
*/
private void clearSyntax() {
syntax_ = 0;
}
public static com.google.protobuf.Enum parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.google.protobuf.Enum parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data, extensionRegistry);
}
public static com.google.protobuf.Enum parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.google.protobuf.Enum parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data, extensionRegistry);
}
public static com.google.protobuf.Enum parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.google.protobuf.Enum parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data, extensionRegistry);
}
public static com.google.protobuf.Enum parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.google.protobuf.Enum parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input, extensionRegistry);
}
public static com.google.protobuf.Enum parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input);
}
public static com.google.protobuf.Enum parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
}
public static com.google.protobuf.Enum parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.google.protobuf.Enum parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input, extensionRegistry);
}
public static Builder newBuilder() {
return (Builder) DEFAULT_INSTANCE.createBuilder();
}
public static Builder newBuilder(com.google.protobuf.Enum prototype) {
return (Builder) DEFAULT_INSTANCE.createBuilder(prototype);
}
/**
*
* Enum type definition.
*
*
* Protobuf type {@code google.protobuf.Enum}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageLite.Builder<
com.google.protobuf.Enum, Builder> implements
// @@protoc_insertion_point(builder_implements:google.protobuf.Enum)
com.google.protobuf.EnumOrBuilder {
// Construct using com.google.protobuf.Enum.newBuilder()
private Builder() {
super(DEFAULT_INSTANCE);
}
/**
*
* Enum type name.
*
*
* string name = 1;
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
return instance.getName();
}
/**
*
* Enum type name.
*
*
* string name = 1;
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getNameBytes() {
return instance.getNameBytes();
}
/**
*
* Enum type name.
*
*
* string name = 1;
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(
java.lang.String value) {
copyOnWrite();
instance.setName(value);
return this;
}
/**
*
* Enum type name.
*
*
* string name = 1;
* @return This builder for chaining.
*/
public Builder clearName() {
copyOnWrite();
instance.clearName();
return this;
}
/**
*
* Enum type name.
*
*
* string name = 1;
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
copyOnWrite();
instance.setNameBytes(value);
return this;
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
@java.lang.Override
public java.util.List getEnumvalueList() {
return java.util.Collections.unmodifiableList(
instance.getEnumvalueList());
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
@java.lang.Override
public int getEnumvalueCount() {
return instance.getEnumvalueCount();
}/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
@java.lang.Override
public com.google.protobuf.EnumValue getEnumvalue(int index) {
return instance.getEnumvalue(index);
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
public Builder setEnumvalue(
int index, com.google.protobuf.EnumValue value) {
copyOnWrite();
instance.setEnumvalue(index, value);
return this;
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
public Builder setEnumvalue(
int index, com.google.protobuf.EnumValue.Builder builderForValue) {
copyOnWrite();
instance.setEnumvalue(index,
builderForValue.build());
return this;
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
public Builder addEnumvalue(com.google.protobuf.EnumValue value) {
copyOnWrite();
instance.addEnumvalue(value);
return this;
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
public Builder addEnumvalue(
int index, com.google.protobuf.EnumValue value) {
copyOnWrite();
instance.addEnumvalue(index, value);
return this;
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
public Builder addEnumvalue(
com.google.protobuf.EnumValue.Builder builderForValue) {
copyOnWrite();
instance.addEnumvalue(builderForValue.build());
return this;
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
public Builder addEnumvalue(
int index, com.google.protobuf.EnumValue.Builder builderForValue) {
copyOnWrite();
instance.addEnumvalue(index,
builderForValue.build());
return this;
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
public Builder addAllEnumvalue(
java.lang.Iterable extends com.google.protobuf.EnumValue> values) {
copyOnWrite();
instance.addAllEnumvalue(values);
return this;
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
public Builder clearEnumvalue() {
copyOnWrite();
instance.clearEnumvalue();
return this;
}
/**
*
* Enum value definitions.
*
*
* repeated .google.protobuf.EnumValue enumvalue = 2;
*/
public Builder removeEnumvalue(int index) {
copyOnWrite();
instance.removeEnumvalue(index);
return this;
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
@java.lang.Override
public java.util.List getOptionsList() {
return java.util.Collections.unmodifiableList(
instance.getOptionsList());
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
@java.lang.Override
public int getOptionsCount() {
return instance.getOptionsCount();
}/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
@java.lang.Override
public com.google.protobuf.Option getOptions(int index) {
return instance.getOptions(index);
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
public Builder setOptions(
int index, com.google.protobuf.Option value) {
copyOnWrite();
instance.setOptions(index, value);
return this;
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
public Builder setOptions(
int index, com.google.protobuf.Option.Builder builderForValue) {
copyOnWrite();
instance.setOptions(index,
builderForValue.build());
return this;
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
public Builder addOptions(com.google.protobuf.Option value) {
copyOnWrite();
instance.addOptions(value);
return this;
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
public Builder addOptions(
int index, com.google.protobuf.Option value) {
copyOnWrite();
instance.addOptions(index, value);
return this;
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
public Builder addOptions(
com.google.protobuf.Option.Builder builderForValue) {
copyOnWrite();
instance.addOptions(builderForValue.build());
return this;
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
public Builder addOptions(
int index, com.google.protobuf.Option.Builder builderForValue) {
copyOnWrite();
instance.addOptions(index,
builderForValue.build());
return this;
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
public Builder addAllOptions(
java.lang.Iterable extends com.google.protobuf.Option> values) {
copyOnWrite();
instance.addAllOptions(values);
return this;
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
public Builder clearOptions() {
copyOnWrite();
instance.clearOptions();
return this;
}
/**
*
* Protocol buffer options.
*
*
* repeated .google.protobuf.Option options = 3;
*/
public Builder removeOptions(int index) {
copyOnWrite();
instance.removeOptions(index);
return this;
}
/**
*
* The source context.
*
*
* .google.protobuf.SourceContext source_context = 4;
*/
@java.lang.Override
public boolean hasSourceContext() {
return instance.hasSourceContext();
}
/**
*
* The source context.
*
*
* .google.protobuf.SourceContext source_context = 4;
*/
@java.lang.Override
public com.google.protobuf.SourceContext getSourceContext() {
return instance.getSourceContext();
}
/**
*
* The source context.
*
*
* .google.protobuf.SourceContext source_context = 4;
*/
public Builder setSourceContext(com.google.protobuf.SourceContext value) {
copyOnWrite();
instance.setSourceContext(value);
return this;
}
/**
*
* The source context.
*
*
* .google.protobuf.SourceContext source_context = 4;
*/
public Builder setSourceContext(
com.google.protobuf.SourceContext.Builder builderForValue) {
copyOnWrite();
instance.setSourceContext(builderForValue.build());
return this;
}
/**
*
* The source context.
*
*
* .google.protobuf.SourceContext source_context = 4;
*/
public Builder mergeSourceContext(com.google.protobuf.SourceContext value) {
copyOnWrite();
instance.mergeSourceContext(value);
return this;
}
/**
*
* The source context.
*
*
* .google.protobuf.SourceContext source_context = 4;
*/
public Builder clearSourceContext() { copyOnWrite();
instance.clearSourceContext();
return this;
}
/**
*
* The source syntax.
*
*
* .google.protobuf.Syntax syntax = 5;
* @return The enum numeric value on the wire for syntax.
*/
@java.lang.Override
public int getSyntaxValue() {
return instance.getSyntaxValue();
}
/**
*
* The source syntax.
*
*
* .google.protobuf.Syntax syntax = 5;
* @param value The syntax to set.
* @return This builder for chaining.
*/
public Builder setSyntaxValue(int value) {
copyOnWrite();
instance.setSyntaxValue(value);
return this;
}
/**
*
* The source syntax.
*
*
* .google.protobuf.Syntax syntax = 5;
* @return The syntax.
*/
@java.lang.Override
public com.google.protobuf.Syntax getSyntax() {
return instance.getSyntax();
}
/**
*
* The source syntax.
*
*
* .google.protobuf.Syntax syntax = 5;
* @param value The enum numeric value on the wire for syntax to set.
* @return This builder for chaining.
*/
public Builder setSyntax(com.google.protobuf.Syntax value) {
copyOnWrite();
instance.setSyntax(value);
return this;
}
/**
*
* The source syntax.
*
*
* .google.protobuf.Syntax syntax = 5;
* @return This builder for chaining.
*/
public Builder clearSyntax() {
copyOnWrite();
instance.clearSyntax();
return this;
}
// @@protoc_insertion_point(builder_scope:google.protobuf.Enum)
}
@java.lang.Override
@java.lang.SuppressWarnings({"unchecked", "fallthrough"})
protected final java.lang.Object dynamicMethod(
com.google.protobuf.GeneratedMessageLite.MethodToInvoke method,
java.lang.Object arg0, java.lang.Object arg1) {
switch (method) {
case NEW_MUTABLE_INSTANCE: {
return new com.google.protobuf.Enum();
}
case NEW_BUILDER: {
return new Builder();
}
case BUILD_MESSAGE_INFO: {
java.lang.Object[] objects = new java.lang.Object[] {
"name_",
"enumvalue_",
com.google.protobuf.EnumValue.class,
"options_",
com.google.protobuf.Option.class,
"sourceContext_",
"syntax_",
};
java.lang.String info =
"\u0000\u0005\u0000\u0000\u0001\u0005\u0005\u0000\u0002\u0000\u0001\u0208\u0002\u001b" +
"\u0003\u001b\u0004\t\u0005\f";
return newMessageInfo(DEFAULT_INSTANCE, info, objects);
}
// fall through
case GET_DEFAULT_INSTANCE: {
return DEFAULT_INSTANCE;
}
case GET_PARSER: {
com.google.protobuf.Parser parser = PARSER;
if (parser == null) {
synchronized (com.google.protobuf.Enum.class) {
parser = PARSER;
if (parser == null) {
parser =
new DefaultInstanceBasedParser(
DEFAULT_INSTANCE);
PARSER = parser;
}
}
}
return parser;
}
case GET_MEMOIZED_IS_INITIALIZED: {
return (byte) 1;
}
case SET_MEMOIZED_IS_INITIALIZED: {
return null;
}
}
throw new UnsupportedOperationException();
}
// @@protoc_insertion_point(class_scope:google.protobuf.Enum)
private static final com.google.protobuf.Enum DEFAULT_INSTANCE;
static {
Enum defaultInstance = new Enum();
// New instances are implicitly immutable so no need to make
// immutable.
DEFAULT_INSTANCE = defaultInstance;
com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
Enum.class, defaultInstance);
}
public static com.google.protobuf.Enum getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static volatile com.google.protobuf.Parser PARSER;
public static com.google.protobuf.Parser parser() {
return DEFAULT_INSTANCE.getParserForType();
}
}