public enum AttributeValueQuotes extends Enum<AttributeValueQuotes>
Enum class modelling the different types of quotes that can be found surrounding attribute values in tags.
| Modifier and Type | Method and Description |
|---|---|
static AttributeValueQuotes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeValueQuotes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeValueQuotes DOUBLE
public static final AttributeValueQuotes SINGLE
public static final AttributeValueQuotes NONE
public static AttributeValueQuotes[] values()
for (AttributeValueQuotes c : AttributeValueQuotes.values()) System.out.println(c);
public static AttributeValueQuotes valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017 The THYMELEAF team. All rights reserved.