public class CompareInfo extends NetObject implements IDeserializationCallback
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Globalization.CompareInfo
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
|
static java.lang.String |
assemblyShortName
Assembly name: System.Private.CoreLib
|
static java.lang.String |
className
Qualified class name: System.Globalization.CompareInfo
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
CompareInfo() |
CompareInfo(java.lang.Object instance)
Internal constructor.
|
| Modifier and Type | Method and Description |
|---|---|
static CompareInfo |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into CompareInfo, a cast assert is made to check if types are compatible. |
int |
Compare(java.lang.String string1,
int offset1,
int length1,
java.lang.String string2,
int offset2,
int length2) |
int |
Compare(java.lang.String string1,
int offset1,
int length1,
java.lang.String string2,
int offset2,
int length2,
CompareOptions options) |
int |
Compare(java.lang.String string1,
int offset1,
java.lang.String string2,
int offset2) |
int |
Compare(java.lang.String string1,
int offset1,
java.lang.String string2,
int offset2,
CompareOptions options) |
int |
Compare(java.lang.String string1,
java.lang.String string2) |
int |
Compare(java.lang.String string1,
java.lang.String string2,
CompareOptions options) |
static CompareInfo |
GetCompareInfo(int culture) |
static CompareInfo |
GetCompareInfo(int culture,
Assembly assembly) |
static CompareInfo |
GetCompareInfo(java.lang.String name) |
static CompareInfo |
GetCompareInfo(java.lang.String name,
Assembly assembly) |
int |
GetHashCode(java.lang.String source,
CompareOptions options) |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
int |
getLCID() |
java.lang.String |
getName() |
SortKey |
GetSortKey(java.lang.String source) |
SortKey |
GetSortKey(java.lang.String source,
CompareOptions options) |
SortVersion |
getVersion() |
int |
IndexOf(java.lang.String source,
char value) |
int |
IndexOf(java.lang.String source,
char value,
CompareOptions options) |
int |
IndexOf(java.lang.String source,
char value,
int startIndex) |
int |
IndexOf(java.lang.String source,
char value,
int startIndex,
CompareOptions options) |
int |
IndexOf(java.lang.String source,
char value,
int startIndex,
int count) |
int |
IndexOf(java.lang.String source,
char value,
int startIndex,
int count,
CompareOptions options) |
int |
IndexOf(java.lang.String source,
java.lang.String value) |
int |
IndexOf(java.lang.String source,
java.lang.String value,
CompareOptions options) |
int |
IndexOf(java.lang.String source,
java.lang.String value,
int startIndex) |
int |
IndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
CompareOptions options) |
int |
IndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
int count) |
int |
IndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
int count,
CompareOptions options) |
boolean |
IsPrefix(java.lang.String source,
java.lang.String prefix) |
boolean |
IsPrefix(java.lang.String source,
java.lang.String prefix,
CompareOptions options) |
static boolean |
IsSortable(char ch) |
static boolean |
IsSortable(Rune value) |
static boolean |
IsSortable(java.lang.String text) |
boolean |
IsSuffix(java.lang.String source,
java.lang.String suffix) |
boolean |
IsSuffix(java.lang.String source,
java.lang.String suffix,
CompareOptions options) |
int |
LastIndexOf(java.lang.String source,
char value) |
int |
LastIndexOf(java.lang.String source,
char value,
CompareOptions options) |
int |
LastIndexOf(java.lang.String source,
char value,
int startIndex) |
int |
LastIndexOf(java.lang.String source,
char value,
int startIndex,
CompareOptions options) |
int |
LastIndexOf(java.lang.String source,
char value,
int startIndex,
int count) |
int |
LastIndexOf(java.lang.String source,
char value,
int startIndex,
int count,
CompareOptions options) |
int |
LastIndexOf(java.lang.String source,
java.lang.String value) |
int |
LastIndexOf(java.lang.String source,
java.lang.String value,
CompareOptions options) |
int |
LastIndexOf(java.lang.String source,
java.lang.String value,
int startIndex) |
int |
LastIndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
CompareOptions options) |
int |
LastIndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
int count) |
int |
LastIndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
int count,
CompareOptions options) |
void |
setJCOInstance(JCObject instance) |
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToStringOnDeserialization, ToIDeserializationCallbackpublic static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public CompareInfo()
throws java.lang.Throwable
java.lang.Throwablepublic CompareInfo(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic static CompareInfo cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into CompareInfo, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedCompareInfo instancejava.lang.Throwable - in case of error during cast operationpublic int Compare(java.lang.String string1,
int offset1,
int length1,
java.lang.String string2,
int offset2,
int length2)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
IndexOutOfRangeException,
FormatException
public int Compare(java.lang.String string1,
int offset1,
int length1,
java.lang.String string2,
int offset2,
int length2,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
NotSupportedException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException
public int Compare(java.lang.String string1,
int offset1,
java.lang.String string2,
int offset2)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
FormatException
public int Compare(java.lang.String string1,
int offset1,
java.lang.String string2,
int offset2,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
IndexOutOfRangeException,
FormatException
public int Compare(java.lang.String string1,
java.lang.String string2)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
PlatformNotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionpublic int Compare(java.lang.String string1,
java.lang.String string2,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionpublic static CompareInfo GetCompareInfo(int culture) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionIndexOutOfRangeExceptionRankExceptionCultureNotFoundExceptionObjectDisposedExceptionOutOfMemoryExceptionExternalExceptionpublic static CompareInfo GetCompareInfo(int culture, Assembly assembly) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, FormatException, CultureNotFoundException, OutOfMemoryException, ExternalException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionFormatExceptionCultureNotFoundExceptionOutOfMemoryExceptionExternalExceptionpublic static CompareInfo GetCompareInfo(java.lang.String name) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, OutOfMemoryException, CultureNotFoundException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionIndexOutOfRangeExceptionOutOfMemoryExceptionCultureNotFoundExceptionpublic static CompareInfo GetCompareInfo(java.lang.String name, Assembly assembly) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, OutOfMemoryException, CultureNotFoundException, ExternalException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionIndexOutOfRangeExceptionOutOfMemoryExceptionCultureNotFoundExceptionExternalExceptionpublic int GetHashCode(java.lang.String source,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in interface IDeserializationCallbackgetJCOAssemblyName in class NetObjectString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in interface IDeserializationCallbackgetJCOClassName in class NetObjectString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in interface IDeserializationCallbackgetJCOInstance in class NetObjectObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in interface IDeserializationCallbackgetJCOObjectName in class NetObjectString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in interface IDeserializationCallbackgetJCOType in class NetObjectJCType representing the CLR Type of the instantiated Classpublic int getLCID()
throws java.lang.Throwable,
PlatformNotSupportedException,
NotSupportedException,
ArgumentNullException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArgumentException,
IndexOutOfRangeException,
OutOfMemoryException,
RankException,
ArrayTypeMismatchException,
CultureNotFoundException
public java.lang.String getName()
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionpublic SortKey GetSortKey(java.lang.String source) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, ArrayTypeMismatchException, IndexOutOfRangeException, PlatformNotSupportedException
public SortKey GetSortKey(java.lang.String source, CompareOptions options) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, ArrayTypeMismatchException, IndexOutOfRangeException, PlatformNotSupportedException
public SortVersion getVersion() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentException, OutOfMemoryException, CultureNotFoundException
public int IndexOf(java.lang.String source,
char value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int IndexOf(java.lang.String source,
char value,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
UnreachableException
public int IndexOf(java.lang.String source,
char value,
int startIndex)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
IndexOutOfRangeException
public int IndexOf(java.lang.String source,
char value,
int startIndex,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
UnreachableException
public int IndexOf(java.lang.String source,
char value,
int startIndex,
int count)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int IndexOf(java.lang.String source,
char value,
int startIndex,
int count,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
UnreachableException
public int IndexOf(java.lang.String source,
java.lang.String value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int IndexOf(java.lang.String source,
java.lang.String value,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
UnreachableException
public int IndexOf(java.lang.String source,
java.lang.String value,
int startIndex)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
IndexOutOfRangeException
public int IndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
UnreachableException
public int IndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
int count)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int IndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
int count,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
UnreachableException
public boolean IsPrefix(java.lang.String source,
java.lang.String prefix)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
IndexOutOfRangeException
public boolean IsPrefix(java.lang.String source,
java.lang.String prefix,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public static boolean IsSortable(char ch)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
IndexOutOfRangeException
public static boolean IsSortable(Rune value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
public static boolean IsSortable(java.lang.String text)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
IndexOutOfRangeException
public boolean IsSuffix(java.lang.String source,
java.lang.String suffix)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
IndexOutOfRangeException
public boolean IsSuffix(java.lang.String source,
java.lang.String suffix,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public int LastIndexOf(java.lang.String source,
char value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int LastIndexOf(java.lang.String source,
char value,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
UnreachableException
public int LastIndexOf(java.lang.String source,
char value,
int startIndex)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int LastIndexOf(java.lang.String source,
char value,
int startIndex,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int LastIndexOf(java.lang.String source,
char value,
int startIndex,
int count)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int LastIndexOf(java.lang.String source,
char value,
int startIndex,
int count,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
UnreachableException
public int LastIndexOf(java.lang.String source,
java.lang.String value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int LastIndexOf(java.lang.String source,
java.lang.String value,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
UnreachableException
public int LastIndexOf(java.lang.String source,
java.lang.String value,
int startIndex)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int LastIndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int LastIndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
int count)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
UnreachableException,
IndexOutOfRangeException
public int LastIndexOf(java.lang.String source,
java.lang.String value,
int startIndex,
int count,
CompareOptions options)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ArgumentNullException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
UnreachableException
public void setJCOInstance(JCObject instance)
setJCOInstance in class NetObject