Package system.xml
Class XmlConvert
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.xml.XmlConvert
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class XmlConvert extends NetObject
The base .NET class managing System.Xml.XmlConvert, System.Private.Xml, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Xml.XmlConvert
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.Xml, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51static java.lang.String
assemblyShortName
Assembly name: System.Private.Xmlstatic java.lang.String
className
Qualified class name: System.Xml.XmlConvertstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description XmlConvert()
XmlConvert(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static XmlConvert
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoXmlConvert
, a cast assert is made to check if types are compatible.static java.lang.String
DecodeName(java.lang.String name)
static java.lang.String
EncodeLocalName(java.lang.String name)
static java.lang.String
EncodeName(java.lang.String name)
static java.lang.String
EncodeNmToken(java.lang.String name)
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 boolean
IsNCNameChar(char ch)
static boolean
IsPublicIdChar(char ch)
static boolean
IsStartNCNameChar(char ch)
static boolean
IsWhitespaceChar(char ch)
static boolean
IsXmlChar(char ch)
static boolean
IsXmlSurrogatePair(char lowChar, char highChar)
void
setJCOInstance(JCObject instance)
static boolean
ToBoolean(java.lang.String s)
static byte
ToByte(java.lang.String s)
static char
ToChar(java.lang.String s)
static DateTime
ToDateTime(java.lang.String s)
static DateTime
ToDateTime(java.lang.String s, java.lang.String format)
static DateTime
ToDateTime(java.lang.String s, java.lang.String[] formats)
static DateTime
ToDateTime(java.lang.String dupParam0, JCORefOut dupParam1)
static DateTime
ToDateTime(java.lang.String s, XmlDateTimeSerializationMode dateTimeOption)
static DateTimeOffset
ToDateTimeOffset(java.lang.String s)
static DateTimeOffset
ToDateTimeOffset(java.lang.String s, java.lang.String format)
static DateTimeOffset
ToDateTimeOffset(java.lang.String s, java.lang.String[] formats)
static DateTimeOffset
ToDateTimeOffset(java.lang.String dupParam0, JCORefOut dupParam1)
static Decimal
ToDecimal(java.lang.String s)
static double
ToDouble(java.lang.String s)
static Guid
ToGuid(java.lang.String s)
static short
ToInt16(java.lang.String s)
static int
ToInt32(java.lang.String s)
static long
ToInt64(java.lang.String s)
static SByte
ToSByte(java.lang.String s)
static Single
ToSingle(java.lang.String s)
static java.lang.String
ToString(boolean value)
static java.lang.String
ToString(byte value)
static java.lang.String
ToString(char value)
static java.lang.String
ToString(double value)
static java.lang.String
ToString(int value)
static java.lang.String
ToString(long value)
static java.lang.String
ToString(short value)
static java.lang.String
ToString(DateTime value)
static java.lang.String
ToString(DateTimeOffset value)
static java.lang.String
ToString(DateTimeOffset value, java.lang.String format)
static java.lang.String
ToString(DateTime value, java.lang.String format)
static java.lang.String
ToString(DateTime value, XmlDateTimeSerializationMode dateTimeOption)
static java.lang.String
ToString(Decimal value)
static java.lang.String
ToString(Guid value)
static java.lang.String
ToString(SByte value)
static java.lang.String
ToString(Single value)
static java.lang.String
ToString(TimeSpan value)
static java.lang.String
ToString(UInt16 value)
static java.lang.String
ToString(UInt32 value)
static java.lang.String
ToString(UInt64 value)
static TimeSpan
ToTimeSpan(java.lang.String s)
static UInt16
ToUInt16(java.lang.String s)
static UInt32
ToUInt32(java.lang.String s)
static UInt64
ToUInt64(java.lang.String s)
static java.lang.String
VerifyName(java.lang.String name)
static java.lang.String
VerifyNCName(java.lang.String name)
static java.lang.String
VerifyNMTOKEN(java.lang.String name)
static java.lang.String
VerifyPublicId(java.lang.String publicId)
static java.lang.String
VerifyTOKEN(java.lang.String token)
static java.lang.String
VerifyWhitespace(java.lang.String content)
static java.lang.String
VerifyXmlChars(java.lang.String content)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Private.Xml, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Private.Xml- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Xml.XmlConvert- 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 XmlConvert cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoXmlConvert
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
XmlConvert
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
IsNCNameChar
public static boolean IsNCNameChar(char ch) throws java.lang.Throwable, InvalidOperationException, ArgumentNullException, PlatformNotSupportedException, ArgumentException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentNullException
PlatformNotSupportedException
ArgumentException
-
IsPublicIdChar
public static boolean IsPublicIdChar(char ch) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
-
IsStartNCNameChar
public static boolean IsStartNCNameChar(char ch) throws java.lang.Throwable, InvalidOperationException, ArgumentNullException, PlatformNotSupportedException, ArgumentException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentNullException
PlatformNotSupportedException
ArgumentException
-
IsWhitespaceChar
public static boolean IsWhitespaceChar(char ch) throws java.lang.Throwable, InvalidOperationException, ArgumentNullException, PlatformNotSupportedException, ArgumentException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentNullException
PlatformNotSupportedException
ArgumentException
-
IsXmlChar
public static boolean IsXmlChar(char ch) throws java.lang.Throwable, InvalidOperationException, ArgumentNullException, PlatformNotSupportedException, ArgumentException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentNullException
PlatformNotSupportedException
ArgumentException
-
IsXmlSurrogatePair
public static boolean IsXmlSurrogatePair(char lowChar, char highChar) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
ToBoolean
public static boolean ToBoolean(java.lang.String s) throws java.lang.Throwable, IndexOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, NotSupportedException, ArgumentNullException, CultureNotFoundException, FormatException
-
ToByte
public static byte ToByte(java.lang.String s) throws java.lang.Throwable, OutOfMemoryException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
OutOfMemoryException
ArgumentNullException
ArgumentException
CultureNotFoundException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
ArrayTypeMismatchException
NotSupportedException
FormatException
OverflowException
-
ToChar
public static char ToChar(java.lang.String s) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, FormatException, IndexOutOfRangeException
-
ToDouble
public static double ToDouble(java.lang.String s) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, OutOfMemoryException, CultureNotFoundException, OverflowException, FormatException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
OutOfMemoryException
CultureNotFoundException
OverflowException
FormatException
-
ToInt16
public static short ToInt16(java.lang.String s) throws java.lang.Throwable, OutOfMemoryException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
OutOfMemoryException
ArgumentNullException
ArgumentException
CultureNotFoundException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
ArrayTypeMismatchException
NotSupportedException
FormatException
OverflowException
-
ToInt32
public static int ToInt32(java.lang.String s) throws java.lang.Throwable, OutOfMemoryException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
OutOfMemoryException
ArgumentNullException
ArgumentException
CultureNotFoundException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
ArrayTypeMismatchException
NotSupportedException
FormatException
OverflowException
-
ToInt64
public static long ToInt64(java.lang.String s) throws java.lang.Throwable, OutOfMemoryException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
OutOfMemoryException
ArgumentNullException
ArgumentException
CultureNotFoundException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
ArrayTypeMismatchException
NotSupportedException
FormatException
OverflowException
-
ToSByte
public static SByte ToSByte(java.lang.String s) throws java.lang.Throwable, OutOfMemoryException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
OutOfMemoryException
ArgumentNullException
ArgumentException
CultureNotFoundException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
ArrayTypeMismatchException
NotSupportedException
FormatException
OverflowException
-
ToSingle
public static Single ToSingle(java.lang.String s) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, OutOfMemoryException, CultureNotFoundException, OverflowException, FormatException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
OutOfMemoryException
CultureNotFoundException
OverflowException
FormatException
-
ToDateTime
public static DateTime ToDateTime(java.lang.String s, java.lang.String format) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, CultureNotFoundException, OverflowException, OutOfMemoryException, FormatException
-
ToDateTime
public static DateTime ToDateTime(java.lang.String s, java.lang.String[] formats) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, CultureNotFoundException, OverflowException, FormatException
-
ToDateTime
public static DateTime ToDateTime(java.lang.String dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, CultureNotFoundException, OverflowException, FormatException
-
ToDateTime
public static DateTime ToDateTime(java.lang.String s, XmlDateTimeSerializationMode dateTimeOption) throws java.lang.Throwable, NotSupportedException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, InvalidTimeZoneException, OverflowException, SecurityException
-
ToDateTime
public static DateTime ToDateTime(java.lang.String s) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, IndexOutOfRangeException, OverflowException, FormatException
-
ToDateTimeOffset
public static DateTimeOffset ToDateTimeOffset(java.lang.String s, java.lang.String format) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, CultureNotFoundException, OverflowException, OutOfMemoryException, FormatException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
CultureNotFoundException
OverflowException
OutOfMemoryException
FormatException
-
ToDateTimeOffset
public static DateTimeOffset ToDateTimeOffset(java.lang.String s, java.lang.String[] formats) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, CultureNotFoundException, OverflowException, FormatException
-
ToDateTimeOffset
public static DateTimeOffset ToDateTimeOffset(java.lang.String dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, CultureNotFoundException, OverflowException, FormatException
-
ToDateTimeOffset
public static DateTimeOffset ToDateTimeOffset(java.lang.String s) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException, InvalidTimeZoneException, OverflowException, SecurityException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
FormatException
InvalidTimeZoneException
OverflowException
SecurityException
-
ToDecimal
public static Decimal ToDecimal(java.lang.String s) throws java.lang.Throwable, OutOfMemoryException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, OverflowException
-
ToGuid
public static Guid ToGuid(java.lang.String s) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, OverflowException, FormatException
-
DecodeName
public static java.lang.String DecodeName(java.lang.String name) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotImplementedException, RegexMatchTimeoutException, ArgumentNullException, FormatException, ArrayTypeMismatchException, OutOfMemoryException
-
EncodeLocalName
public static java.lang.String EncodeLocalName(java.lang.String name) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, OutOfMemoryException, OverflowException, FormatException
-
EncodeName
public static java.lang.String EncodeName(java.lang.String name) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, OutOfMemoryException, OverflowException, FormatException
-
EncodeNmToken
public static java.lang.String EncodeNmToken(java.lang.String name) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, OutOfMemoryException, OverflowException, FormatException
-
ToString
public static java.lang.String ToString(boolean value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
ToString
public static java.lang.String ToString(byte value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, InvalidOperationException, ArgumentNullException, ArrayTypeMismatchException, ArgumentOutOfRangeException
-
ToString
public static java.lang.String ToString(char value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
ToString
public static java.lang.String ToString(double value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentNullException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, FormatException
-
ToString
public static java.lang.String ToString(short value) throws java.lang.Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, ArgumentNullException, ArrayTypeMismatchException
-
ToString
public static java.lang.String ToString(int value) throws java.lang.Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, ArgumentNullException, ArrayTypeMismatchException
-
ToString
public static java.lang.String ToString(long value) throws java.lang.Throwable, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException, FormatException, ArrayTypeMismatchException
-
ToString
public static java.lang.String ToString(SByte value) throws java.lang.Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, ArgumentNullException, ArrayTypeMismatchException
-
ToString
public static java.lang.String ToString(Single value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, ArgumentNullException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, FormatException
-
ToString
public static java.lang.String ToString(DateTime value, java.lang.String format) throws java.lang.Throwable, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, FormatException, IndexOutOfRangeException, CultureNotFoundException, NotSupportedException, OverflowException
-
ToString
public static java.lang.String ToString(DateTime value, XmlDateTimeSerializationMode dateTimeOption) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, InvalidTimeZoneException, SecurityException, UnauthorizedAccessException, IOException, OverflowException, IndexOutOfRangeException, FormatException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
InvalidTimeZoneException
SecurityException
UnauthorizedAccessException
IOException
OverflowException
IndexOutOfRangeException
FormatException
-
ToString
public static java.lang.String ToString(DateTime value) throws java.lang.Throwable, PlatformNotSupportedException, OutOfMemoryException, IndexOutOfRangeException, ArgumentException, ArgumentOutOfRangeException, FormatException, InvalidOperationException, CultureNotFoundException, NotSupportedException, OverflowException
-
ToString
public static java.lang.String ToString(DateTimeOffset value, java.lang.String format) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentNullException, FormatException, SecurityException, OverflowException, CultureNotFoundException, NotSupportedException
-
ToString
public static java.lang.String ToString(DateTimeOffset value) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, OverflowException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
PlatformNotSupportedException
OverflowException
-
ToString
public static java.lang.String ToString(Decimal value) throws java.lang.Throwable, OutOfMemoryException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, ArrayTypeMismatchException
-
ToString
public static java.lang.String ToString(Guid value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
ToString
public static java.lang.String ToString(TimeSpan value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArgumentNullException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
ToString
public static java.lang.String ToString(UInt16 value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, InvalidOperationException, ArgumentNullException, ArrayTypeMismatchException, ArgumentOutOfRangeException
-
ToString
public static java.lang.String ToString(UInt32 value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, InvalidOperationException, ArgumentNullException, ArrayTypeMismatchException, ArgumentOutOfRangeException
-
ToString
public static java.lang.String ToString(UInt64 value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, InvalidOperationException, IndexOutOfRangeException, FormatException, ArgumentNullException, ArrayTypeMismatchException, ArgumentOutOfRangeException
-
VerifyName
public static java.lang.String VerifyName(java.lang.String name) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, OutOfMemoryException
-
VerifyNCName
public static java.lang.String VerifyNCName(java.lang.String name) throws java.lang.Throwable, ArgumentNullException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, FormatException
-
VerifyNMTOKEN
public static java.lang.String VerifyNMTOKEN(java.lang.String name) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException
-
VerifyPublicId
public static java.lang.String VerifyPublicId(java.lang.String publicId) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, UnreachableException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
UnreachableException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
VerifyTOKEN
public static java.lang.String VerifyTOKEN(java.lang.String token) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, NotSupportedException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException, OutOfMemoryException, XmlException
-
VerifyWhitespace
public static java.lang.String VerifyWhitespace(java.lang.String content) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, UnreachableException, IndexOutOfRangeException, FormatException, OutOfMemoryException, XmlException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
UnreachableException
IndexOutOfRangeException
FormatException
OutOfMemoryException
XmlException
-
VerifyXmlChars
public static java.lang.String VerifyXmlChars(java.lang.String content) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException
-
ToTimeSpan
public static TimeSpan ToTimeSpan(java.lang.String s) throws java.lang.Throwable, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, FormatException
-
ToUInt16
public static UInt16 ToUInt16(java.lang.String s) throws java.lang.Throwable, OutOfMemoryException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
OutOfMemoryException
ArgumentNullException
ArgumentException
CultureNotFoundException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
ArrayTypeMismatchException
NotSupportedException
FormatException
OverflowException
-
ToUInt32
public static UInt32 ToUInt32(java.lang.String s) throws java.lang.Throwable, OutOfMemoryException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
OutOfMemoryException
ArgumentNullException
ArgumentException
CultureNotFoundException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
ArrayTypeMismatchException
NotSupportedException
FormatException
OverflowException
-
ToUInt64
public static UInt64 ToUInt64(java.lang.String s) throws java.lang.Throwable, OutOfMemoryException, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
OutOfMemoryException
ArgumentNullException
ArgumentException
CultureNotFoundException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
ArrayTypeMismatchException
NotSupportedException
FormatException
OverflowException
-
-