Package system.text
Class StringBuilder
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.text.StringBuilder
-
- All Implemented Interfaces:
IJCOBridgeReflected
,ISerializable
public class StringBuilder extends NetObject implements ISerializable
The base .NET class managing System.Text.StringBuilder, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e.See: https://docs.microsoft.com/en-us/dotnet/api/System.Text.StringBuilder
-
-
Field Summary
Fields Modifier and Type Field Description static String
assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798estatic String
assemblyShortName
Assembly name: System.Private.CoreLibstatic String
className
Qualified class name: System.Text.StringBuilderstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description StringBuilder()
StringBuilder(int capacity)
StringBuilder(int capacity, int maxCapacity)
StringBuilder(Object instance)
Internal constructor.StringBuilder(String value)
StringBuilder(String value, int capacity)
StringBuilder(String value, int startIndex, int length, int capacity)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringBuilder
Append(boolean value)
StringBuilder
Append(byte value)
StringBuilder
Append(char value)
StringBuilder
Append(char[] value)
StringBuilder
Append(char[] value, int startIndex, int charCount)
StringBuilder
Append(char value, int repeatCount)
StringBuilder
Append(double value)
StringBuilder
Append(int value)
StringBuilder
Append(long value)
StringBuilder
Append(short value)
StringBuilder
Append(String value)
StringBuilder
Append(String value, int startIndex, int count)
StringBuilder
Append(JCORefOut dupParam0)
StringBuilder
Append(JCORefOut dupParam0, int dupParam1, int dupParam2)
StringBuilder
Append(NetObject value)
StringBuilder
Append(Decimal value)
StringBuilder
Append(SByte value)
StringBuilder
Append(Single value)
StringBuilder
Append(StringBuilder value)
StringBuilder
Append(StringBuilder value, int startIndex, int count)
StringBuilder
Append(UInt16 value)
StringBuilder
Append(UInt32 value)
StringBuilder
Append(UInt64 value)
StringBuilder
AppendFormat(String format, NetObject arg0)
StringBuilder
AppendFormat(String format, NetObject... args)
StringBuilder
AppendFormat(String format, NetObject arg0, NetObject arg1)
StringBuilder
AppendFormat(String format, NetObject arg0, NetObject arg1, NetObject arg2)
StringBuilder
AppendFormat(IFormatProvider provider, String format, NetObject arg0)
StringBuilder
AppendFormat(IFormatProvider provider, String format, NetObject... args)
StringBuilder
AppendFormat(IFormatProvider provider, String format, NetObject arg0, NetObject arg1)
StringBuilder
AppendFormat(IFormatProvider provider, String format, NetObject arg0, NetObject arg1, NetObject arg2)
StringBuilder
AppendJoin(char separator, String... values)
StringBuilder
AppendJoin(char dupParam0, JCORefOut dupParam1)
StringBuilder
AppendJoin(char separator, NetObject... values)
StringBuilder
AppendJoin(String separator, String... values)
StringBuilder
AppendJoin(String dupParam0, JCORefOut dupParam1)
StringBuilder
AppendJoin(String separator, NetObject... values)
StringBuilder
AppendLine()
StringBuilder
AppendLine(String value)
static StringBuilder
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoStringBuilder
, a cast assert is made to check if types are compatible.StringBuilder
Clear()
void
CopyTo(int sourceIndex, char[] destination, int destinationIndex, int count)
void
CopyTo(int dupParam0, JCORefOut dupParam1, int dupParam2, int dupParam3)
int
EnsureCapacity(int capacity)
boolean
Equals(StringBuilder sb)
int
getCapacity()
String
getJCOAssemblyName()
Returns the reflected Assembly nameString
getJCOClassName()
Returns the reflected Class nameObject
getJCOInstance()
Returns the instantiated classString
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typeint
getLength()
int
getMaxCapacity()
void
GetObjectData(SerializationInfo info, StreamingContext context)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.StringBuilder
Insert(int index, boolean value)
StringBuilder
Insert(int index, byte value)
StringBuilder
Insert(int index, char value)
StringBuilder
Insert(int index, char[] value)
StringBuilder
Insert(int index, char[] value, int startIndex, int charCount)
StringBuilder
Insert(int index, double value)
StringBuilder
Insert(int index, int value)
StringBuilder
Insert(int index, long value)
StringBuilder
Insert(int index, short value)
StringBuilder
Insert(int index, String value)
StringBuilder
Insert(int index, String value, int count)
StringBuilder
Insert(int dupParam0, JCORefOut dupParam1)
StringBuilder
Insert(int dupParam0, JCORefOut dupParam1, int dupParam2, int dupParam3)
StringBuilder
Insert(int index, NetObject value)
StringBuilder
Insert(int index, Decimal value)
StringBuilder
Insert(int index, SByte value)
StringBuilder
Insert(int index, Single value)
StringBuilder
Insert(int index, UInt16 value)
StringBuilder
Insert(int index, UInt32 value)
StringBuilder
Insert(int index, UInt64 value)
StringBuilder
Remove(int startIndex, int length)
StringBuilder
Replace(char oldChar, char newChar)
StringBuilder
Replace(char oldChar, char newChar, int startIndex, int count)
StringBuilder
Replace(String oldValue, String newValue)
StringBuilder
Replace(String oldValue, String newValue, int startIndex, int count)
void
setCapacity(int Capacity)
void
setJCOInstance(JCObject instance)
void
setLength(int Length)
String
ToString(int startIndex, int length)
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toObjectFromArray, toObjectFromArray, toString, ToString, translateException
-
-
-
-
Field Detail
-
assemblyFullName
public static final String assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e- See Also:
- Constant Field Values
-
assemblyShortName
public static final String assemblyShortName
Assembly name: System.Private.CoreLib- See Also:
- Constant Field Values
-
className
public static final String className
Qualified class name: System.Text.StringBuilder- See Also:
- Constant Field Values
-
-
Constructor Detail
-
StringBuilder
public StringBuilder(Object instance) throws Throwable
Internal constructor. Use with caution- Throws:
Throwable
-
StringBuilder
public StringBuilder(int capacity, int maxCapacity) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
StringBuilder
public StringBuilder(int capacity) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
StringBuilder
public StringBuilder(String value, int startIndex, int length, int capacity) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
StringBuilder
public StringBuilder(String value, int capacity) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
StringBuilder
public StringBuilder(String value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException
-
-
Method Detail
-
getJCOAssemblyName
public String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOAssemblyName
in interfaceISerializable
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOClassName
in interfaceISerializable
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOObjectName
in interfaceISerializable
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Specified by:
getJCOInstance
in interfaceISerializable
- 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
- Specified by:
getJCOType
in interfaceISerializable
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static StringBuilder cast(IJCOBridgeReflected from) throws Throwable
Try to cast theIJCOBridgeReflected
instance intoStringBuilder
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
StringBuilder
instance- Throws:
Throwable
- in case of error during cast operation
-
Equals
public boolean Equals(StringBuilder sb) throws Throwable
- Throws:
Throwable
-
EnsureCapacity
public int EnsureCapacity(int capacity) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
ToString
public String ToString(int startIndex, int length) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
Append
public StringBuilder Append(boolean value) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArrayTypeMismatchException, OutOfMemoryException
-
Append
public StringBuilder Append(byte value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(char value, int repeatCount) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Append
public StringBuilder Append(char value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Append
public StringBuilder Append(char[] value, int startIndex, int charCount) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Append
public StringBuilder Append(JCORefOut dupParam0, int dupParam1, int dupParam2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Append
public StringBuilder Append(char[] value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Append
public StringBuilder Append(JCORefOut dupParam0) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Append
public StringBuilder Append(double value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(short value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(int value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(long value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(SByte value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(Single value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(Decimal value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(NetObject value) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArrayTypeMismatchException, OutOfMemoryException
-
Append
public StringBuilder Append(String value, int startIndex, int count) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Append
public StringBuilder Append(String value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, OutOfMemoryException
-
Append
public StringBuilder Append(StringBuilder value, int startIndex, int count) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Append
public StringBuilder Append(StringBuilder value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, OutOfMemoryException
-
Append
public StringBuilder Append(UInt16 value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(UInt32 value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(UInt64 value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
AppendFormat
public StringBuilder AppendFormat(IFormatProvider provider, String format, NetObject arg0, NetObject arg1, NetObject arg2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, FormatException, OutOfMemoryException
-
AppendFormat
public StringBuilder AppendFormat(IFormatProvider provider, String format, NetObject arg0, NetObject arg1) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, FormatException, OutOfMemoryException
-
AppendFormat
public StringBuilder AppendFormat(IFormatProvider provider, String format, NetObject arg0) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, FormatException, OutOfMemoryException
-
AppendFormat
public StringBuilder AppendFormat(IFormatProvider provider, String format, NetObject... args) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, FormatException, OutOfMemoryException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
FormatException
OutOfMemoryException
-
AppendFormat
public StringBuilder AppendFormat(String format, NetObject arg0, NetObject arg1, NetObject arg2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, FormatException, OutOfMemoryException
-
AppendFormat
public StringBuilder AppendFormat(String format, NetObject arg0, NetObject arg1) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, FormatException, OutOfMemoryException
-
AppendFormat
public StringBuilder AppendFormat(String format, NetObject arg0) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, FormatException, OutOfMemoryException
-
AppendFormat
public StringBuilder AppendFormat(String format, NetObject... args) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, FormatException, OutOfMemoryException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
FormatException
OutOfMemoryException
-
AppendJoin
public StringBuilder AppendJoin(char separator, NetObject... values) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException
-
AppendJoin
public StringBuilder AppendJoin(char separator, String... values) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException
-
AppendJoin
public StringBuilder AppendJoin(char dupParam0, JCORefOut dupParam1) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException
-
AppendJoin
public StringBuilder AppendJoin(String separator, NetObject... values) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException
-
AppendJoin
public StringBuilder AppendJoin(String separator, String... values) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException
-
AppendJoin
public StringBuilder AppendJoin(String dupParam0, JCORefOut dupParam1) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException
-
AppendLine
public StringBuilder AppendLine() throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArrayTypeMismatchException, OutOfMemoryException
-
AppendLine
public StringBuilder AppendLine(String value) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArrayTypeMismatchException, OutOfMemoryException
-
Clear
public StringBuilder Clear() throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, boolean value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, byte value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, char value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int index, char[] value, int startIndex, int charCount) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int dupParam0, JCORefOut dupParam1, int dupParam2, int dupParam3) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int index, char[] value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int dupParam0, JCORefOut dupParam1) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int index, double value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, RankException, ArgumentException, ArrayTypeMismatchException, TypeInitializationException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException
- Throws:
Throwable
ArgumentNullException
CultureNotFoundException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
RankException
ArgumentException
ArrayTypeMismatchException
TypeInitializationException
InvalidOperationException
NotSupportedException
FormatException
OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, short value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException, FormatException, ArgumentException, NotSupportedException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, int value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException, FormatException, ArgumentException, NotSupportedException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, long value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException, FormatException, ArgumentException, NotSupportedException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, SByte value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException, FormatException, ArgumentException, NotSupportedException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, Single value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, RankException, ArgumentException, ArrayTypeMismatchException, TypeInitializationException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException
- Throws:
Throwable
ArgumentNullException
CultureNotFoundException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
RankException
ArgumentException
ArrayTypeMismatchException
TypeInitializationException
InvalidOperationException
NotSupportedException
FormatException
OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, Decimal value) throws Throwable, PlatformNotSupportedException, ArgumentNullException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, RankException, ArgumentException, ArrayTypeMismatchException, TypeInitializationException, FormatException, InvalidOperationException, OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, NetObject value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, String value, int count) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, String value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int index, UInt16 value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, UInt32 value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, UInt64 value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Remove
public StringBuilder Remove(int startIndex, int length) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Replace
public StringBuilder Replace(char oldChar, char newChar, int startIndex, int count) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
Replace
public StringBuilder Replace(char oldChar, char newChar) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Replace
public StringBuilder Replace(String oldValue, String newValue, int startIndex, int count) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Replace
public StringBuilder Replace(String oldValue, String newValue) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
CopyTo
public void CopyTo(int sourceIndex, char[] destination, int destinationIndex, int count) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
CopyTo
public void CopyTo(int dupParam0, JCORefOut dupParam1, int dupParam2, int dupParam3) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetObjectData
@Deprecated public void GetObjectData(SerializationInfo info, StreamingContext context) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToISerializable method available in ISerializable to obtain an object with an invocable method- Specified by:
GetObjectData
in interfaceISerializable
- Throws:
Throwable
-
setCapacity
public void setCapacity(int Capacity) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
setLength
public void setLength(int Length) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
-