sealed abstract class ExternalID extends TokenTests
an ExternalIDs - either PublicID or SystemID
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- ExternalID
- TokenTests
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Concrete Value Members
- def buildString(sb: StringBuilder): StringBuilder
-
def
checkPubID(s: String): Boolean
- Definition Classes
- TokenTests
-
def
checkSysID(s: String): Boolean
- Definition Classes
- TokenTests
-
def
isAlpha(c: Char): Boolean
These are 99% sure to be redundant but refactoring on the safe side.
These are 99% sure to be redundant but refactoring on the safe side.
- Definition Classes
- TokenTests
-
def
isAlphaDigit(c: Char): Boolean
- Definition Classes
- TokenTests
-
def
isName(s: String): Boolean
Name ::= ( Letter | '_' ) (NameChar)*
See [5] of XML 1.0 specification.
- Definition Classes
- TokenTests
-
def
isNameChar(ch: Char): Boolean
NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender
See [4] and Appendix B of XML 1.0 specification.
- Definition Classes
- TokenTests
-
def
isNameStart(ch: Char): Boolean
NameStart ::= ( Letter | '_' )
where Letter means in one of the Unicode general categories
{ Ll, Lu, Lo, Lt, Nl }
.We do not allow a name to start with
:
. See [3] and Appendix B of XML 1.0 specification- Definition Classes
- TokenTests
-
def
isPubIDChar(ch: Char): Boolean
- Definition Classes
- TokenTests
-
final
def
isSpace(cs: Seq[Char]): Boolean
(#x20 | #x9 | #xD | #xA)+
- Definition Classes
- TokenTests
-
final
def
isSpace(ch: Char): Boolean
(#x20 | #x9 | #xD | #xA)
- Definition Classes
- TokenTests
-
def
isValidIANAEncoding(ianaEncoding: Seq[Char]): Boolean
Returns
true
if the encoding name is a valid IANA encoding.Returns
true
if the encoding name is a valid IANA encoding. This method does not verify that there is a decoder available for this encoding, only that the characters are valid for an IANA encoding name.- ianaEncoding
The IANA encoding name.
- Definition Classes
- TokenTests
- def quoted(s: String): String
-
def
toString(): String
- Definition Classes
- ExternalID → AnyRef → Any