gnu.gcj.convert
Class Output_iconv
Convert Unicode to bytes in some iconv-supported encoding.
void | done() - Indicate that the converter is resuable.
|
void | finalize()
|
String | getName()
|
int | write(char[] inbuffer, int inpos, int count) - Convert chars to bytes.
|
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
done
public void done()
Indicate that the converter is resuable.
This class keeps track of converters on a per-encoding basis.
When done with an encoder you may call this method to indicate
that it can be reused later.
- done in interface UnicodeToBytes
write
public int write(char[] inbuffer,
int inpos,
int count)
Convert chars to bytes.
Converted bytes are written to buf, starting at count.
- write in interface UnicodeToBytes
inbuffer
- source of characters to convertinpos
- index of initial character in inbuffer to convert
- number of chars converted
Also, this.count is increment by the number of bytes converted.
Copyright (C) 2000, 2001 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details.