Uses of Class
org.thymeleaf.model.AttributeValueQuotes
-
Packages that use AttributeValueQuotes Package Description org.thymeleaf.engine org.thymeleaf.model org.thymeleaf.processor.element -
-
Uses of AttributeValueQuotes in org.thymeleaf.engine
Methods in org.thymeleaf.engine with parameters of type AttributeValueQuotes Modifier and Type Method Description IOpenElementTag
StandardModelFactory. createOpenElementTag(String elementName, Map<String,String> attributes, AttributeValueQuotes attributeValueQuotes, boolean synthetic)
IStandaloneElementTag
StandardModelFactory. createStandaloneElementTag(String elementName, Map<String,String> attributes, AttributeValueQuotes attributeValueQuotes, boolean synthetic, boolean minimized)
void
ElementTagStructureHandler. replaceAttribute(AttributeName oldAttributeName, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)
void
ElementTagStructureHandler. replaceAttribute(AttributeName oldAttributeName, AttributeDefinition attributeDefinition, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)
<T extends IProcessableElementTag>
TStandardModelFactory. replaceAttribute(T tag, AttributeName oldAttributeName, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)
void
ElementTagStructureHandler. setAttribute(String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)
void
ElementTagStructureHandler. setAttribute(AttributeDefinition attributeDefinition, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)
<T extends IProcessableElementTag>
TStandardModelFactory. setAttribute(T tag, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)
-
Uses of AttributeValueQuotes in org.thymeleaf.model
Methods in org.thymeleaf.model that return AttributeValueQuotes Modifier and Type Method Description AttributeValueQuotes
IAttribute. getValueQuotes()
Returns the type of quotes surrounding the attribute value.static AttributeValueQuotes
AttributeValueQuotes. valueOf(String name)
Returns the enum constant of this type with the specified name.static AttributeValueQuotes[]
AttributeValueQuotes. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.thymeleaf.model with parameters of type AttributeValueQuotes Modifier and Type Method Description IOpenElementTag
IModelFactory. createOpenElementTag(String elementName, Map<String,String> attributes, AttributeValueQuotes attributeValueQuotes, boolean synthetic)
Create a new open element tag, specifying several attributes.IStandaloneElementTag
IModelFactory. createStandaloneElementTag(String elementName, Map<String,String> attributes, AttributeValueQuotes attributeValueQuotes, boolean synthetic, boolean minimized)
Create a new standalone element tag, specifying several attributes.<T extends IProcessableElementTag>
TIModelFactory. replaceAttribute(T tag, AttributeName oldAttributeName, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)
Create a new tag object replacing an attribute in the original tag with another one, also specifying the type of quotes to be used for representing the attribute value.<T extends IProcessableElementTag>
TIModelFactory. setAttribute(T tag, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)
Create a new tag object that adds a new attribute to the existing ones in a specified tag, also specifying the type of quotes to be used for representing the attribute value. -
Uses of AttributeValueQuotes in org.thymeleaf.processor.element
Methods in org.thymeleaf.processor.element with parameters of type AttributeValueQuotes Modifier and Type Method Description void
IElementTagStructureHandler. replaceAttribute(AttributeName oldAttributeName, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)
Instructs the engine to replace an existing attribute for a new one (which can also exist) in the current tag being processed.void
IElementTagStructureHandler. setAttribute(String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)
Instructs the engine to set an attribute (existing or not) in the current tag being processed.
-