public abstract class

ByteToCharDBCS_EBCDIC

extends ByteToCharConverter
java.lang.Object
   ↳ sun.io.ByteToCharConverter
     ↳ sun.io.ByteToCharDBCS_EBCDIC
Known Direct Subclasses

Summary

Fields
protected short[] index1
protected String index2
protected int mask1
protected int mask2
protected int shift
protected String singleByteToChar
[Expand]
Inherited Fields
From class sun.io.ByteToCharConverter
Public Constructors
ByteToCharDBCS_EBCDIC()
Public Methods
int convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd)
Character conversion
int flush(char[] output, int outStart, int outEnd)
Writes any remaining output to the output buffer and resets the converter to its initial state.
void reset()
Resets the converter.
[Expand]
Inherited Methods
From class sun.io.ByteToCharConverter
From class java.lang.Object

Fields

protected short[] index1

protected String index2

protected int mask1

protected int mask2

protected int shift

protected String singleByteToChar

Public Constructors

public ByteToCharDBCS_EBCDIC ()

Public Methods

public int convert (byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd)

Character conversion

Parameters
input byte array containing text to be converted.
inOff begin conversion at this offset in input array.
inEnd stop conversion at this offset in input array (exclusive).
output character array to receive conversion result.
outOff start writing to output array at this offset.
outEnd stop writing to output array at this offset (exclusive).
Returns
  • the number of bytes written to output.

public int flush (char[] output, int outStart, int outEnd)

Writes any remaining output to the output buffer and resets the converter to its initial state.

Parameters
output char array to receive flushed output.
outStart start writing to output array at this offset.
outEnd stop writing to output array at this offset (exclusive).

public void reset ()

Resets the converter.