Trait

com.codecommit.antixml

LowPrioritiyImplicits

Related Doc: package antixml

Permalink

trait LowPrioritiyImplicits extends AnyRef

Allow these to be mixed in where needed, instead of having to import the package object.

Source
LowPrioritiyImplicits.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LowPrioritiyImplicits
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. val *: Selector[Node]

    Permalink

    Wildcard selector which passes all nodes unmodified.

    Wildcard selector which passes all nodes unmodified. This is analogous to the "_" selector syntax in scala.xml. For example: ns \ * \ "name"

  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. implicit def namespaceBindingToNsRepr(nb: NamespaceEntry): NSRepr

    Permalink
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. implicit def nodeSeqToConverter[A](a: A): Converter[A]

    Permalink

    Pimps the convert method onto any object for which there exists a conversion into Anti-XML.

    Pimps the convert method onto any object for which there exists a conversion into Anti-XML. Note that this conversion is an implicit value, statically enforced and thus shouldn't be the source of any collision issues. It should actually be possible to have another implicit conversion in scope which pimps the convert method without seeing conflicts.

    See also

    com.codecommit.antixml.XMLConvertable

  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. implicit def stringToNsRepr(s: String): NSRepr

    Permalink
  19. implicit def stringTupleToQNameTuple(pair: (String, String)): (QName, String)

    Permalink
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. val text: Selector[String]

    Permalink

    Non-node selector which finds exclusively com.codecommit.antixml.Text nodes and pulls out their String content.

    Non-node selector which finds exclusively com.codecommit.antixml.Text nodes and pulls out their String content. Unlike most selectors, the result of using this selector is not a com.codecommit.antixml.Group, but a generic scala.collection.Traversable[String]. This selector can be used to emulate the NodeSeq#text method provided by scala.xml. For example: ns \\ text mkString (this is analogous, but not quite equivalent to calling ns.text in scala.xml).

  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped