Package org.thymeleaf.engine
Class EngineEventUtils
- Object
-
- org.thymeleaf.engine.EngineEventUtils
-
public final class EngineEventUtils extends Object
Utility class containing methods that answer questions about the contents or features of specific event objects.
Meant for internal use only.
- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IStandardExpression
computeAttributeExpression(ITemplateContext context, IProcessableElementTag tag, AttributeName attributeName, String attributeValue)
static boolean
isInlineable(ICDATASection cdataSection)
static boolean
isInlineable(IComment comment)
static boolean
isInlineable(IText text)
static boolean
isWhitespace(ICDATASection cdataSection)
static boolean
isWhitespace(IComment comment)
static boolean
isWhitespace(IText text)
-
-
-
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)
-
computeAttributeExpression
public static IStandardExpression computeAttributeExpression(ITemplateContext context, IProcessableElementTag tag, AttributeName attributeName, String attributeValue)
-
-