trait TokenTests extends AnyRef
Helper functions for parsing XML fragments
Linear Supertypes
Known Subclasses
îˇ
î
Ordering
- Alphabetic
- By Inheritance
Inherited
- TokenTests
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
î
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef â Any
-
î
final
def
##(): Int
- Definition Classes
- AnyRef â Any
-
î
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef â Any
-
î
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- î def checkPubID(s: String): Boolean
- î def checkSysID(s: String): Boolean
-
î
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
î
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
î
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef â Any
-
î
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
î
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef â Any
- Annotations
- @native()
-
î
def
hashCode(): Int
- Definition Classes
- AnyRef â Any
- Annotations
- @native()
-
î
def
isAlpha(c: Char): Boolean
These are 99% sure to be redundant but refactoring on the safe side.
- î def isAlphaDigit(c: Char): Boolean
-
î
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
î
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
:
. See [3] and Appendix B of XML 1.0 specification - î def isPubIDChar(ch: Char): Boolean
-
î
final
def
isSpace(cs: Seq[Char]): Boolean
(#x20 | #x9 | #xD | #xA)+
-
î
final
def
isSpace(ch: Char): Boolean
(#x20 | #x9 | #xD | #xA)
-
î
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.
-
î
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
î
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
î
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
î
final
def
synchronized[T0](arg0: â T0): T0
- Definition Classes
- AnyRef
-
î
def
toString(): String
- Definition Classes
- AnyRef â Any
-
î
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
î
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
î
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )