1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 | package Torello.HTML;
/**
* Single-Quotes & Double-Quotes - An enumeration of the two types of quotes used inside HTML
* Tags for assigning <B STYLE='color:red;'>values</B> to tag-<CODE>attributes</CODE>.
*
* <BR /><BR /><EMBED CLASS='external-html' DATA-FILE-ID=SD>
*/
public enum SD
{
/** An enumerated constant that represents a single-quotation mark: {@code '} */
SingleQuotes('\''),
/** An enumerated constant that represents a double-quotation mark: {@code "} */
DoubleQuotes('"');
/**
* This character contains, or represents, the quote being used by {@code 'this'}
* enumerated-constant, as a java-character.
*/
public final char quote;
private SD(char quote) { this.quote = quote; }
}
|