| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565 |
- // Copyright 2018 The Go Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: proto2/enum.proto
- package proto2
- import (
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
- )
- // EnumType1 comment.
- type EnumType1 int32
- const (
- // EnumType1_ONE comment.
- EnumType1_ONE EnumType1 = 1
- // EnumType1_TWO comment.
- EnumType1_TWO EnumType1 = 2
- )
- // Enum value maps for EnumType1.
- var (
- EnumType1_name = map[int32]string{
- 1: "ONE",
- 2: "TWO",
- }
- EnumType1_value = map[string]int32{
- "ONE": 1,
- "TWO": 2,
- }
- )
- func (x EnumType1) Enum() *EnumType1 {
- p := new(EnumType1)
- *p = x
- return p
- }
- func (x EnumType1) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (EnumType1) Descriptor() protoreflect.EnumDescriptor {
- return file_proto2_enum_proto_enumTypes[0].Descriptor()
- }
- func (EnumType1) Type() protoreflect.EnumType {
- return &file_proto2_enum_proto_enumTypes[0]
- }
- func (x EnumType1) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *EnumType1) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = EnumType1(num)
- return nil
- }
- // Deprecated: Use EnumType1.Descriptor instead.
- func (EnumType1) EnumDescriptor() ([]byte, []int) {
- return file_proto2_enum_proto_rawDescGZIP(), []int{0}
- }
- type EnumType2 int32
- const (
- EnumType2_duplicate1 EnumType2 = 1
- EnumType2_duplicate2 EnumType2 = 1
- )
- // Enum value maps for EnumType2.
- var (
- EnumType2_name = map[int32]string{
- 1: "duplicate1",
- // Duplicate value: 1: "duplicate2",
- }
- EnumType2_value = map[string]int32{
- "duplicate1": 1,
- "duplicate2": 1,
- }
- )
- func (x EnumType2) Enum() *EnumType2 {
- p := new(EnumType2)
- *p = x
- return p
- }
- func (x EnumType2) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (EnumType2) Descriptor() protoreflect.EnumDescriptor {
- return file_proto2_enum_proto_enumTypes[1].Descriptor()
- }
- func (EnumType2) Type() protoreflect.EnumType {
- return &file_proto2_enum_proto_enumTypes[1]
- }
- func (x EnumType2) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *EnumType2) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = EnumType2(num)
- return nil
- }
- // Deprecated: Use EnumType2.Descriptor instead.
- func (EnumType2) EnumDescriptor() ([]byte, []int) {
- return file_proto2_enum_proto_rawDescGZIP(), []int{1}
- }
- // NestedEnumType1A comment.
- type EnumContainerMessage1_NestedEnumType1A int32
- const (
- // NestedEnumType1A_VALUE comment.
- EnumContainerMessage1_NESTED_1A_VALUE EnumContainerMessage1_NestedEnumType1A = 0
- )
- // Enum value maps for EnumContainerMessage1_NestedEnumType1A.
- var (
- EnumContainerMessage1_NestedEnumType1A_name = map[int32]string{
- 0: "NESTED_1A_VALUE",
- }
- EnumContainerMessage1_NestedEnumType1A_value = map[string]int32{
- "NESTED_1A_VALUE": 0,
- }
- )
- func (x EnumContainerMessage1_NestedEnumType1A) Enum() *EnumContainerMessage1_NestedEnumType1A {
- p := new(EnumContainerMessage1_NestedEnumType1A)
- *p = x
- return p
- }
- func (x EnumContainerMessage1_NestedEnumType1A) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (EnumContainerMessage1_NestedEnumType1A) Descriptor() protoreflect.EnumDescriptor {
- return file_proto2_enum_proto_enumTypes[2].Descriptor()
- }
- func (EnumContainerMessage1_NestedEnumType1A) Type() protoreflect.EnumType {
- return &file_proto2_enum_proto_enumTypes[2]
- }
- func (x EnumContainerMessage1_NestedEnumType1A) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *EnumContainerMessage1_NestedEnumType1A) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = EnumContainerMessage1_NestedEnumType1A(num)
- return nil
- }
- // Deprecated: Use EnumContainerMessage1_NestedEnumType1A.Descriptor instead.
- func (EnumContainerMessage1_NestedEnumType1A) EnumDescriptor() ([]byte, []int) {
- return file_proto2_enum_proto_rawDescGZIP(), []int{0, 0}
- }
- type EnumContainerMessage1_NestedEnumType1B int32
- const (
- EnumContainerMessage1_NESTED_1B_VALUE EnumContainerMessage1_NestedEnumType1B = 0
- )
- // Enum value maps for EnumContainerMessage1_NestedEnumType1B.
- var (
- EnumContainerMessage1_NestedEnumType1B_name = map[int32]string{
- 0: "NESTED_1B_VALUE",
- }
- EnumContainerMessage1_NestedEnumType1B_value = map[string]int32{
- "NESTED_1B_VALUE": 0,
- }
- )
- func (x EnumContainerMessage1_NestedEnumType1B) Enum() *EnumContainerMessage1_NestedEnumType1B {
- p := new(EnumContainerMessage1_NestedEnumType1B)
- *p = x
- return p
- }
- func (x EnumContainerMessage1_NestedEnumType1B) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (EnumContainerMessage1_NestedEnumType1B) Descriptor() protoreflect.EnumDescriptor {
- return file_proto2_enum_proto_enumTypes[3].Descriptor()
- }
- func (EnumContainerMessage1_NestedEnumType1B) Type() protoreflect.EnumType {
- return &file_proto2_enum_proto_enumTypes[3]
- }
- func (x EnumContainerMessage1_NestedEnumType1B) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *EnumContainerMessage1_NestedEnumType1B) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = EnumContainerMessage1_NestedEnumType1B(num)
- return nil
- }
- // Deprecated: Use EnumContainerMessage1_NestedEnumType1B.Descriptor instead.
- func (EnumContainerMessage1_NestedEnumType1B) EnumDescriptor() ([]byte, []int) {
- return file_proto2_enum_proto_rawDescGZIP(), []int{0, 1}
- }
- // NestedEnumType2A comment.
- type EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A int32
- const (
- // NestedEnumType2A_VALUE comment.
- EnumContainerMessage1_EnumContainerMessage2_NESTED_2A_VALUE EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A = 0
- )
- // Enum value maps for EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A.
- var (
- EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A_name = map[int32]string{
- 0: "NESTED_2A_VALUE",
- }
- EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A_value = map[string]int32{
- "NESTED_2A_VALUE": 0,
- }
- )
- func (x EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A) Enum() *EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A {
- p := new(EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A)
- *p = x
- return p
- }
- func (x EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A) Descriptor() protoreflect.EnumDescriptor {
- return file_proto2_enum_proto_enumTypes[4].Descriptor()
- }
- func (EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A) Type() protoreflect.EnumType {
- return &file_proto2_enum_proto_enumTypes[4]
- }
- func (x EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A(num)
- return nil
- }
- // Deprecated: Use EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A.Descriptor instead.
- func (EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A) EnumDescriptor() ([]byte, []int) {
- return file_proto2_enum_proto_rawDescGZIP(), []int{0, 0, 0}
- }
- type EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B int32
- const (
- EnumContainerMessage1_EnumContainerMessage2_NESTED_2B_VALUE EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B = 0
- )
- // Enum value maps for EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B.
- var (
- EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B_name = map[int32]string{
- 0: "NESTED_2B_VALUE",
- }
- EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B_value = map[string]int32{
- "NESTED_2B_VALUE": 0,
- }
- )
- func (x EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B) Enum() *EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B {
- p := new(EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B)
- *p = x
- return p
- }
- func (x EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B) Descriptor() protoreflect.EnumDescriptor {
- return file_proto2_enum_proto_enumTypes[5].Descriptor()
- }
- func (EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B) Type() protoreflect.EnumType {
- return &file_proto2_enum_proto_enumTypes[5]
- }
- func (x EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B(num)
- return nil
- }
- // Deprecated: Use EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B.Descriptor instead.
- func (EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B) EnumDescriptor() ([]byte, []int) {
- return file_proto2_enum_proto_rawDescGZIP(), []int{0, 0, 1}
- }
- type EnumContainerMessage1 struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- DefaultDuplicate1 *EnumType2 `protobuf:"varint,1,opt,name=default_duplicate1,json=defaultDuplicate1,enum=goproto.protoc.proto2.EnumType2,def=1" json:"default_duplicate1,omitempty"`
- DefaultDuplicate2 *EnumType2 `protobuf:"varint,2,opt,name=default_duplicate2,json=defaultDuplicate2,enum=goproto.protoc.proto2.EnumType2,def=1" json:"default_duplicate2,omitempty"`
- }
- // Default values for EnumContainerMessage1 fields.
- const (
- Default_EnumContainerMessage1_DefaultDuplicate1 = EnumType2_duplicate1
- Default_EnumContainerMessage1_DefaultDuplicate2 = EnumType2_duplicate2
- )
- func (x *EnumContainerMessage1) Reset() {
- *x = EnumContainerMessage1{}
- }
- func (x *EnumContainerMessage1) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EnumContainerMessage1) ProtoMessage() {}
- func (x *EnumContainerMessage1) ProtoReflect() protoreflect.Message {
- mi := &file_proto2_enum_proto_msgTypes[0]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EnumContainerMessage1.ProtoReflect.Descriptor instead.
- func (*EnumContainerMessage1) Descriptor() ([]byte, []int) {
- return file_proto2_enum_proto_rawDescGZIP(), []int{0}
- }
- func (x *EnumContainerMessage1) GetDefaultDuplicate1() EnumType2 {
- if x != nil && x.DefaultDuplicate1 != nil {
- return *x.DefaultDuplicate1
- }
- return Default_EnumContainerMessage1_DefaultDuplicate1
- }
- func (x *EnumContainerMessage1) GetDefaultDuplicate2() EnumType2 {
- if x != nil && x.DefaultDuplicate2 != nil {
- return *x.DefaultDuplicate2
- }
- return Default_EnumContainerMessage1_DefaultDuplicate2
- }
- type EnumContainerMessage1_EnumContainerMessage2 struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- }
- func (x *EnumContainerMessage1_EnumContainerMessage2) Reset() {
- *x = EnumContainerMessage1_EnumContainerMessage2{}
- }
- func (x *EnumContainerMessage1_EnumContainerMessage2) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EnumContainerMessage1_EnumContainerMessage2) ProtoMessage() {}
- func (x *EnumContainerMessage1_EnumContainerMessage2) ProtoReflect() protoreflect.Message {
- mi := &file_proto2_enum_proto_msgTypes[1]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EnumContainerMessage1_EnumContainerMessage2.ProtoReflect.Descriptor instead.
- func (*EnumContainerMessage1_EnumContainerMessage2) Descriptor() ([]byte, []int) {
- return file_proto2_enum_proto_rawDescGZIP(), []int{0, 0}
- }
- var File_proto2_enum_proto protoreflect.FileDescriptor
- var file_proto2_enum_proto_rawDesc = []byte{
- 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x12, 0x15, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x22, 0x8e, 0x03, 0x0a, 0x15, 0x45,
- 0x6e, 0x75, 0x6d, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73,
- 0x61, 0x67, 0x65, 0x31, 0x12, 0x5b, 0x0a, 0x12, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f,
- 0x64, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x54, 0x79, 0x70,
- 0x65, 0x32, 0x3a, 0x0a, 0x64, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x31, 0x52, 0x11,
- 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65,
- 0x31, 0x12, 0x5b, 0x0a, 0x12, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x64, 0x75, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x20, 0x2e,
- 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x32, 0x3a,
- 0x0a, 0x64, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x32, 0x52, 0x11, 0x64, 0x65, 0x66,
- 0x61, 0x75, 0x6c, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x32, 0x1a, 0x69,
- 0x0a, 0x15, 0x45, 0x6e, 0x75, 0x6d, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x4d,
- 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x32, 0x22, 0x27, 0x0a, 0x10, 0x4e, 0x65, 0x73, 0x74, 0x65,
- 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x32, 0x41, 0x12, 0x13, 0x0a, 0x0f, 0x4e,
- 0x45, 0x53, 0x54, 0x45, 0x44, 0x5f, 0x32, 0x41, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x00,
- 0x22, 0x27, 0x0a, 0x10, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x54, 0x79,
- 0x70, 0x65, 0x32, 0x42, 0x12, 0x13, 0x0a, 0x0f, 0x4e, 0x45, 0x53, 0x54, 0x45, 0x44, 0x5f, 0x32,
- 0x42, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x00, 0x22, 0x27, 0x0a, 0x10, 0x4e, 0x65, 0x73,
- 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x31, 0x41, 0x12, 0x13, 0x0a,
- 0x0f, 0x4e, 0x45, 0x53, 0x54, 0x45, 0x44, 0x5f, 0x31, 0x41, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45,
- 0x10, 0x00, 0x22, 0x27, 0x0a, 0x10, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
- 0x54, 0x79, 0x70, 0x65, 0x31, 0x42, 0x12, 0x13, 0x0a, 0x0f, 0x4e, 0x45, 0x53, 0x54, 0x45, 0x44,
- 0x5f, 0x31, 0x42, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x00, 0x2a, 0x1d, 0x0a, 0x09, 0x45,
- 0x6e, 0x75, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x31, 0x12, 0x07, 0x0a, 0x03, 0x4f, 0x4e, 0x45, 0x10,
- 0x01, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x57, 0x4f, 0x10, 0x02, 0x2a, 0x51, 0x0a, 0x09, 0x45, 0x6e,
- 0x75, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x32, 0x12, 0x0e, 0x0a, 0x0a, 0x64, 0x75, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x65, 0x31, 0x10, 0x01, 0x12, 0x0e, 0x0a, 0x0a, 0x64, 0x75, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x65, 0x32, 0x10, 0x01, 0x1a, 0x02, 0x10, 0x01, 0x22, 0x04, 0x08, 0x02, 0x10,
- 0x02, 0x22, 0x04, 0x08, 0x03, 0x10, 0x03, 0x2a, 0x09, 0x52, 0x45, 0x53, 0x45, 0x52, 0x56, 0x45,
- 0x44, 0x31, 0x2a, 0x09, 0x52, 0x45, 0x53, 0x45, 0x52, 0x56, 0x45, 0x44, 0x32, 0x42, 0x3e, 0x5a,
- 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
- 0x72, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x63, 0x6d, 0x64, 0x2f,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x67, 0x6f, 0x2f, 0x74, 0x65,
- 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32,
- }
- var (
- file_proto2_enum_proto_rawDescOnce sync.Once
- file_proto2_enum_proto_rawDescData = file_proto2_enum_proto_rawDesc
- )
- func file_proto2_enum_proto_rawDescGZIP() []byte {
- file_proto2_enum_proto_rawDescOnce.Do(func() {
- file_proto2_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto2_enum_proto_rawDescData)
- })
- return file_proto2_enum_proto_rawDescData
- }
- var file_proto2_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 6)
- var file_proto2_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
- var file_proto2_enum_proto_goTypes = []interface{}{
- (EnumType1)(0), // 0: goproto.protoc.proto2.EnumType1
- (EnumType2)(0), // 1: goproto.protoc.proto2.EnumType2
- (EnumContainerMessage1_NestedEnumType1A)(0), // 2: goproto.protoc.proto2.EnumContainerMessage1.NestedEnumType1A
- (EnumContainerMessage1_NestedEnumType1B)(0), // 3: goproto.protoc.proto2.EnumContainerMessage1.NestedEnumType1B
- (EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2A)(0), // 4: goproto.protoc.proto2.EnumContainerMessage1.EnumContainerMessage2.NestedEnumType2A
- (EnumContainerMessage1_EnumContainerMessage2_NestedEnumType2B)(0), // 5: goproto.protoc.proto2.EnumContainerMessage1.EnumContainerMessage2.NestedEnumType2B
- (*EnumContainerMessage1)(nil), // 6: goproto.protoc.proto2.EnumContainerMessage1
- (*EnumContainerMessage1_EnumContainerMessage2)(nil), // 7: goproto.protoc.proto2.EnumContainerMessage1.EnumContainerMessage2
- }
- var file_proto2_enum_proto_depIdxs = []int32{
- 1, // 0: goproto.protoc.proto2.EnumContainerMessage1.default_duplicate1:type_name -> goproto.protoc.proto2.EnumType2
- 1, // 1: goproto.protoc.proto2.EnumContainerMessage1.default_duplicate2:type_name -> goproto.protoc.proto2.EnumType2
- 2, // [2:2] is the sub-list for method output_type
- 2, // [2:2] is the sub-list for method input_type
- 2, // [2:2] is the sub-list for extension type_name
- 2, // [2:2] is the sub-list for extension extendee
- 0, // [0:2] is the sub-list for field type_name
- }
- func init() { file_proto2_enum_proto_init() }
- func file_proto2_enum_proto_init() {
- if File_proto2_enum_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_proto2_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EnumContainerMessage1); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_proto2_enum_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EnumContainerMessage1_EnumContainerMessage2); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_proto2_enum_proto_rawDesc,
- NumEnums: 6,
- NumMessages: 2,
- NumExtensions: 0,
- NumServices: 0,
- },
- GoTypes: file_proto2_enum_proto_goTypes,
- DependencyIndexes: file_proto2_enum_proto_depIdxs,
- EnumInfos: file_proto2_enum_proto_enumTypes,
- MessageInfos: file_proto2_enum_proto_msgTypes,
- }.Build()
- File_proto2_enum_proto = out.File
- file_proto2_enum_proto_rawDesc = nil
- file_proto2_enum_proto_goTypes = nil
- file_proto2_enum_proto_depIdxs = nil
- }
|