Module org.tquadrat.foundation.xml
Enum Class XMLElement.Flags
- All Implemented Interfaces:
Serializable
,Comparable<XMLElement.Flags>
,Constable
- Enclosing interface:
XMLElement
@ClassVersion(sourceVersion="$Id: XMLElement.java 1071 2023-09-30 01:49:32Z tquadrat $")
@API(status=STABLE,
since="0.1.0")
public static enum XMLElement.Flags
extends Enum<XMLElement.Flags>
The flags that are used to configure a new instance of
XMLElement
(respectively an instance of an implementation of
this interface.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: XMLElement.java 1071 2023-09-30 01:49:32Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.xml.builder.XMLElement.Flags"
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe element allows children.The element allows text.Only valid attributes can be added to the element (if not set, any attribut can be added).Only valid children can be added; this implies thatALLOWS_CHILDREN
is set; if the further is set, but this one not, any child can be added. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic XMLElement.Flags
Returns the enum constant of this class with the specified name.static XMLElement.Flags[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALLOWS_CHILDREN
The element allows children. -
ALLOWS_TEXT
The element allows text. -
VALIDATES_ATTRIBUTES
Only valid attributes can be added to the element (if not set, any attribut can be added). -
VALIDATES_CHILDREN
Only valid children can be added; this implies thatALLOWS_CHILDREN
is set; if the further is set, but this one not, any child can be added.
-
-
Constructor Details
-
Flags
private Flags()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-