gtin

package
v0.0.0-...-4c43aeb Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 4, 2022 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Overview

Example
package main

import (
	"bramp.net/antlr4/gtin"

	"fmt"
	"github.com/antlr/antlr4/runtime/Go/antlr"
)

type exampleListener struct {
	*gtin.BasegtinListener
}

func (l *exampleListener) EnterEveryRule(ctx antlr.ParserRuleContext) {
	fmt.Println(ctx.GetText())
}
func main() {
	// Setup the input
	is := antlr.NewInputStream("...some text to parse...")

	// Create the Lexer
	lexer := gtin.NewgtinLexer(is)
	stream := antlr.NewCommonTokenStream(lexer, antlr.TokenDefaultChannel)

	// Create the Parser
	p := gtin.NewgtinParser(stream)
	p.BuildParseTrees = true
	p.AddErrorListener(antlr.NewDiagnosticErrorListener(true))

	// Finally walk the tree
	tree := p.Gtin()
	antlr.ParseTreeWalkerDefault.Walk(&exampleListener{}, tree)
}
Output:

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewgtinLexer

func NewgtinLexer(input antlr.CharStream) *gtinLexer

func NewgtinParser

func NewgtinParser(input antlr.TokenStream) *gtinParser

Types

type Any_digitContext

type Any_digitContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewAny_digitContext

func NewAny_digitContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Any_digitContext

func NewEmptyAny_digitContext

func NewEmptyAny_digitContext() *Any_digitContext

func (*Any_digitContext) DIGIT_0

func (s *Any_digitContext) DIGIT_0() antlr.TerminalNode

func (*Any_digitContext) DIGIT_1

func (s *Any_digitContext) DIGIT_1() antlr.TerminalNode

func (*Any_digitContext) DIGIT_2

func (s *Any_digitContext) DIGIT_2() antlr.TerminalNode

func (*Any_digitContext) DIGIT_3

func (s *Any_digitContext) DIGIT_3() antlr.TerminalNode

func (*Any_digitContext) DIGIT_4

func (s *Any_digitContext) DIGIT_4() antlr.TerminalNode

func (*Any_digitContext) DIGIT_5

func (s *Any_digitContext) DIGIT_5() antlr.TerminalNode

func (*Any_digitContext) DIGIT_6

func (s *Any_digitContext) DIGIT_6() antlr.TerminalNode

func (*Any_digitContext) DIGIT_7

func (s *Any_digitContext) DIGIT_7() antlr.TerminalNode

func (*Any_digitContext) DIGIT_8

func (s *Any_digitContext) DIGIT_8() antlr.TerminalNode

func (*Any_digitContext) DIGIT_9

func (s *Any_digitContext) DIGIT_9() antlr.TerminalNode

func (*Any_digitContext) EnterRule

func (s *Any_digitContext) EnterRule(listener antlr.ParseTreeListener)

func (*Any_digitContext) ExitRule

func (s *Any_digitContext) ExitRule(listener antlr.ParseTreeListener)

func (*Any_digitContext) GetParser

func (s *Any_digitContext) GetParser() antlr.Parser

func (*Any_digitContext) GetRuleContext

func (s *Any_digitContext) GetRuleContext() antlr.RuleContext

func (*Any_digitContext) IsAny_digitContext

func (*Any_digitContext) IsAny_digitContext()

func (*Any_digitContext) ToStringTree

func (s *Any_digitContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type BasegtinListener

type BasegtinListener struct{}

BasegtinListener is a complete listener for a parse tree produced by gtinParser.

func (*BasegtinListener) EnterAny_digit

func (s *BasegtinListener) EnterAny_digit(ctx *Any_digitContext)

EnterAny_digit is called when production any_digit is entered.

func (*BasegtinListener) EnterBookland_isbn

func (s *BasegtinListener) EnterBookland_isbn(ctx *Bookland_isbnContext)

EnterBookland_isbn is called when production bookland_isbn is entered.

func (*BasegtinListener) EnterCheck_code

func (s *BasegtinListener) EnterCheck_code(ctx *Check_codeContext)

EnterCheck_code is called when production check_code is entered.

func (*BasegtinListener) EnterEan13

func (s *BasegtinListener) EnterEan13(ctx *Ean13Context)

EnterEan13 is called when production ean13 is entered.

func (*BasegtinListener) EnterEan13_bookland

func (s *BasegtinListener) EnterEan13_bookland(ctx *Ean13_booklandContext)

EnterEan13_bookland is called when production ean13_bookland is entered.

func (*BasegtinListener) EnterEan13_generic

func (s *BasegtinListener) EnterEan13_generic(ctx *Ean13_genericContext)

EnterEan13_generic is called when production ean13_generic is entered.

func (*BasegtinListener) EnterEan13_ismn

func (s *BasegtinListener) EnterEan13_ismn(ctx *Ean13_ismnContext)

EnterEan13_ismn is called when production ean13_ismn is entered.

func (*BasegtinListener) EnterEan13_issn

func (s *BasegtinListener) EnterEan13_issn(ctx *Ean13_issnContext)

EnterEan13_issn is called when production ean13_issn is entered.

func (*BasegtinListener) EnterEan14

func (s *BasegtinListener) EnterEan14(ctx *Ean14Context)

EnterEan14 is called when production ean14 is entered.

func (*BasegtinListener) EnterEan14_appid

func (s *BasegtinListener) EnterEan14_appid(ctx *Ean14_appidContext)

EnterEan14_appid is called when production ean14_appid is entered.

func (*BasegtinListener) EnterEan14_packaging

func (s *BasegtinListener) EnterEan14_packaging(ctx *Ean14_packagingContext)

EnterEan14_packaging is called when production ean14_packaging is entered.

func (*BasegtinListener) EnterEan14_product

func (s *BasegtinListener) EnterEan14_product(ctx *Ean14_productContext)

EnterEan14_product is called when production ean14_product is entered.

func (*BasegtinListener) EnterEan8

func (s *BasegtinListener) EnterEan8(ctx *Ean8Context)

EnterEan8 is called when production ean8 is entered.

func (*BasegtinListener) EnterEan_13_manprod

func (s *BasegtinListener) EnterEan_13_manprod(ctx *Ean_13_manprodContext)

EnterEan_13_manprod is called when production ean_13_manprod is entered.

func (*BasegtinListener) EnterEveryRule

func (s *BasegtinListener) EnterEveryRule(ctx antlr.ParserRuleContext)

EnterEveryRule is called when any rule is entered.

func (*BasegtinListener) EnterGs1_prefix

func (s *BasegtinListener) EnterGs1_prefix(ctx *Gs1_prefixContext)

EnterGs1_prefix is called when production gs1_prefix is entered.

func (*BasegtinListener) EnterGs1_prefix_bookland_1

func (s *BasegtinListener) EnterGs1_prefix_bookland_1(ctx *Gs1_prefix_bookland_1Context)

EnterGs1_prefix_bookland_1 is called when production gs1_prefix_bookland_1 is entered.

func (*BasegtinListener) EnterGs1_prefix_bookland_2

func (s *BasegtinListener) EnterGs1_prefix_bookland_2(ctx *Gs1_prefix_bookland_2Context)

EnterGs1_prefix_bookland_2 is called when production gs1_prefix_bookland_2 is entered.

func (*BasegtinListener) EnterGs1_prefix_ismn

func (s *BasegtinListener) EnterGs1_prefix_ismn(ctx *Gs1_prefix_ismnContext)

EnterGs1_prefix_ismn is called when production gs1_prefix_ismn is entered.

func (*BasegtinListener) EnterGs1_prefix_issn

func (s *BasegtinListener) EnterGs1_prefix_issn(ctx *Gs1_prefix_issnContext)

EnterGs1_prefix_issn is called when production gs1_prefix_issn is entered.

func (*BasegtinListener) EnterGtin

func (s *BasegtinListener) EnterGtin(ctx *GtinContext)

EnterGtin is called when production gtin is entered.

func (*BasegtinListener) EnterGtin12

func (s *BasegtinListener) EnterGtin12(ctx *Gtin12Context)

EnterGtin12 is called when production gtin12 is entered.

func (*BasegtinListener) EnterGtin13

func (s *BasegtinListener) EnterGtin13(ctx *Gtin13Context)

EnterGtin13 is called when production gtin13 is entered.

func (*BasegtinListener) EnterGtin14

func (s *BasegtinListener) EnterGtin14(ctx *Gtin14Context)

EnterGtin14 is called when production gtin14 is entered.

func (*BasegtinListener) EnterGtin8

func (s *BasegtinListener) EnterGtin8(ctx *Gtin8Context)

EnterGtin8 is called when production gtin8 is entered.

func (*BasegtinListener) EnterIsmn_item_number

func (s *BasegtinListener) EnterIsmn_item_number(ctx *Ismn_item_numberContext)

EnterIsmn_item_number is called when production ismn_item_number is entered.

func (*BasegtinListener) EnterIsmn_publisher_number

func (s *BasegtinListener) EnterIsmn_publisher_number(ctx *Ismn_publisher_numberContext)

EnterIsmn_publisher_number is called when production ismn_publisher_number is entered.

func (*BasegtinListener) EnterIssn

func (s *BasegtinListener) EnterIssn(ctx *IssnContext)

EnterIssn is called when production issn is entered.

func (*BasegtinListener) EnterNum_system

func (s *BasegtinListener) EnterNum_system(ctx *Num_systemContext)

EnterNum_system is called when production num_system is entered.

func (*BasegtinListener) EnterSupplemental_code

func (s *BasegtinListener) EnterSupplemental_code(ctx *Supplemental_codeContext)

EnterSupplemental_code is called when production supplemental_code is entered.

func (*BasegtinListener) EnterSupplemental_code_2

func (s *BasegtinListener) EnterSupplemental_code_2(ctx *Supplemental_code_2Context)

EnterSupplemental_code_2 is called when production supplemental_code_2 is entered.

func (*BasegtinListener) EnterSupplemental_code_5

func (s *BasegtinListener) EnterSupplemental_code_5(ctx *Supplemental_code_5Context)

EnterSupplemental_code_5 is called when production supplemental_code_5 is entered.

func (*BasegtinListener) EnterUpc

func (s *BasegtinListener) EnterUpc(ctx *UpcContext)

EnterUpc is called when production upc is entered.

func (*BasegtinListener) EnterUpc_a

func (s *BasegtinListener) EnterUpc_a(ctx *Upc_aContext)

EnterUpc_a is called when production upc_a is entered.

func (*BasegtinListener) EnterUpc_a_5

func (s *BasegtinListener) EnterUpc_a_5(ctx *Upc_a_5Context)

EnterUpc_a_5 is called when production upc_a_5 is entered.

func (*BasegtinListener) EnterUpc_a_manufacturer

func (s *BasegtinListener) EnterUpc_a_manufacturer(ctx *Upc_a_manufacturerContext)

EnterUpc_a_manufacturer is called when production upc_a_manufacturer is entered.

func (*BasegtinListener) EnterUpc_a_product

func (s *BasegtinListener) EnterUpc_a_product(ctx *Upc_a_productContext)

EnterUpc_a_product is called when production upc_a_product is entered.

func (*BasegtinListener) EnterUpc_e

func (s *BasegtinListener) EnterUpc_e(ctx *Upc_eContext)

EnterUpc_e is called when production upc_e is entered.

func (*BasegtinListener) ExitAny_digit

func (s *BasegtinListener) ExitAny_digit(ctx *Any_digitContext)

ExitAny_digit is called when production any_digit is exited.

func (*BasegtinListener) ExitBookland_isbn

func (s *BasegtinListener) ExitBookland_isbn(ctx *Bookland_isbnContext)

ExitBookland_isbn is called when production bookland_isbn is exited.

func (*BasegtinListener) ExitCheck_code

func (s *BasegtinListener) ExitCheck_code(ctx *Check_codeContext)

ExitCheck_code is called when production check_code is exited.

func (*BasegtinListener) ExitEan13

func (s *BasegtinListener) ExitEan13(ctx *Ean13Context)

ExitEan13 is called when production ean13 is exited.

func (*BasegtinListener) ExitEan13_bookland

func (s *BasegtinListener) ExitEan13_bookland(ctx *Ean13_booklandContext)

ExitEan13_bookland is called when production ean13_bookland is exited.

func (*BasegtinListener) ExitEan13_generic

func (s *BasegtinListener) ExitEan13_generic(ctx *Ean13_genericContext)

ExitEan13_generic is called when production ean13_generic is exited.

func (*BasegtinListener) ExitEan13_ismn

func (s *BasegtinListener) ExitEan13_ismn(ctx *Ean13_ismnContext)

ExitEan13_ismn is called when production ean13_ismn is exited.

func (*BasegtinListener) ExitEan13_issn

func (s *BasegtinListener) ExitEan13_issn(ctx *Ean13_issnContext)

ExitEan13_issn is called when production ean13_issn is exited.

func (*BasegtinListener) ExitEan14

func (s *BasegtinListener) ExitEan14(ctx *Ean14Context)

ExitEan14 is called when production ean14 is exited.

func (*BasegtinListener) ExitEan14_appid

func (s *BasegtinListener) ExitEan14_appid(ctx *Ean14_appidContext)

ExitEan14_appid is called when production ean14_appid is exited.

func (*BasegtinListener) ExitEan14_packaging

func (s *BasegtinListener) ExitEan14_packaging(ctx *Ean14_packagingContext)

ExitEan14_packaging is called when production ean14_packaging is exited.

func (*BasegtinListener) ExitEan14_product

func (s *BasegtinListener) ExitEan14_product(ctx *Ean14_productContext)

ExitEan14_product is called when production ean14_product is exited.

func (*BasegtinListener) ExitEan8

func (s *BasegtinListener) ExitEan8(ctx *Ean8Context)

ExitEan8 is called when production ean8 is exited.

func (*BasegtinListener) ExitEan_13_manprod

func (s *BasegtinListener) ExitEan_13_manprod(ctx *Ean_13_manprodContext)

ExitEan_13_manprod is called when production ean_13_manprod is exited.

func (*BasegtinListener) ExitEveryRule

func (s *BasegtinListener) ExitEveryRule(ctx antlr.ParserRuleContext)

ExitEveryRule is called when any rule is exited.

func (*BasegtinListener) ExitGs1_prefix

func (s *BasegtinListener) ExitGs1_prefix(ctx *Gs1_prefixContext)

ExitGs1_prefix is called when production gs1_prefix is exited.

func (*BasegtinListener) ExitGs1_prefix_bookland_1

func (s *BasegtinListener) ExitGs1_prefix_bookland_1(ctx *Gs1_prefix_bookland_1Context)

ExitGs1_prefix_bookland_1 is called when production gs1_prefix_bookland_1 is exited.

func (*BasegtinListener) ExitGs1_prefix_bookland_2

func (s *BasegtinListener) ExitGs1_prefix_bookland_2(ctx *Gs1_prefix_bookland_2Context)

ExitGs1_prefix_bookland_2 is called when production gs1_prefix_bookland_2 is exited.

func (*BasegtinListener) ExitGs1_prefix_ismn

func (s *BasegtinListener) ExitGs1_prefix_ismn(ctx *Gs1_prefix_ismnContext)

ExitGs1_prefix_ismn is called when production gs1_prefix_ismn is exited.

func (*BasegtinListener) ExitGs1_prefix_issn

func (s *BasegtinListener) ExitGs1_prefix_issn(ctx *Gs1_prefix_issnContext)

ExitGs1_prefix_issn is called when production gs1_prefix_issn is exited.

func (*BasegtinListener) ExitGtin

func (s *BasegtinListener) ExitGtin(ctx *GtinContext)

ExitGtin is called when production gtin is exited.

func (*BasegtinListener) ExitGtin12

func (s *BasegtinListener) ExitGtin12(ctx *Gtin12Context)

ExitGtin12 is called when production gtin12 is exited.

func (*BasegtinListener) ExitGtin13

func (s *BasegtinListener) ExitGtin13(ctx *Gtin13Context)

ExitGtin13 is called when production gtin13 is exited.

func (*BasegtinListener) ExitGtin14

func (s *BasegtinListener) ExitGtin14(ctx *Gtin14Context)

ExitGtin14 is called when production gtin14 is exited.

func (*BasegtinListener) ExitGtin8

func (s *BasegtinListener) ExitGtin8(ctx *Gtin8Context)

ExitGtin8 is called when production gtin8 is exited.

func (*BasegtinListener) ExitIsmn_item_number

func (s *BasegtinListener) ExitIsmn_item_number(ctx *Ismn_item_numberContext)

ExitIsmn_item_number is called when production ismn_item_number is exited.

func (*BasegtinListener) ExitIsmn_publisher_number

func (s *BasegtinListener) ExitIsmn_publisher_number(ctx *Ismn_publisher_numberContext)

ExitIsmn_publisher_number is called when production ismn_publisher_number is exited.

func (*BasegtinListener) ExitIssn

func (s *BasegtinListener) ExitIssn(ctx *IssnContext)

ExitIssn is called when production issn is exited.

func (*BasegtinListener) ExitNum_system

func (s *BasegtinListener) ExitNum_system(ctx *Num_systemContext)

ExitNum_system is called when production num_system is exited.

func (*BasegtinListener) ExitSupplemental_code

func (s *BasegtinListener) ExitSupplemental_code(ctx *Supplemental_codeContext)

ExitSupplemental_code is called when production supplemental_code is exited.

func (*BasegtinListener) ExitSupplemental_code_2

func (s *BasegtinListener) ExitSupplemental_code_2(ctx *Supplemental_code_2Context)

ExitSupplemental_code_2 is called when production supplemental_code_2 is exited.

func (*BasegtinListener) ExitSupplemental_code_5

func (s *BasegtinListener) ExitSupplemental_code_5(ctx *Supplemental_code_5Context)

ExitSupplemental_code_5 is called when production supplemental_code_5 is exited.

func (*BasegtinListener) ExitUpc

func (s *BasegtinListener) ExitUpc(ctx *UpcContext)

ExitUpc is called when production upc is exited.

func (*BasegtinListener) ExitUpc_a

func (s *BasegtinListener) ExitUpc_a(ctx *Upc_aContext)

ExitUpc_a is called when production upc_a is exited.

func (*BasegtinListener) ExitUpc_a_5

func (s *BasegtinListener) ExitUpc_a_5(ctx *Upc_a_5Context)

ExitUpc_a_5 is called when production upc_a_5 is exited.

func (*BasegtinListener) ExitUpc_a_manufacturer

func (s *BasegtinListener) ExitUpc_a_manufacturer(ctx *Upc_a_manufacturerContext)

ExitUpc_a_manufacturer is called when production upc_a_manufacturer is exited.

func (*BasegtinListener) ExitUpc_a_product

func (s *BasegtinListener) ExitUpc_a_product(ctx *Upc_a_productContext)

ExitUpc_a_product is called when production upc_a_product is exited.

func (*BasegtinListener) ExitUpc_e

func (s *BasegtinListener) ExitUpc_e(ctx *Upc_eContext)

ExitUpc_e is called when production upc_e is exited.

func (*BasegtinListener) VisitErrorNode

func (s *BasegtinListener) VisitErrorNode(node antlr.ErrorNode)

VisitErrorNode is called when an error node is visited.

func (*BasegtinListener) VisitTerminal

func (s *BasegtinListener) VisitTerminal(node antlr.TerminalNode)

VisitTerminal is called when a terminal node is visited.

type Bookland_isbnContext

type Bookland_isbnContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewBookland_isbnContext

func NewBookland_isbnContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Bookland_isbnContext

func NewEmptyBookland_isbnContext

func NewEmptyBookland_isbnContext() *Bookland_isbnContext

func (*Bookland_isbnContext) AllAny_digit

func (s *Bookland_isbnContext) AllAny_digit() []IAny_digitContext

func (*Bookland_isbnContext) Any_digit

func (s *Bookland_isbnContext) Any_digit(i int) IAny_digitContext

func (*Bookland_isbnContext) EnterRule

func (s *Bookland_isbnContext) EnterRule(listener antlr.ParseTreeListener)

func (*Bookland_isbnContext) ExitRule

func (s *Bookland_isbnContext) ExitRule(listener antlr.ParseTreeListener)

func (*Bookland_isbnContext) GetParser

func (s *Bookland_isbnContext) GetParser() antlr.Parser

func (*Bookland_isbnContext) GetRuleContext

func (s *Bookland_isbnContext) GetRuleContext() antlr.RuleContext

func (*Bookland_isbnContext) IsBookland_isbnContext

func (*Bookland_isbnContext) IsBookland_isbnContext()

func (*Bookland_isbnContext) ToStringTree

func (s *Bookland_isbnContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Check_codeContext

type Check_codeContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCheck_codeContext

func NewCheck_codeContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Check_codeContext

func NewEmptyCheck_codeContext

func NewEmptyCheck_codeContext() *Check_codeContext

func (*Check_codeContext) Any_digit

func (s *Check_codeContext) Any_digit() IAny_digitContext

func (*Check_codeContext) EnterRule

func (s *Check_codeContext) EnterRule(listener antlr.ParseTreeListener)

func (*Check_codeContext) ExitRule

func (s *Check_codeContext) ExitRule(listener antlr.ParseTreeListener)

func (*Check_codeContext) GetParser

func (s *Check_codeContext) GetParser() antlr.Parser

func (*Check_codeContext) GetRuleContext

func (s *Check_codeContext) GetRuleContext() antlr.RuleContext

func (*Check_codeContext) IsCheck_codeContext

func (*Check_codeContext) IsCheck_codeContext()

func (*Check_codeContext) ToStringTree

func (s *Check_codeContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ean13Context

type Ean13Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEan13Context

func NewEan13Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ean13Context

func NewEmptyEan13Context

func NewEmptyEan13Context() *Ean13Context

func (*Ean13Context) Ean13_bookland

func (s *Ean13Context) Ean13_bookland() IEan13_booklandContext

func (*Ean13Context) Ean13_generic

func (s *Ean13Context) Ean13_generic() IEan13_genericContext

func (*Ean13Context) Ean13_ismn

func (s *Ean13Context) Ean13_ismn() IEan13_ismnContext

func (*Ean13Context) Ean13_issn

func (s *Ean13Context) Ean13_issn() IEan13_issnContext

func (*Ean13Context) EnterRule

func (s *Ean13Context) EnterRule(listener antlr.ParseTreeListener)

func (*Ean13Context) ExitRule

func (s *Ean13Context) ExitRule(listener antlr.ParseTreeListener)

func (*Ean13Context) GetParser

func (s *Ean13Context) GetParser() antlr.Parser

func (*Ean13Context) GetRuleContext

func (s *Ean13Context) GetRuleContext() antlr.RuleContext

func (*Ean13Context) IsEan13Context

func (*Ean13Context) IsEan13Context()

func (*Ean13Context) ToStringTree

func (s *Ean13Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ean13_booklandContext

type Ean13_booklandContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEan13_booklandContext

func NewEan13_booklandContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ean13_booklandContext

func NewEmptyEan13_booklandContext

func NewEmptyEan13_booklandContext() *Ean13_booklandContext

func (*Ean13_booklandContext) Bookland_isbn

func (s *Ean13_booklandContext) Bookland_isbn() IBookland_isbnContext

func (*Ean13_booklandContext) EnterRule

func (s *Ean13_booklandContext) EnterRule(listener antlr.ParseTreeListener)

func (*Ean13_booklandContext) ExitRule

func (s *Ean13_booklandContext) ExitRule(listener antlr.ParseTreeListener)

func (*Ean13_booklandContext) GetParser

func (s *Ean13_booklandContext) GetParser() antlr.Parser

func (*Ean13_booklandContext) GetRuleContext

func (s *Ean13_booklandContext) GetRuleContext() antlr.RuleContext

func (*Ean13_booklandContext) Gs1_prefix_bookland_1

func (s *Ean13_booklandContext) Gs1_prefix_bookland_1() IGs1_prefix_bookland_1Context

func (*Ean13_booklandContext) Gs1_prefix_bookland_2

func (s *Ean13_booklandContext) Gs1_prefix_bookland_2() IGs1_prefix_bookland_2Context

func (*Ean13_booklandContext) IsEan13_booklandContext

func (*Ean13_booklandContext) IsEan13_booklandContext()

func (*Ean13_booklandContext) ToStringTree

func (s *Ean13_booklandContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ean13_genericContext

type Ean13_genericContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEan13_genericContext

func NewEan13_genericContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ean13_genericContext

func NewEmptyEan13_genericContext

func NewEmptyEan13_genericContext() *Ean13_genericContext

func (*Ean13_genericContext) Check_code

func (s *Ean13_genericContext) Check_code() ICheck_codeContext

func (*Ean13_genericContext) Ean_13_manprod

func (s *Ean13_genericContext) Ean_13_manprod() IEan_13_manprodContext

func (*Ean13_genericContext) EnterRule

func (s *Ean13_genericContext) EnterRule(listener antlr.ParseTreeListener)

func (*Ean13_genericContext) ExitRule

func (s *Ean13_genericContext) ExitRule(listener antlr.ParseTreeListener)

func (*Ean13_genericContext) GetParser

func (s *Ean13_genericContext) GetParser() antlr.Parser

func (*Ean13_genericContext) GetRuleContext

func (s *Ean13_genericContext) GetRuleContext() antlr.RuleContext

func (*Ean13_genericContext) Gs1_prefix

func (s *Ean13_genericContext) Gs1_prefix() IGs1_prefixContext

func (*Ean13_genericContext) IsEan13_genericContext

func (*Ean13_genericContext) IsEan13_genericContext()

func (*Ean13_genericContext) ToStringTree

func (s *Ean13_genericContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ean13_ismnContext

type Ean13_ismnContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEan13_ismnContext

func NewEan13_ismnContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ean13_ismnContext

func NewEmptyEan13_ismnContext

func NewEmptyEan13_ismnContext() *Ean13_ismnContext

func (*Ean13_ismnContext) Check_code

func (s *Ean13_ismnContext) Check_code() ICheck_codeContext

func (*Ean13_ismnContext) EnterRule

func (s *Ean13_ismnContext) EnterRule(listener antlr.ParseTreeListener)

func (*Ean13_ismnContext) ExitRule

func (s *Ean13_ismnContext) ExitRule(listener antlr.ParseTreeListener)

func (*Ean13_ismnContext) GetParser

func (s *Ean13_ismnContext) GetParser() antlr.Parser

func (*Ean13_ismnContext) GetRuleContext

func (s *Ean13_ismnContext) GetRuleContext() antlr.RuleContext

func (*Ean13_ismnContext) Gs1_prefix_ismn

func (s *Ean13_ismnContext) Gs1_prefix_ismn() IGs1_prefix_ismnContext

func (*Ean13_ismnContext) IsEan13_ismnContext

func (*Ean13_ismnContext) IsEan13_ismnContext()

func (*Ean13_ismnContext) Ismn_item_number

func (s *Ean13_ismnContext) Ismn_item_number() IIsmn_item_numberContext

func (*Ean13_ismnContext) Ismn_publisher_number

func (s *Ean13_ismnContext) Ismn_publisher_number() IIsmn_publisher_numberContext

func (*Ean13_ismnContext) ToStringTree

func (s *Ean13_ismnContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ean13_issnContext

type Ean13_issnContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEan13_issnContext

func NewEan13_issnContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ean13_issnContext

func NewEmptyEan13_issnContext

func NewEmptyEan13_issnContext() *Ean13_issnContext

func (*Ean13_issnContext) Check_code

func (s *Ean13_issnContext) Check_code() ICheck_codeContext

func (*Ean13_issnContext) EnterRule

func (s *Ean13_issnContext) EnterRule(listener antlr.ParseTreeListener)

func (*Ean13_issnContext) ExitRule

func (s *Ean13_issnContext) ExitRule(listener antlr.ParseTreeListener)

func (*Ean13_issnContext) GetParser

func (s *Ean13_issnContext) GetParser() antlr.Parser

func (*Ean13_issnContext) GetRuleContext

func (s *Ean13_issnContext) GetRuleContext() antlr.RuleContext

func (*Ean13_issnContext) Gs1_prefix_issn

func (s *Ean13_issnContext) Gs1_prefix_issn() IGs1_prefix_issnContext

func (*Ean13_issnContext) IsEan13_issnContext

func (*Ean13_issnContext) IsEan13_issnContext()

func (*Ean13_issnContext) Issn

func (s *Ean13_issnContext) Issn() IIssnContext

func (*Ean13_issnContext) ToStringTree

func (s *Ean13_issnContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ean14Context

type Ean14Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEan14Context

func NewEan14Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ean14Context

func NewEmptyEan14Context

func NewEmptyEan14Context() *Ean14Context

func (*Ean14Context) Check_code

func (s *Ean14Context) Check_code() ICheck_codeContext

func (*Ean14Context) Ean14_packaging

func (s *Ean14Context) Ean14_packaging() IEan14_packagingContext

func (*Ean14Context) Ean14_product

func (s *Ean14Context) Ean14_product() IEan14_productContext

func (*Ean14Context) EnterRule

func (s *Ean14Context) EnterRule(listener antlr.ParseTreeListener)

func (*Ean14Context) ExitRule

func (s *Ean14Context) ExitRule(listener antlr.ParseTreeListener)

func (*Ean14Context) GetParser

func (s *Ean14Context) GetParser() antlr.Parser

func (*Ean14Context) GetRuleContext

func (s *Ean14Context) GetRuleContext() antlr.RuleContext

func (*Ean14Context) IsEan14Context

func (*Ean14Context) IsEan14Context()

func (*Ean14Context) ToStringTree

func (s *Ean14Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ean14_appidContext

type Ean14_appidContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEan14_appidContext

func NewEan14_appidContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ean14_appidContext

func NewEmptyEan14_appidContext

func NewEmptyEan14_appidContext() *Ean14_appidContext

func (*Ean14_appidContext) AllAny_digit

func (s *Ean14_appidContext) AllAny_digit() []IAny_digitContext

func (*Ean14_appidContext) Any_digit

func (s *Ean14_appidContext) Any_digit(i int) IAny_digitContext

func (*Ean14_appidContext) EnterRule

func (s *Ean14_appidContext) EnterRule(listener antlr.ParseTreeListener)

func (*Ean14_appidContext) ExitRule

func (s *Ean14_appidContext) ExitRule(listener antlr.ParseTreeListener)

func (*Ean14_appidContext) GetParser

func (s *Ean14_appidContext) GetParser() antlr.Parser

func (*Ean14_appidContext) GetRuleContext

func (s *Ean14_appidContext) GetRuleContext() antlr.RuleContext

func (*Ean14_appidContext) IsEan14_appidContext

func (*Ean14_appidContext) IsEan14_appidContext()

func (*Ean14_appidContext) ToStringTree

func (s *Ean14_appidContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ean14_packagingContext

type Ean14_packagingContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEan14_packagingContext

func NewEan14_packagingContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ean14_packagingContext

func NewEmptyEan14_packagingContext

func NewEmptyEan14_packagingContext() *Ean14_packagingContext

func (*Ean14_packagingContext) DIGIT_0

func (*Ean14_packagingContext) DIGIT_1

func (*Ean14_packagingContext) DIGIT_2

func (*Ean14_packagingContext) DIGIT_3

func (*Ean14_packagingContext) DIGIT_4

func (*Ean14_packagingContext) DIGIT_5

func (*Ean14_packagingContext) DIGIT_6

func (*Ean14_packagingContext) DIGIT_7

func (*Ean14_packagingContext) DIGIT_8

func (*Ean14_packagingContext) EnterRule

func (s *Ean14_packagingContext) EnterRule(listener antlr.ParseTreeListener)

func (*Ean14_packagingContext) ExitRule

func (s *Ean14_packagingContext) ExitRule(listener antlr.ParseTreeListener)

func (*Ean14_packagingContext) GetParser

func (s *Ean14_packagingContext) GetParser() antlr.Parser

func (*Ean14_packagingContext) GetRuleContext

func (s *Ean14_packagingContext) GetRuleContext() antlr.RuleContext

func (*Ean14_packagingContext) IsEan14_packagingContext

func (*Ean14_packagingContext) IsEan14_packagingContext()

func (*Ean14_packagingContext) ToStringTree

func (s *Ean14_packagingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ean14_productContext

type Ean14_productContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEan14_productContext

func NewEan14_productContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ean14_productContext

func NewEmptyEan14_productContext

func NewEmptyEan14_productContext() *Ean14_productContext

func (*Ean14_productContext) AllAny_digit

func (s *Ean14_productContext) AllAny_digit() []IAny_digitContext

func (*Ean14_productContext) Any_digit

func (s *Ean14_productContext) Any_digit(i int) IAny_digitContext

func (*Ean14_productContext) EnterRule

func (s *Ean14_productContext) EnterRule(listener antlr.ParseTreeListener)

func (*Ean14_productContext) ExitRule

func (s *Ean14_productContext) ExitRule(listener antlr.ParseTreeListener)

func (*Ean14_productContext) GetParser

func (s *Ean14_productContext) GetParser() antlr.Parser

func (*Ean14_productContext) GetRuleContext

func (s *Ean14_productContext) GetRuleContext() antlr.RuleContext

func (*Ean14_productContext) IsEan14_productContext

func (*Ean14_productContext) IsEan14_productContext()

func (*Ean14_productContext) ToStringTree

func (s *Ean14_productContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ean8Context

type Ean8Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEan8Context

func NewEan8Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ean8Context

func NewEmptyEan8Context

func NewEmptyEan8Context() *Ean8Context

func (*Ean8Context) AllAny_digit

func (s *Ean8Context) AllAny_digit() []IAny_digitContext

func (*Ean8Context) Any_digit

func (s *Ean8Context) Any_digit(i int) IAny_digitContext

func (*Ean8Context) EnterRule

func (s *Ean8Context) EnterRule(listener antlr.ParseTreeListener)

func (*Ean8Context) ExitRule

func (s *Ean8Context) ExitRule(listener antlr.ParseTreeListener)

func (*Ean8Context) GetParser

func (s *Ean8Context) GetParser() antlr.Parser

func (*Ean8Context) GetRuleContext

func (s *Ean8Context) GetRuleContext() antlr.RuleContext

func (*Ean8Context) IsEan8Context

func (*Ean8Context) IsEan8Context()

func (*Ean8Context) ToStringTree

func (s *Ean8Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ean_13_manprodContext

type Ean_13_manprodContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEan_13_manprodContext

func NewEan_13_manprodContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ean_13_manprodContext

func NewEmptyEan_13_manprodContext

func NewEmptyEan_13_manprodContext() *Ean_13_manprodContext

func (*Ean_13_manprodContext) AllAny_digit

func (s *Ean_13_manprodContext) AllAny_digit() []IAny_digitContext

func (*Ean_13_manprodContext) Any_digit

func (*Ean_13_manprodContext) EnterRule

func (s *Ean_13_manprodContext) EnterRule(listener antlr.ParseTreeListener)

func (*Ean_13_manprodContext) ExitRule

func (s *Ean_13_manprodContext) ExitRule(listener antlr.ParseTreeListener)

func (*Ean_13_manprodContext) GetParser

func (s *Ean_13_manprodContext) GetParser() antlr.Parser

func (*Ean_13_manprodContext) GetRuleContext

func (s *Ean_13_manprodContext) GetRuleContext() antlr.RuleContext

func (*Ean_13_manprodContext) IsEan_13_manprodContext

func (*Ean_13_manprodContext) IsEan_13_manprodContext()

func (*Ean_13_manprodContext) ToStringTree

func (s *Ean_13_manprodContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Gs1_prefixContext

type Gs1_prefixContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyGs1_prefixContext

func NewEmptyGs1_prefixContext() *Gs1_prefixContext

func NewGs1_prefixContext

func NewGs1_prefixContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Gs1_prefixContext

func (*Gs1_prefixContext) AllAny_digit

func (s *Gs1_prefixContext) AllAny_digit() []IAny_digitContext

func (*Gs1_prefixContext) Any_digit

func (s *Gs1_prefixContext) Any_digit(i int) IAny_digitContext

func (*Gs1_prefixContext) EnterRule

func (s *Gs1_prefixContext) EnterRule(listener antlr.ParseTreeListener)

func (*Gs1_prefixContext) ExitRule

func (s *Gs1_prefixContext) ExitRule(listener antlr.ParseTreeListener)

func (*Gs1_prefixContext) GetParser

func (s *Gs1_prefixContext) GetParser() antlr.Parser

func (*Gs1_prefixContext) GetRuleContext

func (s *Gs1_prefixContext) GetRuleContext() antlr.RuleContext

func (*Gs1_prefixContext) IsGs1_prefixContext

func (*Gs1_prefixContext) IsGs1_prefixContext()

func (*Gs1_prefixContext) ToStringTree

func (s *Gs1_prefixContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Gs1_prefix_bookland_1Context

type Gs1_prefix_bookland_1Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyGs1_prefix_bookland_1Context

func NewEmptyGs1_prefix_bookland_1Context() *Gs1_prefix_bookland_1Context

func NewGs1_prefix_bookland_1Context

func NewGs1_prefix_bookland_1Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Gs1_prefix_bookland_1Context

func (*Gs1_prefix_bookland_1Context) AllDIGIT_7

func (*Gs1_prefix_bookland_1Context) AllDIGIT_9

func (*Gs1_prefix_bookland_1Context) DIGIT_1

func (*Gs1_prefix_bookland_1Context) DIGIT_2

func (*Gs1_prefix_bookland_1Context) DIGIT_3

func (*Gs1_prefix_bookland_1Context) DIGIT_4

func (*Gs1_prefix_bookland_1Context) DIGIT_5

func (*Gs1_prefix_bookland_1Context) DIGIT_6

func (*Gs1_prefix_bookland_1Context) DIGIT_7

func (*Gs1_prefix_bookland_1Context) DIGIT_8

func (*Gs1_prefix_bookland_1Context) DIGIT_9

func (*Gs1_prefix_bookland_1Context) EnterRule

func (s *Gs1_prefix_bookland_1Context) EnterRule(listener antlr.ParseTreeListener)

func (*Gs1_prefix_bookland_1Context) ExitRule

func (*Gs1_prefix_bookland_1Context) GetParser

func (s *Gs1_prefix_bookland_1Context) GetParser() antlr.Parser

func (*Gs1_prefix_bookland_1Context) GetRuleContext

func (s *Gs1_prefix_bookland_1Context) GetRuleContext() antlr.RuleContext

func (*Gs1_prefix_bookland_1Context) IsGs1_prefix_bookland_1Context

func (*Gs1_prefix_bookland_1Context) IsGs1_prefix_bookland_1Context()

func (*Gs1_prefix_bookland_1Context) ToStringTree

func (s *Gs1_prefix_bookland_1Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Gs1_prefix_bookland_2Context

type Gs1_prefix_bookland_2Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyGs1_prefix_bookland_2Context

func NewEmptyGs1_prefix_bookland_2Context() *Gs1_prefix_bookland_2Context

func NewGs1_prefix_bookland_2Context

func NewGs1_prefix_bookland_2Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Gs1_prefix_bookland_2Context

func (*Gs1_prefix_bookland_2Context) Any_digit

func (*Gs1_prefix_bookland_2Context) DIGIT_7

func (*Gs1_prefix_bookland_2Context) DIGIT_8

func (*Gs1_prefix_bookland_2Context) DIGIT_9

func (*Gs1_prefix_bookland_2Context) EnterRule

func (s *Gs1_prefix_bookland_2Context) EnterRule(listener antlr.ParseTreeListener)

func (*Gs1_prefix_bookland_2Context) ExitRule

func (*Gs1_prefix_bookland_2Context) GetParser

func (s *Gs1_prefix_bookland_2Context) GetParser() antlr.Parser

func (*Gs1_prefix_bookland_2Context) GetRuleContext

func (s *Gs1_prefix_bookland_2Context) GetRuleContext() antlr.RuleContext

func (*Gs1_prefix_bookland_2Context) IsGs1_prefix_bookland_2Context

func (*Gs1_prefix_bookland_2Context) IsGs1_prefix_bookland_2Context()

func (*Gs1_prefix_bookland_2Context) ToStringTree

func (s *Gs1_prefix_bookland_2Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Gs1_prefix_ismnContext

type Gs1_prefix_ismnContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyGs1_prefix_ismnContext

func NewEmptyGs1_prefix_ismnContext() *Gs1_prefix_ismnContext

func NewGs1_prefix_ismnContext

func NewGs1_prefix_ismnContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Gs1_prefix_ismnContext

func (*Gs1_prefix_ismnContext) AllDIGIT_9

func (s *Gs1_prefix_ismnContext) AllDIGIT_9() []antlr.TerminalNode

func (*Gs1_prefix_ismnContext) DIGIT_0

func (*Gs1_prefix_ismnContext) DIGIT_7

func (*Gs1_prefix_ismnContext) DIGIT_9

func (*Gs1_prefix_ismnContext) EnterRule

func (s *Gs1_prefix_ismnContext) EnterRule(listener antlr.ParseTreeListener)

func (*Gs1_prefix_ismnContext) ExitRule

func (s *Gs1_prefix_ismnContext) ExitRule(listener antlr.ParseTreeListener)

func (*Gs1_prefix_ismnContext) GetParser

func (s *Gs1_prefix_ismnContext) GetParser() antlr.Parser

func (*Gs1_prefix_ismnContext) GetRuleContext

func (s *Gs1_prefix_ismnContext) GetRuleContext() antlr.RuleContext

func (*Gs1_prefix_ismnContext) IsGs1_prefix_ismnContext

func (*Gs1_prefix_ismnContext) IsGs1_prefix_ismnContext()

func (*Gs1_prefix_ismnContext) ToStringTree

func (s *Gs1_prefix_ismnContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Gs1_prefix_issnContext

type Gs1_prefix_issnContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyGs1_prefix_issnContext

func NewEmptyGs1_prefix_issnContext() *Gs1_prefix_issnContext

func NewGs1_prefix_issnContext

func NewGs1_prefix_issnContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Gs1_prefix_issnContext

func (*Gs1_prefix_issnContext) AllDIGIT_7

func (s *Gs1_prefix_issnContext) AllDIGIT_7() []antlr.TerminalNode

func (*Gs1_prefix_issnContext) DIGIT_7

func (*Gs1_prefix_issnContext) DIGIT_9

func (*Gs1_prefix_issnContext) EnterRule

func (s *Gs1_prefix_issnContext) EnterRule(listener antlr.ParseTreeListener)

func (*Gs1_prefix_issnContext) ExitRule

func (s *Gs1_prefix_issnContext) ExitRule(listener antlr.ParseTreeListener)

func (*Gs1_prefix_issnContext) GetParser

func (s *Gs1_prefix_issnContext) GetParser() antlr.Parser

func (*Gs1_prefix_issnContext) GetRuleContext

func (s *Gs1_prefix_issnContext) GetRuleContext() antlr.RuleContext

func (*Gs1_prefix_issnContext) IsGs1_prefix_issnContext

func (*Gs1_prefix_issnContext) IsGs1_prefix_issnContext()

func (*Gs1_prefix_issnContext) ToStringTree

func (s *Gs1_prefix_issnContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Gtin12Context

type Gtin12Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyGtin12Context

func NewEmptyGtin12Context() *Gtin12Context

func NewGtin12Context

func NewGtin12Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Gtin12Context

func (*Gtin12Context) EnterRule

func (s *Gtin12Context) EnterRule(listener antlr.ParseTreeListener)

func (*Gtin12Context) ExitRule

func (s *Gtin12Context) ExitRule(listener antlr.ParseTreeListener)

func (*Gtin12Context) GetParser

func (s *Gtin12Context) GetParser() antlr.Parser

func (*Gtin12Context) GetRuleContext

func (s *Gtin12Context) GetRuleContext() antlr.RuleContext

func (*Gtin12Context) IsGtin12Context

func (*Gtin12Context) IsGtin12Context()

func (*Gtin12Context) ToStringTree

func (s *Gtin12Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*Gtin12Context) Upc

func (s *Gtin12Context) Upc() IUpcContext

type Gtin13Context

type Gtin13Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyGtin13Context

func NewEmptyGtin13Context() *Gtin13Context

func NewGtin13Context

func NewGtin13Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Gtin13Context

func (*Gtin13Context) Ean13

func (s *Gtin13Context) Ean13() IEan13Context

func (*Gtin13Context) EnterRule

func (s *Gtin13Context) EnterRule(listener antlr.ParseTreeListener)

func (*Gtin13Context) ExitRule

func (s *Gtin13Context) ExitRule(listener antlr.ParseTreeListener)

func (*Gtin13Context) GetParser

func (s *Gtin13Context) GetParser() antlr.Parser

func (*Gtin13Context) GetRuleContext

func (s *Gtin13Context) GetRuleContext() antlr.RuleContext

func (*Gtin13Context) IsGtin13Context

func (*Gtin13Context) IsGtin13Context()

func (*Gtin13Context) ToStringTree

func (s *Gtin13Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Gtin14Context

type Gtin14Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyGtin14Context

func NewEmptyGtin14Context() *Gtin14Context

func NewGtin14Context

func NewGtin14Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Gtin14Context

func (*Gtin14Context) Ean14

func (s *Gtin14Context) Ean14() IEan14Context

func (*Gtin14Context) EnterRule

func (s *Gtin14Context) EnterRule(listener antlr.ParseTreeListener)

func (*Gtin14Context) ExitRule

func (s *Gtin14Context) ExitRule(listener antlr.ParseTreeListener)

func (*Gtin14Context) GetParser

func (s *Gtin14Context) GetParser() antlr.Parser

func (*Gtin14Context) GetRuleContext

func (s *Gtin14Context) GetRuleContext() antlr.RuleContext

func (*Gtin14Context) IsGtin14Context

func (*Gtin14Context) IsGtin14Context()

func (*Gtin14Context) ToStringTree

func (s *Gtin14Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Gtin8Context

type Gtin8Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyGtin8Context

func NewEmptyGtin8Context() *Gtin8Context

func NewGtin8Context

func NewGtin8Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Gtin8Context

func (*Gtin8Context) Ean8

func (s *Gtin8Context) Ean8() IEan8Context

func (*Gtin8Context) EnterRule

func (s *Gtin8Context) EnterRule(listener antlr.ParseTreeListener)

func (*Gtin8Context) ExitRule

func (s *Gtin8Context) ExitRule(listener antlr.ParseTreeListener)

func (*Gtin8Context) GetParser

func (s *Gtin8Context) GetParser() antlr.Parser

func (*Gtin8Context) GetRuleContext

func (s *Gtin8Context) GetRuleContext() antlr.RuleContext

func (*Gtin8Context) IsGtin8Context

func (*Gtin8Context) IsGtin8Context()

func (*Gtin8Context) ToStringTree

func (s *Gtin8Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type GtinContext

type GtinContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyGtinContext

func NewEmptyGtinContext() *GtinContext

func NewGtinContext

func NewGtinContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *GtinContext

func (*GtinContext) EOF

func (s *GtinContext) EOF() antlr.TerminalNode

func (*GtinContext) EnterRule

func (s *GtinContext) EnterRule(listener antlr.ParseTreeListener)

func (*GtinContext) ExitRule

func (s *GtinContext) ExitRule(listener antlr.ParseTreeListener)

func (*GtinContext) GetParser

func (s *GtinContext) GetParser() antlr.Parser

func (*GtinContext) GetRuleContext

func (s *GtinContext) GetRuleContext() antlr.RuleContext

func (*GtinContext) Gtin12

func (s *GtinContext) Gtin12() IGtin12Context

func (*GtinContext) Gtin13

func (s *GtinContext) Gtin13() IGtin13Context

func (*GtinContext) Gtin14

func (s *GtinContext) Gtin14() IGtin14Context

func (*GtinContext) Gtin8

func (s *GtinContext) Gtin8() IGtin8Context

func (*GtinContext) IsGtinContext

func (*GtinContext) IsGtinContext()

func (*GtinContext) Supplemental_code

func (s *GtinContext) Supplemental_code() ISupplemental_codeContext

func (*GtinContext) ToStringTree

func (s *GtinContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type IAny_digitContext

type IAny_digitContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsAny_digitContext differentiates from other interfaces.
	IsAny_digitContext()
}

IAny_digitContext is an interface to support dynamic dispatch.

type IBookland_isbnContext

type IBookland_isbnContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsBookland_isbnContext differentiates from other interfaces.
	IsBookland_isbnContext()
}

IBookland_isbnContext is an interface to support dynamic dispatch.

type ICheck_codeContext

type ICheck_codeContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCheck_codeContext differentiates from other interfaces.
	IsCheck_codeContext()
}

ICheck_codeContext is an interface to support dynamic dispatch.

type IEan13Context

type IEan13Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEan13Context differentiates from other interfaces.
	IsEan13Context()
}

IEan13Context is an interface to support dynamic dispatch.

type IEan13_booklandContext

type IEan13_booklandContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEan13_booklandContext differentiates from other interfaces.
	IsEan13_booklandContext()
}

IEan13_booklandContext is an interface to support dynamic dispatch.

type IEan13_genericContext

type IEan13_genericContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEan13_genericContext differentiates from other interfaces.
	IsEan13_genericContext()
}

IEan13_genericContext is an interface to support dynamic dispatch.

type IEan13_ismnContext

type IEan13_ismnContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEan13_ismnContext differentiates from other interfaces.
	IsEan13_ismnContext()
}

IEan13_ismnContext is an interface to support dynamic dispatch.

type IEan13_issnContext

type IEan13_issnContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEan13_issnContext differentiates from other interfaces.
	IsEan13_issnContext()
}

IEan13_issnContext is an interface to support dynamic dispatch.

type IEan14Context

type IEan14Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEan14Context differentiates from other interfaces.
	IsEan14Context()
}

IEan14Context is an interface to support dynamic dispatch.

type IEan14_appidContext

type IEan14_appidContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEan14_appidContext differentiates from other interfaces.
	IsEan14_appidContext()
}

IEan14_appidContext is an interface to support dynamic dispatch.

type IEan14_packagingContext

type IEan14_packagingContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEan14_packagingContext differentiates from other interfaces.
	IsEan14_packagingContext()
}

IEan14_packagingContext is an interface to support dynamic dispatch.

type IEan14_productContext

type IEan14_productContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEan14_productContext differentiates from other interfaces.
	IsEan14_productContext()
}

IEan14_productContext is an interface to support dynamic dispatch.

type IEan8Context

type IEan8Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEan8Context differentiates from other interfaces.
	IsEan8Context()
}

IEan8Context is an interface to support dynamic dispatch.

type IEan_13_manprodContext

type IEan_13_manprodContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEan_13_manprodContext differentiates from other interfaces.
	IsEan_13_manprodContext()
}

IEan_13_manprodContext is an interface to support dynamic dispatch.

type IGs1_prefixContext

type IGs1_prefixContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsGs1_prefixContext differentiates from other interfaces.
	IsGs1_prefixContext()
}

IGs1_prefixContext is an interface to support dynamic dispatch.

type IGs1_prefix_bookland_1Context

type IGs1_prefix_bookland_1Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsGs1_prefix_bookland_1Context differentiates from other interfaces.
	IsGs1_prefix_bookland_1Context()
}

IGs1_prefix_bookland_1Context is an interface to support dynamic dispatch.

type IGs1_prefix_bookland_2Context

type IGs1_prefix_bookland_2Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsGs1_prefix_bookland_2Context differentiates from other interfaces.
	IsGs1_prefix_bookland_2Context()
}

IGs1_prefix_bookland_2Context is an interface to support dynamic dispatch.

type IGs1_prefix_ismnContext

type IGs1_prefix_ismnContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsGs1_prefix_ismnContext differentiates from other interfaces.
	IsGs1_prefix_ismnContext()
}

IGs1_prefix_ismnContext is an interface to support dynamic dispatch.

type IGs1_prefix_issnContext

type IGs1_prefix_issnContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsGs1_prefix_issnContext differentiates from other interfaces.
	IsGs1_prefix_issnContext()
}

IGs1_prefix_issnContext is an interface to support dynamic dispatch.

type IGtin12Context

type IGtin12Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsGtin12Context differentiates from other interfaces.
	IsGtin12Context()
}

IGtin12Context is an interface to support dynamic dispatch.

type IGtin13Context

type IGtin13Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsGtin13Context differentiates from other interfaces.
	IsGtin13Context()
}

IGtin13Context is an interface to support dynamic dispatch.

type IGtin14Context

type IGtin14Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsGtin14Context differentiates from other interfaces.
	IsGtin14Context()
}

IGtin14Context is an interface to support dynamic dispatch.

type IGtin8Context

type IGtin8Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsGtin8Context differentiates from other interfaces.
	IsGtin8Context()
}

IGtin8Context is an interface to support dynamic dispatch.

type IGtinContext

type IGtinContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsGtinContext differentiates from other interfaces.
	IsGtinContext()
}

IGtinContext is an interface to support dynamic dispatch.

type IIsmn_item_numberContext

type IIsmn_item_numberContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsIsmn_item_numberContext differentiates from other interfaces.
	IsIsmn_item_numberContext()
}

IIsmn_item_numberContext is an interface to support dynamic dispatch.

type IIsmn_publisher_numberContext

type IIsmn_publisher_numberContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsIsmn_publisher_numberContext differentiates from other interfaces.
	IsIsmn_publisher_numberContext()
}

IIsmn_publisher_numberContext is an interface to support dynamic dispatch.

type IIssnContext

type IIssnContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsIssnContext differentiates from other interfaces.
	IsIssnContext()
}

IIssnContext is an interface to support dynamic dispatch.

type INum_systemContext

type INum_systemContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsNum_systemContext differentiates from other interfaces.
	IsNum_systemContext()
}

INum_systemContext is an interface to support dynamic dispatch.

type ISupplemental_codeContext

type ISupplemental_codeContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsSupplemental_codeContext differentiates from other interfaces.
	IsSupplemental_codeContext()
}

ISupplemental_codeContext is an interface to support dynamic dispatch.

type ISupplemental_code_2Context

type ISupplemental_code_2Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsSupplemental_code_2Context differentiates from other interfaces.
	IsSupplemental_code_2Context()
}

ISupplemental_code_2Context is an interface to support dynamic dispatch.

type ISupplemental_code_5Context

type ISupplemental_code_5Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsSupplemental_code_5Context differentiates from other interfaces.
	IsSupplemental_code_5Context()
}

ISupplemental_code_5Context is an interface to support dynamic dispatch.

type IUpcContext

type IUpcContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsUpcContext differentiates from other interfaces.
	IsUpcContext()
}

IUpcContext is an interface to support dynamic dispatch.

type IUpc_aContext

type IUpc_aContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsUpc_aContext differentiates from other interfaces.
	IsUpc_aContext()
}

IUpc_aContext is an interface to support dynamic dispatch.

type IUpc_a_5Context

type IUpc_a_5Context interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsUpc_a_5Context differentiates from other interfaces.
	IsUpc_a_5Context()
}

IUpc_a_5Context is an interface to support dynamic dispatch.

type IUpc_a_manufacturerContext

type IUpc_a_manufacturerContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsUpc_a_manufacturerContext differentiates from other interfaces.
	IsUpc_a_manufacturerContext()
}

IUpc_a_manufacturerContext is an interface to support dynamic dispatch.

type IUpc_a_productContext

type IUpc_a_productContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsUpc_a_productContext differentiates from other interfaces.
	IsUpc_a_productContext()
}

IUpc_a_productContext is an interface to support dynamic dispatch.

type IUpc_eContext

type IUpc_eContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsUpc_eContext differentiates from other interfaces.
	IsUpc_eContext()
}

IUpc_eContext is an interface to support dynamic dispatch.

type Ismn_item_numberContext

type Ismn_item_numberContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyIsmn_item_numberContext

func NewEmptyIsmn_item_numberContext() *Ismn_item_numberContext

func NewIsmn_item_numberContext

func NewIsmn_item_numberContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ismn_item_numberContext

func (*Ismn_item_numberContext) AllAny_digit

func (s *Ismn_item_numberContext) AllAny_digit() []IAny_digitContext

func (*Ismn_item_numberContext) Any_digit

func (*Ismn_item_numberContext) EnterRule

func (s *Ismn_item_numberContext) EnterRule(listener antlr.ParseTreeListener)

func (*Ismn_item_numberContext) ExitRule

func (s *Ismn_item_numberContext) ExitRule(listener antlr.ParseTreeListener)

func (*Ismn_item_numberContext) GetParser

func (s *Ismn_item_numberContext) GetParser() antlr.Parser

func (*Ismn_item_numberContext) GetRuleContext

func (s *Ismn_item_numberContext) GetRuleContext() antlr.RuleContext

func (*Ismn_item_numberContext) IsIsmn_item_numberContext

func (*Ismn_item_numberContext) IsIsmn_item_numberContext()

func (*Ismn_item_numberContext) ToStringTree

func (s *Ismn_item_numberContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Ismn_publisher_numberContext

type Ismn_publisher_numberContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyIsmn_publisher_numberContext

func NewEmptyIsmn_publisher_numberContext() *Ismn_publisher_numberContext

func NewIsmn_publisher_numberContext

func NewIsmn_publisher_numberContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ismn_publisher_numberContext

func (*Ismn_publisher_numberContext) AllAny_digit

func (s *Ismn_publisher_numberContext) AllAny_digit() []IAny_digitContext

func (*Ismn_publisher_numberContext) Any_digit

func (*Ismn_publisher_numberContext) EnterRule

func (s *Ismn_publisher_numberContext) EnterRule(listener antlr.ParseTreeListener)

func (*Ismn_publisher_numberContext) ExitRule

func (*Ismn_publisher_numberContext) GetParser

func (s *Ismn_publisher_numberContext) GetParser() antlr.Parser

func (*Ismn_publisher_numberContext) GetRuleContext

func (s *Ismn_publisher_numberContext) GetRuleContext() antlr.RuleContext

func (*Ismn_publisher_numberContext) IsIsmn_publisher_numberContext

func (*Ismn_publisher_numberContext) IsIsmn_publisher_numberContext()

func (*Ismn_publisher_numberContext) ToStringTree

func (s *Ismn_publisher_numberContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type IssnContext

type IssnContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyIssnContext

func NewEmptyIssnContext() *IssnContext

func NewIssnContext

func NewIssnContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *IssnContext

func (*IssnContext) AllAny_digit

func (s *IssnContext) AllAny_digit() []IAny_digitContext

func (*IssnContext) Any_digit

func (s *IssnContext) Any_digit(i int) IAny_digitContext

func (*IssnContext) EnterRule

func (s *IssnContext) EnterRule(listener antlr.ParseTreeListener)

func (*IssnContext) ExitRule

func (s *IssnContext) ExitRule(listener antlr.ParseTreeListener)

func (*IssnContext) GetParser

func (s *IssnContext) GetParser() antlr.Parser

func (*IssnContext) GetRuleContext

func (s *IssnContext) GetRuleContext() antlr.RuleContext

func (*IssnContext) IsIssnContext

func (*IssnContext) IsIssnContext()

func (*IssnContext) ToStringTree

func (s *IssnContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Num_systemContext

type Num_systemContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyNum_systemContext

func NewEmptyNum_systemContext() *Num_systemContext

func NewNum_systemContext

func NewNum_systemContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Num_systemContext

func (*Num_systemContext) Any_digit

func (s *Num_systemContext) Any_digit() IAny_digitContext

func (*Num_systemContext) EnterRule

func (s *Num_systemContext) EnterRule(listener antlr.ParseTreeListener)

func (*Num_systemContext) ExitRule

func (s *Num_systemContext) ExitRule(listener antlr.ParseTreeListener)

func (*Num_systemContext) GetParser

func (s *Num_systemContext) GetParser() antlr.Parser

func (*Num_systemContext) GetRuleContext

func (s *Num_systemContext) GetRuleContext() antlr.RuleContext

func (*Num_systemContext) IsNum_systemContext

func (*Num_systemContext) IsNum_systemContext()

func (*Num_systemContext) ToStringTree

func (s *Num_systemContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Supplemental_codeContext

type Supplemental_codeContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptySupplemental_codeContext

func NewEmptySupplemental_codeContext() *Supplemental_codeContext

func NewSupplemental_codeContext

func NewSupplemental_codeContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Supplemental_codeContext

func (*Supplemental_codeContext) EnterRule

func (s *Supplemental_codeContext) EnterRule(listener antlr.ParseTreeListener)

func (*Supplemental_codeContext) ExitRule

func (s *Supplemental_codeContext) ExitRule(listener antlr.ParseTreeListener)

func (*Supplemental_codeContext) GetParser

func (s *Supplemental_codeContext) GetParser() antlr.Parser

func (*Supplemental_codeContext) GetRuleContext

func (s *Supplemental_codeContext) GetRuleContext() antlr.RuleContext

func (*Supplemental_codeContext) IsSupplemental_codeContext

func (*Supplemental_codeContext) IsSupplemental_codeContext()

func (*Supplemental_codeContext) Supplemental_code_2

func (s *Supplemental_codeContext) Supplemental_code_2() ISupplemental_code_2Context

func (*Supplemental_codeContext) Supplemental_code_5

func (s *Supplemental_codeContext) Supplemental_code_5() ISupplemental_code_5Context

func (*Supplemental_codeContext) ToStringTree

func (s *Supplemental_codeContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Supplemental_code_2Context

type Supplemental_code_2Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptySupplemental_code_2Context

func NewEmptySupplemental_code_2Context() *Supplemental_code_2Context

func NewSupplemental_code_2Context

func NewSupplemental_code_2Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Supplemental_code_2Context

func (*Supplemental_code_2Context) AllAny_digit

func (s *Supplemental_code_2Context) AllAny_digit() []IAny_digitContext

func (*Supplemental_code_2Context) Any_digit

func (*Supplemental_code_2Context) EnterRule

func (s *Supplemental_code_2Context) EnterRule(listener antlr.ParseTreeListener)

func (*Supplemental_code_2Context) ExitRule

func (s *Supplemental_code_2Context) ExitRule(listener antlr.ParseTreeListener)

func (*Supplemental_code_2Context) GetParser

func (s *Supplemental_code_2Context) GetParser() antlr.Parser

func (*Supplemental_code_2Context) GetRuleContext

func (s *Supplemental_code_2Context) GetRuleContext() antlr.RuleContext

func (*Supplemental_code_2Context) IsSupplemental_code_2Context

func (*Supplemental_code_2Context) IsSupplemental_code_2Context()

func (*Supplemental_code_2Context) ToStringTree

func (s *Supplemental_code_2Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Supplemental_code_5Context

type Supplemental_code_5Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptySupplemental_code_5Context

func NewEmptySupplemental_code_5Context() *Supplemental_code_5Context

func NewSupplemental_code_5Context

func NewSupplemental_code_5Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Supplemental_code_5Context

func (*Supplemental_code_5Context) AllAny_digit

func (s *Supplemental_code_5Context) AllAny_digit() []IAny_digitContext

func (*Supplemental_code_5Context) Any_digit

func (*Supplemental_code_5Context) EnterRule

func (s *Supplemental_code_5Context) EnterRule(listener antlr.ParseTreeListener)

func (*Supplemental_code_5Context) ExitRule

func (s *Supplemental_code_5Context) ExitRule(listener antlr.ParseTreeListener)

func (*Supplemental_code_5Context) GetParser

func (s *Supplemental_code_5Context) GetParser() antlr.Parser

func (*Supplemental_code_5Context) GetRuleContext

func (s *Supplemental_code_5Context) GetRuleContext() antlr.RuleContext

func (*Supplemental_code_5Context) IsSupplemental_code_5Context

func (*Supplemental_code_5Context) IsSupplemental_code_5Context()

func (*Supplemental_code_5Context) ToStringTree

func (s *Supplemental_code_5Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type UpcContext

type UpcContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyUpcContext

func NewEmptyUpcContext() *UpcContext

func NewUpcContext

func NewUpcContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *UpcContext

func (*UpcContext) EnterRule

func (s *UpcContext) EnterRule(listener antlr.ParseTreeListener)

func (*UpcContext) ExitRule

func (s *UpcContext) ExitRule(listener antlr.ParseTreeListener)

func (*UpcContext) GetParser

func (s *UpcContext) GetParser() antlr.Parser

func (*UpcContext) GetRuleContext

func (s *UpcContext) GetRuleContext() antlr.RuleContext

func (*UpcContext) IsUpcContext

func (*UpcContext) IsUpcContext()

func (*UpcContext) ToStringTree

func (s *UpcContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*UpcContext) Upc_a

func (s *UpcContext) Upc_a() IUpc_aContext

func (*UpcContext) Upc_e

func (s *UpcContext) Upc_e() IUpc_eContext

type Upc_aContext

type Upc_aContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyUpc_aContext

func NewEmptyUpc_aContext() *Upc_aContext

func NewUpc_aContext

func NewUpc_aContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Upc_aContext

func (*Upc_aContext) Check_code

func (s *Upc_aContext) Check_code() ICheck_codeContext

func (*Upc_aContext) EnterRule

func (s *Upc_aContext) EnterRule(listener antlr.ParseTreeListener)

func (*Upc_aContext) ExitRule

func (s *Upc_aContext) ExitRule(listener antlr.ParseTreeListener)

func (*Upc_aContext) GetParser

func (s *Upc_aContext) GetParser() antlr.Parser

func (*Upc_aContext) GetRuleContext

func (s *Upc_aContext) GetRuleContext() antlr.RuleContext

func (*Upc_aContext) IsUpc_aContext

func (*Upc_aContext) IsUpc_aContext()

func (*Upc_aContext) Num_system

func (s *Upc_aContext) Num_system() INum_systemContext

func (*Upc_aContext) ToStringTree

func (s *Upc_aContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*Upc_aContext) Upc_a_manufacturer

func (s *Upc_aContext) Upc_a_manufacturer() IUpc_a_manufacturerContext

func (*Upc_aContext) Upc_a_product

func (s *Upc_aContext) Upc_a_product() IUpc_a_productContext

type Upc_a_5Context

type Upc_a_5Context struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyUpc_a_5Context

func NewEmptyUpc_a_5Context() *Upc_a_5Context

func NewUpc_a_5Context

func NewUpc_a_5Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Upc_a_5Context

func (*Upc_a_5Context) AllAny_digit

func (s *Upc_a_5Context) AllAny_digit() []IAny_digitContext

func (*Upc_a_5Context) Any_digit

func (s *Upc_a_5Context) Any_digit(i int) IAny_digitContext

func (*Upc_a_5Context) EnterRule

func (s *Upc_a_5Context) EnterRule(listener antlr.ParseTreeListener)

func (*Upc_a_5Context) ExitRule

func (s *Upc_a_5Context) ExitRule(listener antlr.ParseTreeListener)

func (*Upc_a_5Context) GetParser

func (s *Upc_a_5Context) GetParser() antlr.Parser

func (*Upc_a_5Context) GetRuleContext

func (s *Upc_a_5Context) GetRuleContext() antlr.RuleContext

func (*Upc_a_5Context) IsUpc_a_5Context

func (*Upc_a_5Context) IsUpc_a_5Context()

func (*Upc_a_5Context) ToStringTree

func (s *Upc_a_5Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Upc_a_manufacturerContext

type Upc_a_manufacturerContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyUpc_a_manufacturerContext

func NewEmptyUpc_a_manufacturerContext() *Upc_a_manufacturerContext

func NewUpc_a_manufacturerContext

func NewUpc_a_manufacturerContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Upc_a_manufacturerContext

func (*Upc_a_manufacturerContext) EnterRule

func (s *Upc_a_manufacturerContext) EnterRule(listener antlr.ParseTreeListener)

func (*Upc_a_manufacturerContext) ExitRule

func (s *Upc_a_manufacturerContext) ExitRule(listener antlr.ParseTreeListener)

func (*Upc_a_manufacturerContext) GetParser

func (s *Upc_a_manufacturerContext) GetParser() antlr.Parser

func (*Upc_a_manufacturerContext) GetRuleContext

func (s *Upc_a_manufacturerContext) GetRuleContext() antlr.RuleContext

func (*Upc_a_manufacturerContext) IsUpc_a_manufacturerContext

func (*Upc_a_manufacturerContext) IsUpc_a_manufacturerContext()

func (*Upc_a_manufacturerContext) ToStringTree

func (s *Upc_a_manufacturerContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*Upc_a_manufacturerContext) Upc_a_5

type Upc_a_productContext

type Upc_a_productContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyUpc_a_productContext

func NewEmptyUpc_a_productContext() *Upc_a_productContext

func NewUpc_a_productContext

func NewUpc_a_productContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Upc_a_productContext

func (*Upc_a_productContext) EnterRule

func (s *Upc_a_productContext) EnterRule(listener antlr.ParseTreeListener)

func (*Upc_a_productContext) ExitRule

func (s *Upc_a_productContext) ExitRule(listener antlr.ParseTreeListener)

func (*Upc_a_productContext) GetParser

func (s *Upc_a_productContext) GetParser() antlr.Parser

func (*Upc_a_productContext) GetRuleContext

func (s *Upc_a_productContext) GetRuleContext() antlr.RuleContext

func (*Upc_a_productContext) IsUpc_a_productContext

func (*Upc_a_productContext) IsUpc_a_productContext()

func (*Upc_a_productContext) ToStringTree

func (s *Upc_a_productContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*Upc_a_productContext) Upc_a_5

type Upc_eContext

type Upc_eContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyUpc_eContext

func NewEmptyUpc_eContext() *Upc_eContext

func NewUpc_eContext

func NewUpc_eContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Upc_eContext

func (*Upc_eContext) AllAny_digit

func (s *Upc_eContext) AllAny_digit() []IAny_digitContext

func (*Upc_eContext) Any_digit

func (s *Upc_eContext) Any_digit(i int) IAny_digitContext

func (*Upc_eContext) EnterRule

func (s *Upc_eContext) EnterRule(listener antlr.ParseTreeListener)

func (*Upc_eContext) ExitRule

func (s *Upc_eContext) ExitRule(listener antlr.ParseTreeListener)

func (*Upc_eContext) GetParser

func (s *Upc_eContext) GetParser() antlr.Parser

func (*Upc_eContext) GetRuleContext

func (s *Upc_eContext) GetRuleContext() antlr.RuleContext

func (*Upc_eContext) IsUpc_eContext

func (*Upc_eContext) IsUpc_eContext()

func (*Upc_eContext) ToStringTree

func (s *Upc_eContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL