o

woodstox

XMLValidator

object XMLValidator

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

Type Members

  1. final case class ErrorMessage(msg: String, location: Location) extends Product with Serializable
  2. final case class Location(line: Int, column: Int, charOffset: Int) extends Product with Serializable
  3. final case class ParseError(error: ErrorMessage) extends ValidationResult with Product with Serializable
  4. final case class ValidationFailed(totalErrorCount: Int, errors: Vector[ErrorMessage]) extends ValidationResult with Product with Serializable
  5. sealed trait ValidationResult extends AnyRef
  6. final class ValidationResultBuilder extends ValidationProblemHandler

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. def createXMLValidationSchema(xsd: Reader): XMLValidationSchema

    Creates a XMLValidationSchema (which is thread-safe and reusable!) for an XSD

  7. def createXMLValidationSchema(xsd: Resource[Reader]): XMLValidationSchema

    Creates a XMLValidationSchema (which is thread-safe and reusable!) for an XSD

  8. def createXMLValidationSchema(xsd: File): XMLValidationSchema

    Creates a XMLValidationSchema (which is thread-safe and reusable!) for an XSD

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. def validate(xsd: XMLValidationSchema, validatable: Validatable, limit: Option[Int]): ValidationResultBuilder

    Plug into an existing Validatable instance.

    Plug into an existing Validatable instance. You get back a ValidationResultBuilder that you can call the result() method on once you are done reading/writing with the Validatable instance.

  20. def validate(xsd: Reader, validatable: Validatable, limit: Option[Int]): ValidationResultBuilder
  21. def validate(xsd: Resource[Reader], validatable: Validatable, limit: Option[Int]): ValidationResultBuilder
  22. def validate(xsd: File, validatable: Validatable, limit: Option[Int]): ValidationResultBuilder
  23. def validate(xsd: XMLValidationSchema, xml: Reader, limit: Option[Int]): ValidationResult

    Stand-alone validation against an xml Reader.

    Stand-alone validation against an xml Reader. This method will construct an XML Reader and read the full contents of the Reader

  24. def validate(xsd: Reader, xml: Reader, limit: Option[Int]): ValidationResult
  25. def validate(xsd: Resource[Reader], xml: Resource[Reader], limit: Option[Int]): ValidationResult
  26. def validate(xsd: Resource[Reader], xml: Resource[Reader]): ValidationResult
  27. def validate(xsd: File, xml: File, limit: Option[Int]): ValidationResult
  28. def validate(xsd: File, xml: File): ValidationResult
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. case object Success extends ValidationResult with Product with Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped