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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Text.StringBuilder
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=8.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.StringBuilderstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description StringBuilder()
StringBuilder(int capacity)
StringBuilder(int capacity, int maxCapacity)
StringBuilder(java.lang.Object instance)
Internal constructor.StringBuilder(java.lang.String value)
StringBuilder(java.lang.String value, int capacity)
StringBuilder(java.lang.String value, int startIndex, int length, int capacity)
-
Method Summary
All Methods Static Methods Instance Methods Concrete 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(java.lang.String value)
StringBuilder
Append(java.lang.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(java.lang.String format, NetObject arg0)
StringBuilder
AppendFormat(java.lang.String format, NetObject... args)
StringBuilder
AppendFormat(java.lang.String format, NetObject arg0, NetObject arg1)
StringBuilder
AppendFormat(java.lang.String format, NetObject arg0, NetObject arg1, NetObject arg2)
StringBuilder
AppendFormat(IFormatProvider provider, java.lang.String format, NetObject arg0)
StringBuilder
AppendFormat(IFormatProvider provider, java.lang.String format, NetObject... args)
StringBuilder
AppendFormat(IFormatProvider provider, java.lang.String format, NetObject arg0, NetObject arg1)
StringBuilder
AppendFormat(IFormatProvider provider, java.lang.String format, NetObject arg0, NetObject arg1, NetObject arg2)
StringBuilder
AppendFormat(IFormatProvider provider, CompositeFormat format, NetObject... args)
StringBuilder
AppendJoin(char separator, java.lang.String... values)
StringBuilder
AppendJoin(char dupParam0, JCORefOut dupParam1)
StringBuilder
AppendJoin(char separator, NetObject... values)
StringBuilder
AppendJoin(java.lang.String separator, java.lang.String... values)
StringBuilder
AppendJoin(java.lang.String dupParam0, JCORefOut dupParam1)
StringBuilder
AppendJoin(java.lang.String separator, NetObject... values)
StringBuilder
AppendLine()
StringBuilder
AppendLine(java.lang.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()
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 Typeint
getLength()
int
getMaxCapacity()
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, java.lang.String value)
StringBuilder
Insert(int index, java.lang.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(java.lang.String oldValue, java.lang.String newValue)
StringBuilder
Replace(java.lang.String oldValue, java.lang.String newValue, int startIndex, int count)
void
setCapacity(int Capacity)
void
setJCOInstance(JCObject instance)
void
setLength(int Length)
java.lang.String
ToString(int startIndex, int length)
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToString
-
Methods inherited from interface system.runtime.serialization.ISerializable
GetObjectData
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=8.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.StringBuilder- See Also:
- Constant Field Values
-
-
Constructor Detail
-
StringBuilder
public StringBuilder(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
StringBuilder
public StringBuilder() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
StringBuilder
public StringBuilder(int capacity, int maxCapacity) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
-
StringBuilder
public StringBuilder(int capacity) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
StringBuilder
public StringBuilder(java.lang.String value, int startIndex, int length, int capacity) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
StringBuilder
public StringBuilder(java.lang.String value, int capacity) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException
-
StringBuilder
public StringBuilder(java.lang.String value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.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 java.lang.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 java.lang.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 java.lang.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 java.lang.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:
java.lang.Throwable
- in case of error during cast operation
-
Equals
public boolean Equals(StringBuilder sb) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
EnsureCapacity
public int EnsureCapacity(int capacity) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
ToString
public java.lang.String ToString(int startIndex, int length) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
Append
public StringBuilder Append(boolean value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, OutOfMemoryException
-
Append
public StringBuilder Append(byte value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(char value, int repeatCount) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException
-
Append
public StringBuilder Append(char value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException
-
Append
public StringBuilder Append(char[] value, int startIndex, int charCount) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException
-
Append
public StringBuilder Append(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException
-
Append
public StringBuilder Append(char[] value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException
-
Append
public StringBuilder Append(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException
-
Append
public StringBuilder Append(double value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(short value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(int value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(long value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(SByte value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(Single value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(Decimal value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(NetObject value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, OutOfMemoryException
-
Append
public StringBuilder Append(java.lang.String value, int startIndex, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException
-
Append
public StringBuilder Append(java.lang.String value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException
-
Append
public StringBuilder Append(StringBuilder value, int startIndex, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException
-
Append
public StringBuilder Append(StringBuilder value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, ArrayTypeMismatchException, OutOfMemoryException
-
Append
public StringBuilder Append(UInt16 value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(UInt32 value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Append
public StringBuilder Append(UInt64 value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
AppendFormat
public StringBuilder AppendFormat(IFormatProvider provider, java.lang.String format, NetObject arg0, NetObject arg1, NetObject arg2) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, OutOfMemoryException, IndexOutOfRangeException, ArgumentNullException, FormatException
-
AppendFormat
public StringBuilder AppendFormat(IFormatProvider provider, java.lang.String format, NetObject arg0, NetObject arg1) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, OutOfMemoryException, IndexOutOfRangeException, ArgumentNullException, FormatException
-
AppendFormat
public StringBuilder AppendFormat(IFormatProvider provider, java.lang.String format, NetObject arg0) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException, IndexOutOfRangeException, FormatException
-
AppendFormat
public StringBuilder AppendFormat(IFormatProvider provider, java.lang.String format, NetObject... args) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException, FormatException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
OutOfMemoryException
FormatException
-
AppendFormat
public StringBuilder AppendFormat(IFormatProvider provider, CompositeFormat format, NetObject... args) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, FormatException, OutOfMemoryException
-
AppendFormat
public StringBuilder AppendFormat(java.lang.String format, NetObject arg0, NetObject arg1, NetObject arg2) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, OutOfMemoryException, IndexOutOfRangeException, ArgumentNullException, FormatException
-
AppendFormat
public StringBuilder AppendFormat(java.lang.String format, NetObject arg0, NetObject arg1) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, OutOfMemoryException, IndexOutOfRangeException, ArgumentNullException, FormatException
-
AppendFormat
public StringBuilder AppendFormat(java.lang.String format, NetObject arg0) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException, IndexOutOfRangeException, FormatException
-
AppendFormat
public StringBuilder AppendFormat(java.lang.String format, NetObject... args) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException, FormatException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
OutOfMemoryException
FormatException
-
AppendJoin
public StringBuilder AppendJoin(char separator, NetObject... values) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException
-
AppendJoin
public StringBuilder AppendJoin(char separator, java.lang.String... values) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException
-
AppendJoin
public StringBuilder AppendJoin(char dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException
-
AppendJoin
public StringBuilder AppendJoin(java.lang.String separator, NetObject... values) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException
-
AppendJoin
public StringBuilder AppendJoin(java.lang.String separator, java.lang.String... values) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException
-
AppendJoin
public StringBuilder AppendJoin(java.lang.String dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException
-
AppendLine
public StringBuilder AppendLine() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, OutOfMemoryException
-
AppendLine
public StringBuilder AppendLine(java.lang.String value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, OutOfMemoryException
-
Clear
public StringBuilder Clear() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, boolean value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, byte value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, char value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int index, char[] value, int startIndex, int charCount) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int dupParam0, JCORefOut dupParam1, int dupParam2, int dupParam3) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int index, char[] value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int index, double value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, short value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, int value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, long value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, SByte value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, Single value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, Decimal value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, NetObject value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, java.lang.String value, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
Insert
public StringBuilder Insert(int index, java.lang.String value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
-
Insert
public StringBuilder Insert(int index, UInt16 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, UInt32 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Insert
public StringBuilder Insert(int index, UInt64 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
Remove
public StringBuilder Remove(int startIndex, int length) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException
-
Replace
public StringBuilder Replace(char oldChar, char newChar, int startIndex, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
-
Replace
public StringBuilder Replace(char oldChar, char newChar) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Replace
public StringBuilder Replace(java.lang.String oldValue, java.lang.String newValue, int startIndex, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
IndexOutOfRangeException
RankException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
-
Replace
public StringBuilder Replace(java.lang.String oldValue, java.lang.String newValue) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException, OutOfMemoryException
-
CopyTo
public void CopyTo(int sourceIndex, char[] destination, int destinationIndex, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
CopyTo
public void CopyTo(int dupParam0, JCORefOut dupParam1, int dupParam2, int dupParam3) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
getCapacity
public int getCapacity() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setCapacity
public void setCapacity(int Capacity) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
getLength
public int getLength() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setLength
public void setLength(int Length) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException
-
getMaxCapacity
public int getMaxCapacity() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-