Package microsoft.visualbasic
Class Strings
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- microsoft.visualbasic.Strings
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class Strings extends NetObject
The base .NET class managing Microsoft.VisualBasic.Strings, Microsoft.VisualBasic.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/Microsoft.VisualBasic.Strings
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: Microsoft.VisualBasic.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: Microsoft.VisualBasic.Corestatic java.lang.String
className
Qualified class name: Microsoft.VisualBasic.Stringsstatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static int
Asc(char String)
static int
Asc(java.lang.String String)
static int
AscW(char String)
static int
AscW(java.lang.String String)
static Strings
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoStrings
, a cast assert is made to check if types are compatible.static char
Chr(int CharCode)
static char
ChrW(int CharCode)
static java.lang.String[]
Filter(java.lang.String[] Source, java.lang.String Match, boolean Include, CompareMethod Compare)
static java.lang.String[]
Filter(JCORefOut dupParam0, java.lang.String dupParam1, boolean dupParam2, CompareMethod dupParam3)
static java.lang.String[]
Filter(NetObject[] Source, java.lang.String Match, boolean Include, CompareMethod Compare)
static java.lang.String
Format(NetObject Expression, java.lang.String Style)
static java.lang.String
FormatCurrency(NetObject Expression, int NumDigitsAfterDecimal, TriState IncludeLeadingDigit, TriState UseParensForNegativeNumbers, TriState GroupDigits)
static java.lang.String
FormatDateTime(DateTime Expression, DateFormat NamedFormat)
static java.lang.String
FormatNumber(NetObject Expression, int NumDigitsAfterDecimal, TriState IncludeLeadingDigit, TriState UseParensForNegativeNumbers, TriState GroupDigits)
static java.lang.String
FormatPercent(NetObject Expression, int NumDigitsAfterDecimal, TriState IncludeLeadingDigit, TriState UseParensForNegativeNumbers, TriState GroupDigits)
static char
GetChar(java.lang.String str, int Index)
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 int
InStr(int Start, java.lang.String String1, java.lang.String String2, CompareMethod Compare)
static int
InStr(java.lang.String String1, java.lang.String String2, CompareMethod Compare)
static int
InStrRev(java.lang.String StringCheck, java.lang.String StringMatch, int Start, CompareMethod Compare)
static java.lang.String
Join(java.lang.String[] SourceArray, java.lang.String Delimiter)
static java.lang.String
Join(JCORefOut dupParam0, java.lang.String dupParam1)
static java.lang.String
Join(NetObject[] SourceArray, java.lang.String Delimiter)
static char
LCase(char Value)
static java.lang.String
LCase(java.lang.String Value)
static java.lang.String
Left(java.lang.String str, int Length)
static int
Len(boolean Expression)
static int
Len(byte Expression)
static int
Len(char Expression)
static int
Len(double Expression)
static int
Len(int Expression)
static int
Len(long Expression)
static int
Len(short Expression)
static int
Len(java.lang.String Expression)
static int
Len(NetObject Expression)
static int
Len(DateTime Expression)
static int
Len(Decimal Expression)
static int
Len(SByte Expression)
static int
Len(Single Expression)
static int
Len(UInt16 Expression)
static int
Len(UInt32 Expression)
static int
Len(UInt64 Expression)
static java.lang.String
LSet(java.lang.String Source, int Length)
static java.lang.String
LTrim(java.lang.String str)
static java.lang.String
Mid(java.lang.String str, int Start)
static java.lang.String
Mid(java.lang.String str, int Start, int Length)
static java.lang.String
Replace(java.lang.String Expression, java.lang.String Find, java.lang.String Replacement, int Start, int Count, CompareMethod Compare)
static java.lang.String
Right(java.lang.String str, int Length)
static java.lang.String
RSet(java.lang.String Source, int Length)
static java.lang.String
RTrim(java.lang.String str)
void
setJCOInstance(JCObject instance)
static java.lang.String
Space(int Number)
static java.lang.String[]
Split(java.lang.String Expression, java.lang.String Delimiter, int Limit, CompareMethod Compare)
static int
StrComp(java.lang.String String1, java.lang.String String2, CompareMethod Compare)
static java.lang.String
StrConv(java.lang.String str, VbStrConv Conversion, int LocaleID)
static java.lang.String
StrDup(int Number, char Character)
static java.lang.String
StrDup(int Number, java.lang.String Character)
static NetObject
StrDup(int Number, NetObject Character)
static java.lang.String
StrReverse(java.lang.String Expression)
static java.lang.String
Trim(java.lang.String str)
static char
UCase(char Value)
static java.lang.String
UCase(java.lang.String Value)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: Microsoft.VisualBasic.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: Microsoft.VisualBasic.Core- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: Microsoft.VisualBasic.Strings- 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 Strings cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoStrings
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Strings
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Chr
public static char Chr(int CharCode) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException, OverflowException, FormatException
-
ChrW
public static char ChrW(int CharCode) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException, OverflowException
-
GetChar
public static char GetChar(java.lang.String str, int Index) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException
-
LCase
public static char LCase(char Value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, CultureNotFoundException, OutOfMemoryException, ExternalException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
CultureNotFoundException
OutOfMemoryException
ExternalException
-
UCase
public static char UCase(char Value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, CultureNotFoundException, OutOfMemoryException, ExternalException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
CultureNotFoundException
OutOfMemoryException
ExternalException
-
Asc
public static int Asc(char String) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, FormatException
-
Asc
public static int Asc(java.lang.String String) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException
-
AscW
public static int AscW(char String) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
AscW
public static int AscW(java.lang.String String) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException
-
InStr
public static int InStr(int Start, java.lang.String String1, java.lang.String String2, CompareMethod Compare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException
-
InStr
public static int InStr(java.lang.String String1, java.lang.String String2, CompareMethod Compare) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, CultureNotFoundException, NullReferenceException, OutOfMemoryException, ExternalException
-
InStrRev
public static int InStrRev(java.lang.String StringCheck, java.lang.String StringMatch, int Start, CompareMethod Compare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException, UnreachableException
-
Len
public static int Len(boolean Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(byte Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(char Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(double Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(short Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(int Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(long Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(SByte Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(Single Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(DateTime Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(Decimal Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(NetObject Expression) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentNullException
-
Len
public static int Len(java.lang.String Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(UInt16 Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(UInt32 Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Len
public static int Len(UInt64 Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
StrComp
public static int StrComp(java.lang.String String1, java.lang.String String2, CompareMethod Compare) throws java.lang.Throwable, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, NotSupportedException, IndexOutOfRangeException, ArgumentNullException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, OutOfMemoryException, ExternalException, RankException, ArrayTypeMismatchException, ObjectDisposedException
- Throws:
java.lang.Throwable
CultureNotFoundException
PlatformNotSupportedException
NullReferenceException
NotSupportedException
IndexOutOfRangeException
ArgumentNullException
InvalidOperationException
ArgumentException
ArgumentOutOfRangeException
OutOfMemoryException
ExternalException
RankException
ArrayTypeMismatchException
ObjectDisposedException
-
StrDup
public static NetObject StrDup(int Number, NetObject Character) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException, ArrayTypeMismatchException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
InvalidOperationException
OutOfMemoryException
ExternalException
ArrayTypeMismatchException
InvalidCastException
-
Format
public static java.lang.String Format(NetObject Expression, java.lang.String Style) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, ArgumentException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, ArrayTypeMismatchException, OutOfMemoryException, InvalidOperationException, ArgumentNullException, ObjectDisposedException, ExternalException, InvalidCastException, OverflowException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
ArgumentException
IndexOutOfRangeException
FormatException
ArgumentOutOfRangeException
ArrayTypeMismatchException
OutOfMemoryException
InvalidOperationException
ArgumentNullException
ObjectDisposedException
ExternalException
InvalidCastException
OverflowException
-
FormatCurrency
public static java.lang.String FormatCurrency(NetObject Expression, int NumDigitsAfterDecimal, TriState IncludeLeadingDigit, TriState UseParensForNegativeNumbers, TriState GroupDigits) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, ArgumentOutOfRangeException, InvalidOperationException, OverflowException, InvalidCastException
-
FormatDateTime
public static java.lang.String FormatDateTime(DateTime Expression, DateFormat NamedFormat) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, OutOfMemoryException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, ExternalException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentOutOfRangeException
OutOfMemoryException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
ExternalException
RankException
ArrayTypeMismatchException
-
FormatNumber
public static java.lang.String FormatNumber(NetObject Expression, int NumDigitsAfterDecimal, TriState IncludeLeadingDigit, TriState UseParensForNegativeNumbers, TriState GroupDigits) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, InvalidOperationException, ArgumentOutOfRangeException, OverflowException, InvalidCastException
-
FormatPercent
public static java.lang.String FormatPercent(NetObject Expression, int NumDigitsAfterDecimal, TriState IncludeLeadingDigit, TriState UseParensForNegativeNumbers, TriState GroupDigits) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, InvalidOperationException, ArgumentOutOfRangeException, OverflowException, InvalidCastException
-
Join
public static java.lang.String Join(NetObject[] SourceArray, java.lang.String Delimiter) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException, FormatException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
OutOfMemoryException
FormatException
InvalidCastException
-
Join
public static java.lang.String Join(java.lang.String[] SourceArray, java.lang.String Delimiter) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, CultureNotFoundException, NullReferenceException, OutOfMemoryException, ExternalException, ArgumentNullException, FormatException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
CultureNotFoundException
NullReferenceException
OutOfMemoryException
ExternalException
ArgumentNullException
FormatException
ArrayTypeMismatchException
-
Join
public static java.lang.String Join(JCORefOut dupParam0, java.lang.String dupParam1) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, CultureNotFoundException, NullReferenceException, OutOfMemoryException, ExternalException, ArgumentNullException, FormatException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
CultureNotFoundException
NullReferenceException
OutOfMemoryException
ExternalException
ArgumentNullException
FormatException
ArrayTypeMismatchException
-
LCase
public static java.lang.String LCase(java.lang.String Value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, CultureNotFoundException, OutOfMemoryException, ExternalException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
CultureNotFoundException
OutOfMemoryException
ExternalException
-
Left
public static java.lang.String Left(java.lang.String str, int Length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException
-
LSet
public static java.lang.String LSet(java.lang.String Source, int Length) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException
-
LTrim
public static java.lang.String LTrim(java.lang.String str) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
Mid
public static java.lang.String Mid(java.lang.String str, int Start, int Length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException
-
Mid
public static java.lang.String Mid(java.lang.String str, int Start) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, OutOfMemoryException, ExternalException
-
Replace
public static java.lang.String Replace(java.lang.String Expression, java.lang.String Find, java.lang.String Replacement, int Start, int Count, CompareMethod Compare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException, ArrayTypeMismatchException
-
Right
public static java.lang.String Right(java.lang.String str, int Length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException
-
RSet
public static java.lang.String RSet(java.lang.String Source, int Length) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException
-
RTrim
public static java.lang.String RTrim(java.lang.String str) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
Space
public static java.lang.String Space(int Number) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException
-
StrConv
public static java.lang.String StrConv(java.lang.String str, VbStrConv Conversion, int LocaleID) throws java.lang.Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException, FormatException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
CultureNotFoundException
PlatformNotSupportedException
NullReferenceException
NotSupportedException
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
ObjectDisposedException
InvalidOperationException
OutOfMemoryException
ExternalException
FormatException
ArrayTypeMismatchException
-
StrDup
public static java.lang.String StrDup(int Number, char Character) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException
-
StrDup
public static java.lang.String StrDup(int Number, java.lang.String Character) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ExternalException
-
StrReverse
public static java.lang.String StrReverse(java.lang.String Expression) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException
-
Trim
public static java.lang.String Trim(java.lang.String str) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
UCase
public static java.lang.String UCase(java.lang.String Value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, CultureNotFoundException, OutOfMemoryException, ExternalException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
CultureNotFoundException
OutOfMemoryException
ExternalException
-
Filter
public static java.lang.String[] Filter(NetObject[] Source, java.lang.String Match, boolean Include, CompareMethod Compare) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException, FormatException, InvalidCastException, UnreachableException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
OutOfMemoryException
FormatException
InvalidCastException
UnreachableException
-
Filter
public static java.lang.String[] Filter(java.lang.String[] Source, java.lang.String Match, boolean Include, CompareMethod Compare) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, OutOfMemoryException, ExternalException, UnreachableException, InvalidOperationException, InvalidCastException, IndexOutOfRangeException, ArrayTypeMismatchException, RankException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
NotSupportedException
CultureNotFoundException
OutOfMemoryException
ExternalException
UnreachableException
InvalidOperationException
InvalidCastException
IndexOutOfRangeException
ArrayTypeMismatchException
RankException
-
Filter
public static java.lang.String[] Filter(JCORefOut dupParam0, java.lang.String dupParam1, boolean dupParam2, CompareMethod dupParam3) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, OutOfMemoryException, ExternalException, UnreachableException, InvalidOperationException, InvalidCastException, IndexOutOfRangeException, ArrayTypeMismatchException, RankException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
NotSupportedException
CultureNotFoundException
OutOfMemoryException
ExternalException
UnreachableException
InvalidOperationException
InvalidCastException
IndexOutOfRangeException
ArrayTypeMismatchException
RankException
-
Split
public static java.lang.String[] Split(java.lang.String Expression, java.lang.String Delimiter, int Limit, CompareMethod Compare) throws java.lang.Throwable, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, NotSupportedException, IndexOutOfRangeException, ArgumentNullException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, OutOfMemoryException, ExternalException, RankException, ArrayTypeMismatchException, UnreachableException, InvalidCastException
- Throws:
java.lang.Throwable
CultureNotFoundException
PlatformNotSupportedException
NullReferenceException
NotSupportedException
IndexOutOfRangeException
ArgumentNullException
InvalidOperationException
ArgumentException
ArgumentOutOfRangeException
OutOfMemoryException
ExternalException
RankException
ArrayTypeMismatchException
UnreachableException
InvalidCastException
-
-