Package org.thymeleaf.engine
Class AttributeNames
- Object
-
- org.thymeleaf.engine.AttributeNames
-
public class AttributeNames extends Object
- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HTMLAttributeName
forHTMLName(char[] attributeNameBuffer, int attributeNameOffset, int attributeNameLen)
static HTMLAttributeName
forHTMLName(String attributeName)
static HTMLAttributeName
forHTMLName(String prefix, String attributeName)
static AttributeName
forName(TemplateMode templateMode, char[] attributeNameBuffer, int attributeNameOffset, int attributeNameLen)
static AttributeName
forName(TemplateMode templateMode, String attributeName)
static AttributeName
forName(TemplateMode templateMode, String prefix, String attributeName)
static TextAttributeName
forTextName(char[] attributeNameBuffer, int attributeNameOffset, int attributeNameLen)
static TextAttributeName
forTextName(String attributeName)
static TextAttributeName
forTextName(String prefix, String attributeName)
static XMLAttributeName
forXMLName(char[] attributeNameBuffer, int attributeNameOffset, int attributeNameLen)
static XMLAttributeName
forXMLName(String attributeName)
static XMLAttributeName
forXMLName(String prefix, String attributeName)
-
-
-
Method Detail
-
forName
public static AttributeName forName(TemplateMode templateMode, char[] attributeNameBuffer, int attributeNameOffset, int attributeNameLen)
-
forName
public static AttributeName forName(TemplateMode templateMode, String attributeName)
-
forName
public static AttributeName forName(TemplateMode templateMode, String prefix, String attributeName)
-
forTextName
public static TextAttributeName forTextName(char[] attributeNameBuffer, int attributeNameOffset, int attributeNameLen)
-
forXMLName
public static XMLAttributeName forXMLName(char[] attributeNameBuffer, int attributeNameOffset, int attributeNameLen)
-
forHTMLName
public static HTMLAttributeName forHTMLName(char[] attributeNameBuffer, int attributeNameOffset, int attributeNameLen)
-
forTextName
public static TextAttributeName forTextName(String attributeName)
-
forXMLName
public static XMLAttributeName forXMLName(String attributeName)
-
forHTMLName
public static HTMLAttributeName forHTMLName(String attributeName)
-
forTextName
public static TextAttributeName forTextName(String prefix, String attributeName)
-
forXMLName
public static XMLAttributeName forXMLName(String prefix, String attributeName)
-
forHTMLName
public static HTMLAttributeName forHTMLName(String prefix, String attributeName)
-
-