Uses of Enum
org.thymeleaf.model.AttributeValueQuotes
Packages that use AttributeValueQuotes
-
Uses of AttributeValueQuotes in org.thymeleaf.engine
Fields in org.thymeleaf.engine declared as AttributeValueQuotesModifier and TypeFieldDescription(package private) final AttributeValueQuotesAttribute.valueQuotesMethods in org.thymeleaf.engine that return AttributeValueQuotesMethods in org.thymeleaf.engine with parameters of type AttributeValueQuotesModifier and TypeMethodDescriptionprivate AttributeStandardModelFactory.buildAttribute(String name, String value, AttributeValueQuotes quotes) private Attribute[]StandardModelFactory.buildAttributeArray(Map<String, String> attributes, AttributeValueQuotes quotes) StandardModelFactory.createOpenElementTag(String elementName, Map<String, String> attributes, AttributeValueQuotes attributeValueQuotes, boolean synthetic) StandardModelFactory.createStandaloneElementTag(String elementName, Map<String, String> attributes, AttributeValueQuotes attributeValueQuotes, boolean synthetic, boolean minimized) (package private) AttributeAttribute.modify(AttributeDefinition definition, String completeName, String value, AttributeValueQuotes valueQuotes) (package private) abstract AbstractProcessableElementTagAbstractProcessableElementTag.replaceAttribute(AttributeDefinitions attributeDefinitions, AttributeName oldName, AttributeDefinition newAttributeDefinition, String completeNewName, String value, AttributeValueQuotes valueQuotes) (package private) AttributesAttributes.replaceAttribute(AttributeDefinitions attributeDefinitions, TemplateMode templateMode, AttributeName oldName, AttributeDefinition newAttributeDefinition, String newCompleteName, String value, AttributeValueQuotes valueQuotes) voidElementTagStructureHandler.replaceAttribute(AttributeName oldAttributeName, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes) voidElementTagStructureHandler.replaceAttribute(AttributeName oldAttributeName, AttributeDefinition attributeDefinition, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes) (package private) OpenElementTagOpenElementTag.replaceAttribute(AttributeDefinitions attributeDefinitions, AttributeName oldName, AttributeDefinition newAttributeDefinition, String completeNewName, String value, AttributeValueQuotes valueQuotes) (package private) StandaloneElementTagStandaloneElementTag.replaceAttribute(AttributeDefinitions attributeDefinitions, AttributeName oldName, AttributeDefinition newAttributeDefinition, String completeNewName, String value, AttributeValueQuotes valueQuotes) private IOpenElementTagStandardModelFactory.replaceAttribute(IOpenElementTag openElementTag, AttributeName oldAttributeName, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes) private IStandaloneElementTagStandardModelFactory.replaceAttribute(IStandaloneElementTag standaloneElementTag, AttributeName oldAttributeName, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes) <T extends IProcessableElementTag>
TStandardModelFactory.replaceAttribute(T tag, AttributeName oldAttributeName, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes) (package private) abstract AbstractProcessableElementTagAbstractProcessableElementTag.setAttribute(AttributeDefinitions attributeDefinitions, AttributeDefinition attributeDefinition, String completeName, String value, AttributeValueQuotes valueQuotes) (package private) AttributesAttributes.setAttribute(AttributeDefinitions attributeDefinitions, TemplateMode templateMode, AttributeDefinition attributeDefinition, String completeName, String value, AttributeValueQuotes valueQuotes) voidElementTagStructureHandler.setAttribute(String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes) voidElementTagStructureHandler.setAttribute(AttributeDefinition attributeDefinition, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes) (package private) OpenElementTagOpenElementTag.setAttribute(AttributeDefinitions attributeDefinitions, AttributeDefinition attributeDefinition, String completeName, String value, AttributeValueQuotes valueQuotes) (package private) StandaloneElementTagStandaloneElementTag.setAttribute(AttributeDefinitions attributeDefinitions, AttributeDefinition attributeDefinition, String completeName, String value, AttributeValueQuotes valueQuotes) private IOpenElementTagStandardModelFactory.setAttribute(IOpenElementTag openElementTag, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes) private IStandaloneElementTagStandardModelFactory.setAttribute(IStandaloneElementTag standaloneElementTag, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes) <T extends IProcessableElementTag>
TStandardModelFactory.setAttribute(T tag, String attributeName, String attributeValue, AttributeValueQuotes attributeValueQuotes) Constructors in org.thymeleaf.engine with parameters of type AttributeValueQuotesModifierConstructorDescription(package private)Attribute(AttributeDefinition definition, String completeName, String operator, String value, AttributeValueQuotes valueQuotes, String templateName, int line, int col) -
Uses of AttributeValueQuotes in org.thymeleaf.model
Methods in org.thymeleaf.model that return AttributeValueQuotesModifier and TypeMethodDescriptionIAttribute.getValueQuotes()Returns the type of quotes surrounding the attribute value.static AttributeValueQuotesReturns 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 AttributeValueQuotesModifier and TypeMethodDescriptionIModelFactory.createOpenElementTag(String elementName, Map<String, String> attributes, AttributeValueQuotes attributeValueQuotes, boolean synthetic) Create a new open element tag, specifying several attributes.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 AttributeValueQuotesModifier and TypeMethodDescriptionvoidIElementTagStructureHandler.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.