Package org.thymeleaf.engine
Class EngineEventUtils
- java.lang.Object
-
- org.thymeleaf.engine.EngineEventUtils
-
public final class EngineEventUtils extends java.lang.ObjectUtility class containing methods that answer questions about the contents or features of specific event objects.
Meant for internal use only.
- Since:
- 3.0.0
-
-
Constructor Summary
Constructors Modifier Constructor Description privateEngineEventUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IStandardExpressioncomputeAttributeExpression(ITemplateContext context, IProcessableElementTag tag, AttributeName attributeName, java.lang.String attributeValue)private static booleancomputeInlineable(java.lang.CharSequence text)private static booleancomputeWhitespace(java.lang.CharSequence text)static booleanisInlineable(ICDATASection cdataSection)static booleanisInlineable(IComment comment)static booleanisInlineable(IText text)static booleanisWhitespace(ICDATASection cdataSection)static booleanisWhitespace(IComment comment)static booleanisWhitespace(IText text)private static IStandardExpressionparseAttributeExpression(ITemplateContext context, java.lang.String attributeValue)
-
-
-
Method Detail
-
isWhitespace
public static boolean isWhitespace(IText text)
-
isWhitespace
public static boolean isWhitespace(ICDATASection cdataSection)
-
isWhitespace
public static boolean isWhitespace(IComment comment)
-
isInlineable
public static boolean isInlineable(IText text)
-
isInlineable
public static boolean isInlineable(ICDATASection cdataSection)
-
isInlineable
public static boolean isInlineable(IComment comment)
-
computeWhitespace
private static boolean computeWhitespace(java.lang.CharSequence text)
-
computeInlineable
private static boolean computeInlineable(java.lang.CharSequence text)
-
computeAttributeExpression
public static IStandardExpression computeAttributeExpression(ITemplateContext context, IProcessableElementTag tag, AttributeName attributeName, java.lang.String attributeValue)
-
parseAttributeExpression
private static IStandardExpression parseAttributeExpression(ITemplateContext context, java.lang.String attributeValue)
-
-