- CharAnyNode - com.github.sisyphsu.retree中的类
-
This CharNode supports '
- CharAnyNode() - 类 的构造器com.github.sisyphsu.retree.CharAnyNode
-
- CharNode - com.github.sisyphsu.retree中的类
-
This node is the base class for char matching
- CharNode(boolean) - 类 的构造器com.github.sisyphsu.retree.CharNode
-
- CharRangeNode - com.github.sisyphsu.retree中的类
-
This node support single char like [a-z]
- CharRangeNode(int, int) - 类 的构造器com.github.sisyphsu.retree.CharRangeNode
-
- CharRefNode - com.github.sisyphsu.retree中的类
-
This node support backreference, like '(\d)(\w)\2' could match '1aa', the '\2' could refer to '\w'.
- CharRefNode(int) - 类 的构造器com.github.sisyphsu.retree.CharRefNode
-
- CharSetNode - com.github.sisyphsu.retree中的类
-
This node supports [abcde], only supports Latin-1 char.
- CharSetNode() - 类 的构造器com.github.sisyphsu.retree.CharSetNode
-
- CharSingleNode - com.github.sisyphsu.retree中的类
-
This node supports one single char, like 'A'
- CharSingleNode(int) - 类 的构造器com.github.sisyphsu.retree.CharSingleNode
-
- CharSliceNode - com.github.sisyphsu.retree中的类
-
This node support the original char slice, like string.
- CharSliceNode(int[]) - 类 的构造器com.github.sisyphsu.retree.CharSliceNode
-
- CharTypeNode - com.github.sisyphsu.retree中的类
-
This node supports escape char, like '\d' '\w'
- CharTypeNode(int, boolean) - 类 的构造器com.github.sisyphsu.retree.CharTypeNode
-
- CharUnionNode - com.github.sisyphsu.retree中的类
-
This node supports multiple CharNode's union
- CharUnionNode(CharNode, CharNode) - 类 的构造器com.github.sisyphsu.retree.CharUnionNode
-
- CharWhitespaceNode - com.github.sisyphsu.retree中的类
-
This node supports whitespace char like '\V', '\v', '\H', '\h'.
- CharWhitespaceNode(boolean, boolean) - 类 的构造器com.github.sisyphsu.retree.CharWhitespaceNode
-
- com.github.sisyphsu.retree - 程序包 com.github.sisyphsu.retree
-
- complement() - 类 中的方法com.github.sisyphsu.retree.CharNode
-
- CurlyNode - com.github.sisyphsu.retree中的类
-
This node support repeat rules that isn't complex, like \d+.
- CurlyNode(int, int, int, Node, Node) - 类 的构造器com.github.sisyphsu.retree.CurlyNode
-