Class

org.apache.daffodil.infoset

InfosetInputter

Related Doc: package infoset

Permalink

abstract class InfosetInputter extends InfosetInputterCursor with CursorImplMixin[InfosetAccessor]

Linear Supertypes
CursorImplMixin[InfosetAccessor], InfosetInputterCursor, Cursor[InfosetAccessor], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InfosetInputter
  2. CursorImplMixin
  3. InfosetInputterCursor
  4. Cursor
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InfosetInputter()

    Permalink

Abstract Value Members

  1. abstract def fini: Unit

    Permalink
    Definition Classes
    Cursor
  2. abstract def getEventType(): InfosetInputterEventType

    Permalink

    Return the current infoset inputter event type

  3. abstract def getLocalName(): String

    Permalink

    Get the local name of the current event.

    Get the local name of the current event. This will only be called when the current event type is StartElement.

  4. abstract def getNamespaceURI(): String

    Permalink

    Get the namespace of the current event.

    Get the namespace of the current event. This will only be called when the current event type is StartElement. If the InfosetInputter does not support namespaces, this shoud return null. This may return null to represent no namespaces.

  5. abstract def getSimpleText(primType: Kind): String

    Permalink

    Get the content of a simple type.

    Get the content of a simple type. This will only be called when the current event type is StartElement and the element is a simple type. If the event contains complex data, it is an error and should throw NonTextFoundInSimpleContentException. If the element does not have any simple content, this should return either null or the empty string.

  6. abstract def hasNext(): Boolean

    Permalink

    Return true if there are remaining events.

    Return true if there are remaining events. False otherwise.

  7. abstract def isNilled(): MaybeBoolean

    Permalink

    Determine if the current event is nilled.

    Determine if the current event is nilled. This will only be called when the current event type is StartElement. Return MaybeBoolean.Nope if no nil property is set, which implies the element is not nilled. Return MaybeBoolean(false) if the nil property is set, but it is set to false. Return MaybeBoolean(true) if the nil property is set to true.

  8. abstract def next(): Unit

    Permalink

    Move the internal state to the next event.

  9. abstract val supportsNamespaces: Boolean

    Permalink

    Set if this infoset inputter supports namespaces.

    Set if this infoset inputter supports namespaces. The return value of getNamespace will be ignore if this is false. Note that if this is false, some infoset representations may fail to unparse if the schema depends on namespace information to differentiate between elements.

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final var accessor: InfosetAccessor

    Permalink
    Attributes
    protected
    Definition Classes
    CursorImplMixin
  5. final def advance: Boolean

    Permalink
    Definition Classes
    CursorImplMixin
  6. lazy val advanceAccessor: InfosetAccessor

    Permalink

    Override these further only if you want to say, delegate from one cursor implemtation to another one.

    Override these further only if you want to say, delegate from one cursor implemtation to another one.

    Definition Classes
    InfosetInputterCursor → Cursor
  7. final def advanceMaybe: Maybe[InfosetAccessor]

    Permalink
    Definition Classes
    Cursor
  8. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def fill(): Boolean

    Permalink

    Return true if the accessor was filled with another infoset event, or one was taken from the queued events.

    Return true if the accessor was filled with another infoset event, or one was taken from the queued events.

    Attributes
    protected
    Definition Classes
    InfosetInputter → CursorImplMixin
  13. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def initialize(rootElementInfo: ElementRuntimeData, tunableArg: DaffodilTunables): Unit

    Permalink
    Definition Classes
    InfosetInputterInfosetInputterCursor
  17. final def inspect: Boolean

    Permalink
    Definition Classes
    CursorImplMixin
  18. lazy val inspectAccessor: InfosetAccessor

    Permalink
    Definition Classes
    InfosetInputterCursor → Cursor
  19. final def inspectMaybe: Maybe[InfosetAccessor]

    Permalink
    Definition Classes
    Cursor
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    InfosetInputter → AnyRef → Any
  26. var tunable: DaffodilTunables

    Permalink
  27. final def wait(): Unit

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

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

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

Inherited from CursorImplMixin[InfosetAccessor]

Inherited from InfosetInputterCursor

Inherited from Cursor[InfosetAccessor]

Inherited from AnyRef

Inherited from Any

Ungrouped