Skip navigation links
ICU4J 75
C D E F G I M R S T 

C

call(CharsetDecoderICU, Object, ByteBuffer, CharBuffer, IntBuffer, char[], int, CoderResult) - Method in interface com.ibm.icu.charset.CharsetCallback.Decoder
This function is called when the bytes in the source cannot be handled, and this function is meant to handle or fix the error if possible.
call(CharsetEncoderICU, Object, CharBuffer, ByteBuffer, IntBuffer, char[], int, int, CoderResult) - Method in interface com.ibm.icu.charset.CharsetCallback.Encoder
This function is called when the Unicode characters in the source cannot be handled, and this function is meant to handle or fix the error if possible.
CharsetCallback - Class in com.ibm.icu.charset
Callback API for CharsetICU API CharsetCallback class defines some error behaviour functions called by CharsetDecoderICU and CharsetEncoderICU.
CharsetCallback.Decoder - Interface in com.ibm.icu.charset
Decoder Callback interface
CharsetCallback.Encoder - Interface in com.ibm.icu.charset
Encoder Callback interface
CharsetDecoderICU - Class in com.ibm.icu.charset
An abstract class that provides framework methods of decoding operations for concrete subclasses.
CharsetEncoderICU - Class in com.ibm.icu.charset
An abstract class that provides framework methods of decoding operations for concrete subclasses.
charsetForName(String) - Method in class com.ibm.icu.charset.CharsetProviderICU
Constructs a Charset for the given charset name.
charsetForName(String, String) - Method in class com.ibm.icu.charset.CharsetProviderICU
Constructs a charset for the given ICU conversion table from the specified class path.
charsetForName(String, String, ClassLoader) - Method in class com.ibm.icu.charset.CharsetProviderICU
Constructs a charset for the given ICU conversion table from the specified class path.
CharsetICU - Class in com.ibm.icu.charset
A subclass of java.nio.Charset for providing implementation of ICU's charset converters.
CharsetICU(String, String, String[]) - Constructor for class com.ibm.icu.charset.CharsetICU
 
CharsetProviderICU - Class in com.ibm.icu.charset
A concrete subclass of CharsetProvider for loading and providing charset converters in ICU.
CharsetProviderICU() - Constructor for class com.ibm.icu.charset.CharsetProviderICU
Default constructor
charsets() - Method in class com.ibm.icu.charset.CharsetProviderICU
Returns an iterator for the available ICU Charsets.
CharsetSelector - Class in com.ibm.icu.charset
Charset Selector A charset selector is built with a list of charset names and given an input CharSequence returns the list of names the corresponding charsets which can convert the CharSequence.
CharsetSelector(List<String>, UnicodeSet, int) - Constructor for class com.ibm.icu.charset.CharsetSelector
Construct a CharsetSelector from a list of charset names.
com.ibm.icu.charset - package com.ibm.icu.charset
 
contains(Charset) - Method in class com.ibm.icu.charset.CharsetICU
Ascertains if a charset is a sub set of this charset Implements the abstract method of super class.

D

decodeLoop(ByteBuffer, CharBuffer) - Method in class com.ibm.icu.charset.CharsetDecoderICU
Decodes one or more bytes.

E

encodeLoop(CharBuffer, ByteBuffer) - Method in class com.ibm.icu.charset.CharsetEncoderICU
Encodes one or more chars.
EXT_MAX_BYTES - Static variable in class com.ibm.icu.charset.CharsetDecoderICU
Deprecated.
This API is ICU internal only.

F

forNameICU(String) - Static method in class com.ibm.icu.charset.CharsetICU
Returns a charset object for the named charset.
FROM_U_CALLBACK_ESCAPE - Static variable in class com.ibm.icu.charset.CharsetCallback
Write escape callback
FROM_U_CALLBACK_SKIP - Static variable in class com.ibm.icu.charset.CharsetCallback
Skip callback
FROM_U_CALLBACK_STOP - Static variable in class com.ibm.icu.charset.CharsetCallback
Stop callback
FROM_U_CALLBACK_SUBSTITUTE - Static variable in class com.ibm.icu.charset.CharsetCallback
Write substitute callback

G

getAllNames() - Static method in class com.ibm.icu.charset.CharsetProviderICU
Deprecated.
This API is ICU internal only.
getAvailableNames() - Static method in class com.ibm.icu.charset.CharsetProviderICU
Deprecated.
This API is ICU internal only.
getICUCanonicalName(String) - Static method in class com.ibm.icu.charset.CharsetProviderICU
Deprecated.
This API is ICU internal only.
getJavaCanonicalName(String) - Static method in class com.ibm.icu.charset.CharsetProviderICU
Deprecated.
This API is ICU internal only.
getMaxBytesForString(int, int) - Static method in class com.ibm.icu.charset.CharsetEncoderICU
Calculates the size of a buffer for conversion from Unicode to a charset.
getUnicodeSet(UnicodeSet, int) - Method in class com.ibm.icu.charset.CharsetICU
Returns the set of Unicode code points that can be converted by an ICU Converter.

I

implFlush(CharBuffer) - Method in class com.ibm.icu.charset.CharsetDecoderICU
Flushes any characters saved in the converter's internal buffer and resets the converter.
implFlush(ByteBuffer) - Method in class com.ibm.icu.charset.CharsetEncoderICU
Flushes any characters saved in the converter's internal buffer and resets the converter.
implOnMalformedInput(CodingErrorAction) - Method in class com.ibm.icu.charset.CharsetDecoderICU
Sets the action to be taken if an illegal sequence is encountered
implOnMalformedInput(CodingErrorAction) - Method in class com.ibm.icu.charset.CharsetEncoderICU
Sets the action to be taken if an illegal sequence is encountered
implOnUnmappableCharacter(CodingErrorAction) - Method in class com.ibm.icu.charset.CharsetDecoderICU
Sets the action to be taken if an illegal sequence is encountered
implOnUnmappableCharacter(CodingErrorAction) - Method in class com.ibm.icu.charset.CharsetEncoderICU
Sets the action to be taken if an illegal sequence is encountered
implReset() - Method in class com.ibm.icu.charset.CharsetDecoderICU
Resets the to Unicode mode of converter
implReset() - Method in class com.ibm.icu.charset.CharsetEncoderICU
Resets the from Unicode mode of converter
isFallbackUsed() - Method in class com.ibm.icu.charset.CharsetEncoderICU
Is this Encoder allowed to use fallbacks?
isFixedWidth() - Method in class com.ibm.icu.charset.CharsetICU
Returns whether or not the charset of the converter has a fixed number of bytes per charset character.
isLegalReplacement(byte[]) - Method in class com.ibm.icu.charset.CharsetEncoderICU
Overrides super class method

M

maxBytesPerChar() - Method in class com.ibm.icu.charset.CharsetDecoderICU
Returns the maxBytesPerChar value for the Charset that created this decoder.
maxCharsPerByte() - Method in class com.ibm.icu.charset.CharsetEncoderICU
Returns the maxCharsPerByte value for the Charset that created this encoder.

R

ROUNDTRIP_AND_FALLBACK_SET - Static variable in class com.ibm.icu.charset.CharsetICU
Deprecated.
This API is ICU internal only.
ROUNDTRIP_SET - Static variable in class com.ibm.icu.charset.CharsetICU
Parameter that select the set of roundtrippable Unicode code points.

S

selectForString(CharSequence) - Method in class com.ibm.icu.charset.CharsetSelector
Select charsets that can map all characters in a CharSequence, ignoring the excluded code points.
setFallbackUsed(boolean) - Method in class com.ibm.icu.charset.CharsetEncoderICU
Sets whether this Encoder can use fallbacks?
setFromUCallback(CoderResult, CharsetCallback.Encoder, Object) - Method in class com.ibm.icu.charset.CharsetEncoderICU
Sets the callback encoder method and context to be used if an illegal sequence is encountered.
setFromUContext(Object) - Method in class com.ibm.icu.charset.CharsetEncoderICU
Sets fromUContext used in callbacks.
setToUCallback(CoderResult, CharsetCallback.Decoder, Object) - Method in class com.ibm.icu.charset.CharsetDecoderICU
Sets the callback encoder method and context to be used if an illegal sequence is encountered.

T

TO_U_CALLBACK_ESCAPE - Static variable in class com.ibm.icu.charset.CharsetCallback
Write escape callback
TO_U_CALLBACK_SKIP - Static variable in class com.ibm.icu.charset.CharsetCallback
Skip callback
TO_U_CALLBACK_STOP - Static variable in class com.ibm.icu.charset.CharsetCallback
Stop callback
TO_U_CALLBACK_SUBSTITUTE - Static variable in class com.ibm.icu.charset.CharsetCallback
Write substitute callback
C D E F G I M R S T 
Skip navigation links
ICU4J 75

Copyright © 2016 Unicode, Inc. and others.