o

woodstox

XMLValidator

object XMLValidator

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. All

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( ... ) @native()
  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: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. 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.

  21. def validate(xsd: Reader, validatable: Validatable, limit: Option[Int]): ValidationResultBuilder
  22. def validate(xsd: Resource[Reader], validatable: Validatable, limit: Option[Int]): ValidationResultBuilder
  23. def validate(xsd: File, validatable: Validatable, limit: Option[Int]): ValidationResultBuilder
  24. 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

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

Inherited from AnyRef

Inherited from Any

Ungrouped