Package Torello.HTML
Enum SD
- java.lang.Object
-
- java.lang.Enum<SD>
-
- Torello.HTML.SD
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SD>
public enum SD extends java.lang.Enum<SD>
Single-Quotes & Double-Quotes - An enumeration of the two types of quotes used inside HTML Tags for assigning values to tag-attributes
.SD: Single-Quote or Double-Quote
While it is generally accepted that HTML-Element attributes / inner-tags are not requires to contain quotes, usually the single, but most often the double-quote, are used. This HTML package can parse no-quote situations, but when generating inner-tag values, quotes must be specified.
Hi-Lited Source-Code:- View Here: Torello/HTML/SD.java
- Open New Browser-Tab: Torello/HTML/SD.java
File Size: 752 Bytes Line Count: 24 '\n' Characters Found
-
-
Enum Constant Summary
Enum Constants Enum Constant DoubleQuotes
SingleQuotes
-
Field Summary
Fields Modifier and Type Field char
quote
-
Method Summary
Convert String to Enum Constant Modifier and Type Method static SD
valueOf(String name)
List all Enum Constants Modifier and Type Method static SD[]
values()
-
-
-
Enum Constant Detail
-
SingleQuotes
public static final SD SingleQuotes
An enumerated constant that represents a single-quotation mark:'
-
DoubleQuotes
public static final SD DoubleQuotes
An enumerated constant that represents a double-quotation mark:"
-
-
Field Detail
-
quote
public final char quote
This character contains, or represents, the quote being used by'this'
enumerated-constant, as a java-character.
-
-
Method Detail
-
values
public static SD[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SD c : SD.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SD valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-