Class TextParsingElementUtil
- java.lang.Object
-
- org.thymeleaf.templateparser.text.TextParsingElementUtil
-
final class TextParsingElementUtil extends java.lang.Object
-
-
Constructor Summary
Constructors Modifier Constructor Description privateTextParsingElementUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description (package private) static booleanisCloseElementStart(char[] buffer, int offset, int maxi)(package private) static booleanisElementEnd(char[] buffer, int offset, int maxi, boolean minimized)private static booleanisElementNameOrEnd(char[] buffer, int offset, int maxi)(package private) static booleanisOpenElementStart(char[] buffer, int offset, int maxi)static voidparseCloseElement(char[] buffer, int offset, int len, int line, int col, ITextHandler handler)static voidparseOpenElement(char[] buffer, int offset, int len, int line, int col, ITextHandler handler)static voidparseStandaloneElement(char[] buffer, int offset, int len, int line, int col, ITextHandler handler)
-
-
-
Method Detail
-
parseStandaloneElement
public static void parseStandaloneElement(char[] buffer, int offset, int len, int line, int col, ITextHandler handler) throws TextParseException- Throws:
TextParseException
-
parseOpenElement
public static void parseOpenElement(char[] buffer, int offset, int len, int line, int col, ITextHandler handler) throws TextParseException- Throws:
TextParseException
-
parseCloseElement
public static void parseCloseElement(char[] buffer, int offset, int len, int line, int col, ITextHandler handler) throws TextParseException- Throws:
TextParseException
-
isOpenElementStart
static boolean isOpenElementStart(char[] buffer, int offset, int maxi)
-
isCloseElementStart
static boolean isCloseElementStart(char[] buffer, int offset, int maxi)
-
isElementEnd
static boolean isElementEnd(char[] buffer, int offset, int maxi, boolean minimized)
-
isElementNameOrEnd
private static boolean isElementNameOrEnd(char[] buffer, int offset, int maxi)
-
-