condition

package
v0.0.5 Latest Latest
Warning

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

Go to latest
Published: Jun 30, 2023 License: MIT Imports: 0 Imported by: 1

Documentation

Index

Constants

View Source
const (
	GroupLogicAnd = iota
	GroupLogicOr
	GroupLogicXor
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Builder

type Builder interface {
	Negation() Builder
	GroupLogic(l GroupLogic) Builder
	GroupChildren(children []Condition) Builder
	MatchAttrKey(k string) Builder
	MatchText(p string) Builder

	BuildGroupCondition() (c Condition)
	BuildTextCondition() (c Condition)
}

func NewBuilder

func NewBuilder() Builder

type Condition

type Condition interface {
	IsNot() bool
}

func NewCondition

func NewCondition(not bool) Condition

type GroupCondition

type GroupCondition interface {
	Condition
	GetLogic() (logic GroupLogic)
	GetGroup() (group []Condition)
}

func NewGroupCondition

func NewGroupCondition(c Condition, logic GroupLogic, group []Condition) GroupCondition

type GroupLogic

type GroupLogic int

func (GroupLogic) String

func (gl GroupLogic) String() string

type KeyCondition

type KeyCondition interface {
	Condition
	GetKey() string
}

func NewKeyCondition

func NewKeyCondition(c Condition, k string) KeyCondition

type TextCondition added in v0.0.5

type TextCondition interface {
	KeyCondition
	GetTerm() string
}

func NewTextCondition added in v0.0.5

func NewTextCondition(kc KeyCondition, pattern string) TextCondition

Jump to

Keyboard shortcuts

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