Uses of Interface
it.tugamer89.autogex.regex.ast.RegexNode
Packages that use RegexNode
Package
Description
-
Uses of RegexNode in it.tugamer89.autogex.algorithms
Methods in it.tugamer89.autogex.algorithms with parameters of type RegexNode -
Uses of RegexNode in it.tugamer89.autogex.regex.ast
Classes in it.tugamer89.autogex.regex.ast that implement RegexNodeModifier and TypeClassDescriptionstatic final recordRepresents the concatenation of two regular expressions (e.g., "ab").static final recordRepresents a single literal character in the regex (e.g., 'a', 'b').static final recordRepresents the Kleene Star operator, allowing zero or more repetitions (e.g., "a*").static final recordRepresents the union (OR) of two regular expressions (e.g., "a|b").Methods in it.tugamer89.autogex.regex.ast that return RegexNodeModifier and TypeMethodDescriptionRegexNode.StarNode.child()Returns the value of thechildrecord component.RegexNode.ConcatNode.left()Returns the value of theleftrecord component.RegexNode.UnionNode.left()Returns the value of theleftrecord component.RegexNode.ConcatNode.right()Returns the value of therightrecord component.RegexNode.UnionNode.right()Returns the value of therightrecord component.Constructors in it.tugamer89.autogex.regex.ast with parameters of type RegexNode -
Uses of RegexNode in it.tugamer89.autogex.regex.parser
Methods in it.tugamer89.autogex.regex.parser that return RegexNode