Uses of Class
oracle.sql.CharacterSet
-
Packages that use CharacterSet Package Description oracle.sql A package of classes that represent java SQL types and Oracle specific SQL types. -
- <section role="region">
Uses of CharacterSet in oracle.sql
Subclasses of CharacterSet in oracle.sql Modifier and Type Class Description classCharacterSetWithConverterThis is an abstract base class that all character sets that use CharacterConverter are based on.Fields in oracle.sql declared as CharacterSet Modifier and Type Field Description static CharacterSetCHAR. DEFAULT_CHARSETMethods in oracle.sql that return CharacterSet Modifier and Type Method Description static CharacterSetCharacterSet. make(int oracleId)Factory.Methods in oracle.sql with parameters of type CharacterSet Modifier and Type Method Description abstract byte[]CharacterSet. convert(CharacterSet from, byte[] source, int offset, int count)Converts bytes in some representation to oracleId representation.byte[]CharacterSetWithConverter. convert(CharacterSet from, byte[] source, int offset, int count)byte[]CharacterSet. convertUnshared(CharacterSet from, byte[] source, int offset, int count)Converts bytes in some representation to oracleId representation.abstract booleanCharacterSet. isConvertibleFrom(CharacterSet source)Are conversions supported.booleanCharacterSetWithConverter. isConvertibleFrom(CharacterSet source)abstract booleanCharacterSet. isLossyFrom(CharacterSet from)A conversion looses information if the mapping is not invertible.booleanCharacterSetWithConverter. isLossyFrom(CharacterSet from)
</section>Constructors in oracle.sql with parameters of type CharacterSet Constructor Description CHAR(Object obj, CharacterSet charSet)Construct a CHAR from an Object.CHAR(String str, CharacterSet charSet)Constructor for CHAR.CHAR(String str, CharacterSet charSet, int len)Constructor for CHAR.CharacterBuffer(CharacterSet charSet)Constructor.CharacterWalker(CharacterSet charSet, byte[] bytes, int offset, int count)Constructor.
- <section role="region">