Package system.globalization
Class CompareInfo
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.globalization.CompareInfo
-
- All Implemented Interfaces:
IJCOBridgeReflected
,IDeserializationCallback
public class CompareInfo extends NetObject implements IDeserializationCallback
The base .NET class managing System.Globalization.CompareInfo, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Globalization.CompareInfo
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.Globalization.CompareInfostatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description CompareInfo()
CompareInfo(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CompareInfo
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoCompareInfo
, 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 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
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, int startIndex)
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, char value, int startIndex, CompareOptions options)
int
IndexOf(java.lang.String source, char value, CompareOptions options)
int
IndexOf(java.lang.String source, java.lang.String value)
int
IndexOf(java.lang.String source, java.lang.String value, int startIndex)
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)
int
IndexOf(java.lang.String source, java.lang.String value, int startIndex, CompareOptions options)
int
IndexOf(java.lang.String source, java.lang.String value, 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(java.lang.String text)
static boolean
IsSortable(Rune value)
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, int startIndex)
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, char value, int startIndex, CompareOptions options)
int
LastIndexOf(java.lang.String source, char value, CompareOptions options)
int
LastIndexOf(java.lang.String source, java.lang.String value)
int
LastIndexOf(java.lang.String source, java.lang.String value, int startIndex)
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)
int
LastIndexOf(java.lang.String source, java.lang.String value, int startIndex, CompareOptions options)
int
LastIndexOf(java.lang.String source, java.lang.String value, CompareOptions options)
void
setJCOInstance(JCObject instance)
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToString
-
Methods inherited from interface system.runtime.serialization.IDeserializationCallback
OnDeserialization
-
-
-
-
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.Globalization.CompareInfo- 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 interfaceIDeserializationCallback
- 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 interfaceIDeserializationCallback
- 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 interfaceIDeserializationCallback
- 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 interfaceIDeserializationCallback
- 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 interfaceIDeserializationCallback
- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static CompareInfo cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoCompareInfo
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
CompareInfo
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
IsPrefix
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
-
IsPrefix
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
-
IsSortable
public static boolean IsSortable(char ch) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
IsSortable
public static boolean IsSortable(java.lang.String text) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException
-
IsSortable
public static boolean IsSortable(Rune value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
IsSuffix
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
-
IsSuffix
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
-
Compare
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
-
Compare
public 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
-
Compare
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
-
Compare
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
-
Compare
public int Compare(java.lang.String string1, java.lang.String string2, CompareOptions options) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
Compare
public int Compare(java.lang.String string1, java.lang.String string2) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
-
GetHashCode
public int GetHashCode(java.lang.String source, CompareOptions options) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ArgumentNullException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
IndexOf
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
-
IndexOf
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
-
IndexOf
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
-
IndexOf
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
-
IndexOf
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
-
IndexOf
public int IndexOf(java.lang.String source, char value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, UnreachableException, IndexOutOfRangeException
-
IndexOf
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
-
IndexOf
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
-
IndexOf
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
-
IndexOf
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
-
IndexOf
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
-
IndexOf
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
-
LastIndexOf
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
-
LastIndexOf
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
-
LastIndexOf
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
-
LastIndexOf
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
-
LastIndexOf
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
-
LastIndexOf
public int LastIndexOf(java.lang.String source, char value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, UnreachableException, IndexOutOfRangeException
-
LastIndexOf
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
-
LastIndexOf
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
-
LastIndexOf
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
-
LastIndexOf
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
-
LastIndexOf
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
-
LastIndexOf
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
-
GetCompareInfo
public static CompareInfo GetCompareInfo(int culture, Assembly assembly) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, FormatException, CultureNotFoundException, OutOfMemoryException, ExternalException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
FormatException
CultureNotFoundException
OutOfMemoryException
ExternalException
-
GetCompareInfo
public static CompareInfo GetCompareInfo(int culture) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
IndexOutOfRangeException
RankException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
ExternalException
-
GetCompareInfo
public 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
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
OutOfMemoryException
CultureNotFoundException
ExternalException
-
GetCompareInfo
public static CompareInfo GetCompareInfo(java.lang.String name) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, OutOfMemoryException, CultureNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
OutOfMemoryException
CultureNotFoundException
-
GetSortKey
public SortKey GetSortKey(java.lang.String source, CompareOptions options) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, ArrayTypeMismatchException, IndexOutOfRangeException, PlatformNotSupportedException
-
GetSortKey
public SortKey GetSortKey(java.lang.String source) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, ArrayTypeMismatchException, IndexOutOfRangeException, PlatformNotSupportedException
-
getLCID
public int getLCID() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentException, IndexOutOfRangeException, OutOfMemoryException, RankException, ArrayTypeMismatchException, CultureNotFoundException
-
getVersion
public SortVersion getVersion() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentException, OutOfMemoryException, CultureNotFoundException
-
getName
public java.lang.String getName() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
-
-