|
Scala
1.4.0.0 |
|||
| Method Summary | |
def checkPubID(s: String): Boolean
|
|
def checkSysID(s: String): Boolean
|
|
def isName(s: String): Boolean
Name ::= ( Letter | '_' ) (NameChar)* see [5] of XML 1.0 specification |
|
def isNameChar(ch: Char): Boolean
NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender see [4] and Appendix B of XML 1.0 specification |
|
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 ':'. |
|
def isPubIDChar(ch: Char): Boolean
|
|
final
|
def isSpace(ch: Char): Boolean
(#x20 | #x9 | #xD | #xA) |
final
|
def isSpace(cs: Seq[Char]): Boolean
(#x20 | #x9 | #xD | #xA)+ |
def isValidIANAEncoding(ianaEncoding: Seq[Char]): Boolean
Returns true if the encoding name is a valid IANA encoding. |
|
| Methods inherited from java/lang/Object-class |
| clone, eq, equals, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, toString, wait, wait, wait |
| Methods inherited from scala/Any-class |
| !=, ==, asInstanceOf, isInstanceOf, match |
| Methods inherited from scala/ScalaObject-class |
| getScalaType |
| Method Detail |
final def isSpace(ch: Char): Boolean
final def isSpace(cs: Seq[Char]): Boolean
def isNameChar(ch: Char): Boolean
def isNameStart(ch: Char): Boolean
def isName(s: String): Boolean
def isPubIDChar(ch: Char): Boolean
def isValidIANAEncoding(ianaEncoding: Seq[Char]): Boolean
ianaEncoding -
The IANA encoding name.
def checkSysID(s: String): Boolean
def checkPubID(s: String): Boolean
|
Scala
1.4.0.0 |
|||