Package system.data.sqltypes
Class SqlBinary
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.ValueType
-
- system.data.sqltypes.SqlBinary
-
- All Implemented Interfaces:
IJCOBridgeReflected
,IXmlSerializable
public class SqlBinary extends ValueType implements IXmlSerializable
The base .NET class managing System.Data.SqlTypes.SqlBinary, System.Data.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.SqlTypes.SqlBinary
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.Data.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Data.Commonstatic java.lang.String
className
Qualified class name: System.Data.SqlTypes.SqlBinarystatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SqlBinary
Add(SqlBinary x, SqlBinary y)
static SqlBinary
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoSqlBinary
, a cast assert is made to check if types are compatible.int
CompareTo(NetObject value)
int
CompareTo(SqlBinary value)
static SqlBinary
Concat(SqlBinary x, SqlBinary y)
boolean
Equals(SqlBinary other)
static SqlBoolean
Equals(SqlBinary x, SqlBinary y)
boolean
getIsNull()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typeint
getLength()
byte[]
getValue()
static XmlQualifiedName
GetXsdType(XmlSchemaSet schemaSet)
static SqlBoolean
GreaterThan(SqlBinary x, SqlBinary y)
static SqlBoolean
GreaterThanOrEqual(SqlBinary x, SqlBinary y)
static SqlBoolean
LessThan(SqlBinary x, SqlBinary y)
static SqlBoolean
LessThanOrEqual(SqlBinary x, SqlBinary y)
static SqlBoolean
NotEquals(SqlBinary x, SqlBinary y)
void
setJCOInstance(JCObject instance)
SqlGuid
ToSqlGuid()
static SqlBinary
WrapBytes(byte[] bytes)
static SqlBinary
WrapBytes(JCORefOut dupParam0)
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToString
-
Methods inherited from interface system.xml.serialization.IXmlSerializable
GetSchema, ReadXml, WriteXml
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Data.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Data.Common- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Data.SqlTypes.SqlBinary- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SqlBinary
public SqlBinary(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
SqlBinary
public SqlBinary() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SqlBinary
public SqlBinary(byte[] value) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, NotSupportedException, ArrayTypeMismatchException, InvalidCastException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOAssemblyName
in interfaceIXmlSerializable
- Overrides:
getJCOAssemblyName
in classValueType
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOClassName
in interfaceIXmlSerializable
- Overrides:
getJCOClassName
in classValueType
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOObjectName
in interfaceIXmlSerializable
- Overrides:
getJCOObjectName
in classValueType
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Specified by:
getJCOInstance
in interfaceIXmlSerializable
- Overrides:
getJCOInstance
in classValueType
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classValueType
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Specified by:
getJCOType
in interfaceIXmlSerializable
- Overrides:
getJCOType
in classValueType
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static SqlBinary cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoSqlBinary
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
SqlBinary
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Equals
public boolean Equals(SqlBinary other) throws java.lang.Throwable, ArgumentException, InvalidOperationException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException
-
CompareTo
public int CompareTo(SqlBinary value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException
-
CompareTo
public int CompareTo(NetObject value) throws java.lang.Throwable, ArgumentException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException, FormatException
-
Add
public static SqlBinary Add(SqlBinary x, SqlBinary y) throws java.lang.Throwable, ArgumentException, InvalidOperationException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException
-
Concat
public static SqlBinary Concat(SqlBinary x, SqlBinary y) throws java.lang.Throwable, ArgumentException, InvalidOperationException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException
-
WrapBytes
public static SqlBinary WrapBytes(byte[] bytes) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
WrapBytes
public static SqlBinary WrapBytes(JCORefOut dupParam0) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Equals
public static SqlBoolean Equals(SqlBinary x, SqlBinary y) throws java.lang.Throwable, ArgumentException, InvalidOperationException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException
-
GreaterThan
public static SqlBoolean GreaterThan(SqlBinary x, SqlBinary y) throws java.lang.Throwable, ArgumentException, InvalidOperationException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException
-
GreaterThanOrEqual
public static SqlBoolean GreaterThanOrEqual(SqlBinary x, SqlBinary y) throws java.lang.Throwable, ArgumentException, InvalidOperationException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException
-
LessThan
public static SqlBoolean LessThan(SqlBinary x, SqlBinary y) throws java.lang.Throwable, ArgumentException, InvalidOperationException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException
-
LessThanOrEqual
public static SqlBoolean LessThanOrEqual(SqlBinary x, SqlBinary y) throws java.lang.Throwable, ArgumentException, InvalidOperationException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException
-
NotEquals
public static SqlBoolean NotEquals(SqlBinary x, SqlBinary y) throws java.lang.Throwable, ArgumentException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException
-
ToSqlGuid
public SqlGuid ToSqlGuid() throws java.lang.Throwable, ArgumentException, InvalidOperationException, SqlNullValueException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, RankException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException
-
GetXsdType
public static XmlQualifiedName GetXsdType(XmlSchemaSet schemaSet) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsNull
public boolean getIsNull() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getValue
public byte[] getValue() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, SqlNullValueException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, InvalidCastException
-
getLength
public int getLength() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, SqlNullValueException
-
-