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 a Character Class, allowing any character from a defined set (e.g., "[a-z]", "\d").static 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 Optional operator, allowing zero or one occurrence (e.g., "a?").static final recordRepresents the Plus operator, allowing one or more repetitions (e.g., "a+").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").static final recordRepresents the Wildcard operator, matching any character in the known alphabet (e.g., ".").Methods in org.eu.autogex.regex.ast that return RegexNodeModifier and TypeMethodDescriptionRegexNode.OptionalNode.child()Returns the value of thechildrecord component.RegexNode.PlusNode.child()Returns the value of thechildrecord component.RegexNode.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 RegexNodeModifierConstructorDescriptionConcatNode(RegexNode left, RegexNode right) Creates an instance of aConcatNoderecord class.OptionalNode(RegexNode child) Creates an instance of aOptionalNoderecord class.Creates an instance of aPlusNoderecord class.Creates an instance of aStarNoderecord class.Creates an instance of aUnionNoderecord class. -
Uses of RegexNode in org.eu.autogex.regex.parser
Methods in org.eu.autogex.regex.parser that return RegexNode