Class

org.apache.daffodil.processors.charset

BitsCharsetEncoder

Related Doc: package charset

Permalink

abstract class BitsCharsetEncoder extends IsResetMixin

Linear Supertypes
IsResetMixin, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BitsCharsetEncoder
  2. IsResetMixin
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BitsCharsetEncoder()

    Permalink

Abstract Value Members

  1. abstract def averageBitsPerChar(): Float

    Permalink
  2. abstract def averageBytesPerChar(): Float

    Permalink
  3. abstract def bitsCharset: BitsCharset

    Permalink
  4. abstract def encode(in: CharBuffer, out: ByteBuffer, endOfInput: Boolean): CoderResult

    Permalink
  5. abstract def encodeLoop(in: CharBuffer, out: ByteBuffer): CoderResult

    Permalink
    Attributes
    protected
  6. abstract def flush(out: ByteBuffer): CoderResult

    Permalink
  7. abstract def isMandatoryAlignmentNeeded(): Boolean

    Permalink

    Used to determine if the data input stream must be aligned (if not already) for this encoding.

    Used to determine if the data input stream must be aligned (if not already) for this encoding. Based on whether the coder has been reset. If the coder has not been reset, it is assumed we are in the middle of encoding many characters, and so no mandatory alignment is needed. However, if the coder was reset, then it is assumed that we may be unaligned at the start of encoding characters, and so we must check if we are mandatory aligned.

  8. abstract def malformedInputAction(): CodingErrorAction

    Permalink
  9. abstract def maxBitsPerChar(): Float

    Permalink
  10. abstract def maxBytesPerChar(): Float

    Permalink
  11. abstract def onMalformedInput(action: CodingErrorAction): BitsCharsetEncoder

    Permalink
  12. abstract def onUnmappableCharacter(action: CodingErrorAction): BitsCharsetEncoder

    Permalink
  13. abstract def replaceWith(newReplacement: Array[Byte]): BitsCharsetEncoder

    Permalink
  14. abstract def replacement(): Array[Byte]

    Permalink
  15. abstract def reset(): BitsCharsetEncoder

    Permalink
  16. abstract def unmappableCharacterAction(): CodingErrorAction

    Permalink

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 def asInstanceOf[T0]: T0

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  12. final def isReset: Boolean

    Permalink

    True if the decoder has not decoded anything since the last reset call.

    True if the decoder has not decoded anything since the last reset call. False if decodeLoop has been called.

    Use to control things that we only want to check once per reset of the decoder.

    Definition Classes
    IsResetMixin
  13. final def isReset_=(v: Boolean): Unit

    Permalink

    Allow assignment to isReset only in derived classes

    Allow assignment to isReset only in derived classes

    Attributes
    protected
    Definition Classes
    IsResetMixin
  14. final def ne(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

Inherited from IsResetMixin

Inherited from AnyRef

Inherited from Any

Ungrouped