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 IOpenElementTagStandardModelFactory. createOpenElementTag(String elementName, Map<String,String> attributes, AttributeValueQuotes attributeValueQuotes, boolean synthetic)IStandaloneElementTagStandardModelFactory. createStandaloneElementTag(String elementName, Map<String,String> attributes, AttributeValueQuotes attributeValueQuotes, boolean synthetic, boolean minimized)voidElementTagStructureHandler. replaceAttribute(AttributeName oldAttributeName, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)voidElementTagStructureHandler. 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)voidElementTagStructureHandler. setAttribute(String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)voidElementTagStructureHandler. 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 AttributeValueQuotesIAttribute. getValueQuotes()Returns the type of quotes surrounding the attribute value.static AttributeValueQuotesAttributeValueQuotes. 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 IOpenElementTagIModelFactory. createOpenElementTag(String elementName, Map<String,String> attributes, AttributeValueQuotes attributeValueQuotes, boolean synthetic)Create a new open element tag, specifying several attributes.IStandaloneElementTagIModelFactory. 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 voidIElementTagStructureHandler. 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.voidIElementTagStructureHandler. setAttribute(String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes)Instructs the engine to set an attribute (existing or not) in the current tag being processed.
-