- All Implemented Interfaces:
Serializable
,Comparable<SVG.Usage>
,Constable
- Enclosing interface:
SVG
@ClassVersion(sourceVersion="$Id: SVG.java 1139 2024-06-16 19:50:41Z tquadrat $")
@API(status=STABLE,
since="0.0.5")
public static enum SVG.Usage
extends Enum<SVG.Usage>
The different usages for an
<svg>
element.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: SVG.java 1139 2024-06-16 19:50:41Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.svg.SVG.Usage"
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe<svg>
element will be embedded into HTML (but not HTML 5 - seeEMBED_HTML5
).The<svg>
element will be embedded into HTML 5; as SVG is somehow part of the definition of HTML 5, no further namespace declarations are required.The<svg>
element will be embedded into another<svg>
element.The<svg>
element is used as the root for a stand-alone document. -
Constructor Summary
Constructors -
Method Summary
-
Enum Constant Details
-
STANDALONE_DOCUMENT
The<svg>
element is used as the root for a stand-alone document. -
EMBED_HTML
The<svg>
element will be embedded into HTML (but not HTML 5 - seeEMBED_HTML5
). -
EMBED_HTML5
The<svg>
element will be embedded into HTML 5; as SVG is somehow part of the definition of HTML 5, no further namespace declarations are required. -
EMBED_SVG
The<svg>
element will be embedded into another<svg>
element.
-
-
Constructor Details
-
Usage
private Usage()
-
-
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
-