Package system.text
Class Encoding
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.text.Encoding
-
- All Implemented Interfaces:
IJCOBridgeReflected
- Direct Known Subclasses:
ASCIIEncoding
,UnicodeEncoding
,UTF32Encoding
,UTF7Encoding
,UTF8Encoding
public class Encoding extends NetObject
The base .NET class managing System.Text.Encoding, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Text.Encoding
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798estatic java.lang.String
assemblyShortName
Assembly name: System.Private.CoreLibstatic java.lang.String
className
Qualified class name: System.Text.Encodingstatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Encoding
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoEncoding
, a cast assert is made to check if types are compatible.NetObject
Clone()
static byte[]
Convert(Encoding srcEncoding, Encoding dstEncoding, byte[] bytes)
static byte[]
Convert(Encoding srcEncoding, Encoding dstEncoding, byte[] bytes, int index, int count)
static byte[]
Convert(Encoding dupParam0, Encoding dupParam1, JCORefOut dupParam2)
static byte[]
Convert(Encoding dupParam0, Encoding dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
static Stream
CreateTranscodingStream(Stream innerStream, Encoding innerStreamEncoding, Encoding outerStreamEncoding, boolean leaveOpen)
static Encoding
getASCII()
static Encoding
getBigEndianUnicode()
java.lang.String
getBodyName()
int
GetByteCount(char[] chars)
int
GetByteCount(char[] chars, int index, int count)
int
GetByteCount(java.lang.String s)
int
GetByteCount(java.lang.String s, int index, int count)
int
GetByteCount(JCORefOut dupParam0)
int
GetByteCount(JCORefOut dupParam0, int dupParam1, int dupParam2)
byte[]
GetBytes(char[] chars)
byte[]
GetBytes(char[] chars, int index, int count)
int
GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex)
byte[]
GetBytes(java.lang.String s)
byte[]
GetBytes(java.lang.String s, int index, int count)
int
GetBytes(java.lang.String s, int charIndex, int charCount, byte[] bytes, int byteIndex)
int
GetBytes(java.lang.String dupParam0, int dupParam1, int dupParam2, JCORefOut dupParam3, int dupParam4)
byte[]
GetBytes(JCORefOut dupParam0)
byte[]
GetBytes(JCORefOut dupParam0, int dupParam1, int dupParam2)
int
GetBytes(JCORefOut dupParam0, int dupParam1, int dupParam2, JCORefOut dupParam3, int dupParam4)
int
GetCharCount(byte[] bytes)
int
GetCharCount(byte[] bytes, int index, int count)
int
GetCharCount(JCORefOut dupParam0)
int
GetCharCount(JCORefOut dupParam0, int dupParam1, int dupParam2)
char[]
GetChars(byte[] bytes)
char[]
GetChars(byte[] bytes, int index, int count)
int
GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
char[]
GetChars(JCORefOut dupParam0)
char[]
GetChars(JCORefOut dupParam0, int dupParam1, int dupParam2)
int
GetChars(JCORefOut dupParam0, int dupParam1, int dupParam2, JCORefOut dupParam3, int dupParam4)
int
getCodePage()
Decoder
GetDecoder()
DecoderFallback
getDecoderFallback()
static Encoding
getDefault()
Encoder
GetEncoder()
EncoderFallback
getEncoderFallback()
static Encoding
GetEncoding(int codepage)
static Encoding
GetEncoding(int codepage, EncoderFallback encoderFallback, DecoderFallback decoderFallback)
static Encoding
GetEncoding(java.lang.String name)
static Encoding
GetEncoding(java.lang.String name, EncoderFallback encoderFallback, DecoderFallback decoderFallback)
java.lang.String
getEncodingName()
static EncodingInfo[]
GetEncodings()
java.lang.String
getHeaderName()
boolean
getIsBrowserDisplay()
boolean
getIsBrowserSave()
boolean
getIsMailNewsDisplay()
boolean
getIsMailNewsSave()
boolean
getIsReadOnly()
boolean
getIsSingleByte()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typestatic Encoding
getLatin1()
int
GetMaxByteCount(int charCount)
int
GetMaxCharCount(int byteCount)
byte[]
GetPreamble()
java.lang.String
GetString(byte[] bytes)
java.lang.String
GetString(byte[] bytes, int index, int count)
java.lang.String
GetString(JCORefOut dupParam0)
java.lang.String
GetString(JCORefOut dupParam0, int dupParam1, int dupParam2)
static Encoding
getUnicode()
static Encoding
getUTF32()
static Encoding
getUTF7()
static Encoding
getUTF8()
java.lang.String
getWebName()
int
getWindowsCodePage()
boolean
IsAlwaysNormalized()
boolean
IsAlwaysNormalized(NormalizationForm form)
static void
RegisterProvider(EncodingProvider provider)
void
setDecoderFallback(DecoderFallback DecoderFallback)
void
setEncoderFallback(EncoderFallback EncoderFallback)
void
setIsReadOnly(boolean IsReadOnly)
void
setJCOInstance(JCObject instance)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Private.CoreLib- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Text.Encoding- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Encoding cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoEncoding
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Encoding
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
IsAlwaysNormalized
public boolean IsAlwaysNormalized() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsAlwaysNormalized
public boolean IsAlwaysNormalized(NormalizationForm form) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Convert
public static byte[] Convert(Encoding srcEncoding, Encoding dstEncoding, byte[] bytes, int index, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
Convert
public static byte[] Convert(Encoding dupParam0, Encoding dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
Convert
public static byte[] Convert(Encoding srcEncoding, Encoding dstEncoding, byte[] bytes) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
Convert
public static byte[] Convert(Encoding dupParam0, Encoding dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetBytes
public byte[] GetBytes(char[] chars, int index, int count) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetBytes
public byte[] GetBytes(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetBytes
public byte[] GetBytes(char[] chars) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetBytes
public byte[] GetBytes(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetBytes
public byte[] GetBytes(java.lang.String s, int index, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException
-
GetBytes
public byte[] GetBytes(java.lang.String s) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetPreamble
public byte[] GetPreamble() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetChars
public char[] GetChars(byte[] bytes, int index, int count) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetChars
public char[] GetChars(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetChars
public char[] GetChars(byte[] bytes) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetChars
public char[] GetChars(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetByteCount
public int GetByteCount(char[] chars, int index, int count) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetByteCount
public int GetByteCount(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetByteCount
public int GetByteCount(char[] chars) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetByteCount
public int GetByteCount(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetByteCount
public int GetByteCount(java.lang.String s, int index, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException
-
GetByteCount
public int GetByteCount(java.lang.String s) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ArgumentNullException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
GetBytes
public int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetBytes
public int GetBytes(JCORefOut dupParam0, int dupParam1, int dupParam2, JCORefOut dupParam3, int dupParam4) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetBytes
public int GetBytes(java.lang.String s, int charIndex, int charCount, byte[] bytes, int byteIndex) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ArgumentNullException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
GetBytes
public int GetBytes(java.lang.String dupParam0, int dupParam1, int dupParam2, JCORefOut dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ArgumentNullException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
GetCharCount
public int GetCharCount(byte[] bytes, int index, int count) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetCharCount
public int GetCharCount(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetCharCount
public int GetCharCount(byte[] bytes) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetCharCount
public int GetCharCount(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetChars
public int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetChars
public int GetChars(JCORefOut dupParam0, int dupParam1, int dupParam2, JCORefOut dupParam3, int dupParam4) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetMaxByteCount
public int GetMaxByteCount(int charCount) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetMaxCharCount
public int GetMaxCharCount(int byteCount) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
CreateTranscodingStream
public static Stream CreateTranscodingStream(Stream innerStream, Encoding innerStreamEncoding, Encoding outerStreamEncoding, boolean leaveOpen) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
Clone
public NetObject Clone() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
GetString
public java.lang.String GetString(byte[] bytes, int index, int count) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetString
public java.lang.String GetString(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetString
public java.lang.String GetString(byte[] bytes) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetString
public java.lang.String GetString(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetDecoder
public Decoder GetDecoder() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetEncoder
public Encoder GetEncoder() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetEncoding
public static Encoding GetEncoding(int codepage, EncoderFallback encoderFallback, DecoderFallback decoderFallback) throws java.lang.Throwable, PlatformNotSupportedException, InvalidOperationException, ArgumentNullException, ArgumentException, IndexOutOfRangeException, ArgumentOutOfRangeException, NotSupportedException, FormatException
-
GetEncoding
public static Encoding GetEncoding(int codepage) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, FormatException
-
GetEncoding
public static Encoding GetEncoding(java.lang.String name, EncoderFallback encoderFallback, DecoderFallback decoderFallback) throws java.lang.Throwable, PlatformNotSupportedException, InvalidOperationException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, NotSupportedException, IndexOutOfRangeException, CultureNotFoundException
-
GetEncoding
public static Encoding GetEncoding(java.lang.String name) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, IndexOutOfRangeException, CultureNotFoundException
-
GetEncodings
public static EncodingInfo[] GetEncodings() throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, InvalidOperationException, RankException, ArrayTypeMismatchException, InvalidCastException
-
RegisterProvider
public static void RegisterProvider(EncodingProvider provider) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException
-
getIsBrowserDisplay
public boolean getIsBrowserDisplay() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, ArgumentOutOfRangeException
-
getIsBrowserSave
public boolean getIsBrowserSave() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, ArgumentOutOfRangeException
-
getIsMailNewsDisplay
public boolean getIsMailNewsDisplay() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, ArgumentOutOfRangeException
-
getIsMailNewsSave
public boolean getIsMailNewsSave() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, ArgumentOutOfRangeException
-
getIsReadOnly
public boolean getIsReadOnly() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setIsReadOnly
public void setIsReadOnly(boolean IsReadOnly) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsSingleByte
public boolean getIsSingleByte() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getCodePage
public int getCodePage() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getWindowsCodePage
public int getWindowsCodePage() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, ArgumentOutOfRangeException
-
getBodyName
public java.lang.String getBodyName() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, ArgumentOutOfRangeException
-
getEncodingName
public java.lang.String getEncodingName() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, ArgumentOutOfRangeException
-
getHeaderName
public java.lang.String getHeaderName() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, ArgumentOutOfRangeException
-
getWebName
public java.lang.String getWebName() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, ArgumentOutOfRangeException
-
getDecoderFallback
public DecoderFallback getDecoderFallback() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDecoderFallback
public void setDecoderFallback(DecoderFallback DecoderFallback) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
-
getEncoderFallback
public EncoderFallback getEncoderFallback() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setEncoderFallback
public void setEncoderFallback(EncoderFallback EncoderFallback) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
-
getASCII
public static Encoding getASCII() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getBigEndianUnicode
public static Encoding getBigEndianUnicode() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDefault
public static Encoding getDefault() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getLatin1
public static Encoding getLatin1() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getUnicode
public static Encoding getUnicode() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getUTF32
public static Encoding getUTF32() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getUTF7
public static Encoding getUTF7() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getUTF8
public static Encoding getUTF8() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-