Uses of Interface
org.eu.autogex.regex.ast.RegexNode
Packages that use RegexNode
-
Uses of RegexNode in org.eu.autogex.algorithms
Methods in org.eu.autogex.algorithms with parameters of type RegexNode -
Uses of RegexNode in org.eu.autogex.regex.ast
Classes in org.eu.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 org.eu.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 org.eu.autogex.regex.ast with parameters of type RegexNode -
Uses of RegexNode in org.eu.autogex.regex.parser
Methods in org.eu.autogex.regex.parser that return RegexNode