|
int IComparable. | CompareTo (object obj) |
|
int IComparable< ISqlObject >. | CompareTo (ISqlObject other) |
|
void ISerializable. | GetData (SerializeData data) |
|
bool ISqlObject. | IsComparableTo (ISqlObject other) |
| Checks if the current object is comparable with the given one. More...
|
|
override bool | Equals (object obj) |
|
override int | GetHashCode () |
|
TypeCode IConvertible. | GetTypeCode () |
|
bool IConvertible. | ToBoolean (IFormatProvider provider) |
|
char IConvertible. | ToChar (IFormatProvider provider) |
|
sbyte IConvertible. | ToSByte (IFormatProvider provider) |
|
byte IConvertible. | ToByte (IFormatProvider provider) |
|
short IConvertible. | ToInt16 (IFormatProvider provider) |
|
ushort IConvertible. | ToUInt16 (IFormatProvider provider) |
|
int IConvertible. | ToInt32 (IFormatProvider provider) |
|
uint IConvertible. | ToUInt32 (IFormatProvider provider) |
|
long IConvertible. | ToInt64 (IFormatProvider provider) |
|
ulong IConvertible. | ToUInt64 (IFormatProvider provider) |
|
float IConvertible. | ToSingle (IFormatProvider provider) |
|
double IConvertible. | ToDouble (IFormatProvider provider) |
|
decimal IConvertible. | ToDecimal (IFormatProvider provider) |
|
DateTime IConvertible. | ToDateTime (IFormatProvider provider) |
|
string IConvertible. | ToString (IFormatProvider provider) |
|
object IConvertible. | ToType (Type conversionType, IFormatProvider provider) |
|
override string | ToString () |
|
|
bool | IsNull [get] |
|
bool | IsNull [get] |
| Gets a boolean value indicating if the object is NULL . More...
|
|
Definition at line 23 of file SqlNull.cs.
Deveel.Data.Sql.Objects.SqlNull.SqlNull |
( |
ObjectData |
data | ) |
|
|
inlineprivate |
int IComparable. Deveel.Data.Sql.Objects.SqlNull.CompareTo |
( |
object |
obj | ) |
|
|
inline |
Definition at line 29 of file SqlNull.cs.
30 return (
this as ISqlObject).CompareTo((ISqlObject) obj);
Definition at line 33 of file SqlNull.cs.
34 throw new NotSupportedException();
override bool Deveel.Data.Sql.Objects.SqlNull.Equals |
( |
object |
obj | ) |
|
|
inline |
Definition at line 48 of file SqlNull.cs.
51 if (obj is ISqlObject)
52 return ((ISqlObject) obj).IsNull;
void ISerializable. Deveel.Data.Sql.Objects.SqlNull.GetData |
( |
SerializeData |
data | ) |
|
|
inline |
override int Deveel.Data.Sql.Objects.SqlNull.GetHashCode |
( |
| ) |
|
|
inline |
TypeCode IConvertible. Deveel.Data.Sql.Objects.SqlNull.GetTypeCode |
( |
| ) |
|
|
inline |
Definition at line 74 of file SqlNull.cs.
75 return TypeCode.Object;
bool ISqlObject. Deveel.Data.Sql.Objects.SqlNull.IsComparableTo |
( |
ISqlObject |
other | ) |
|
|
inline |
Checks if the current object is comparable with the given one.
- Parameters
-
- Returns
- Returns
true
if the current object is comparable with the given one, false
otherwise.
Implements Deveel.Data.Sql.Objects.ISqlObject.
Definition at line 44 of file SqlNull.cs.
Definition at line 61 of file SqlNull.cs.
64 if (b == null || b.IsNull)
override bool Equals(object obj)
bool IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToBoolean |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 78 of file SqlNull.cs.
79 throw new InvalidCastException();
byte IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToByte |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 90 of file SqlNull.cs.
91 throw new InvalidCastException();
char IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToChar |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 82 of file SqlNull.cs.
83 throw new InvalidCastException();
DateTime IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToDateTime |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 130 of file SqlNull.cs.
131 throw new InvalidCastException();
decimal IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToDecimal |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 126 of file SqlNull.cs.
127 throw new InvalidCastException();
double IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToDouble |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 122 of file SqlNull.cs.
123 throw new InvalidCastException();
short IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToInt16 |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 94 of file SqlNull.cs.
95 throw new InvalidCastException();
int IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToInt32 |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 102 of file SqlNull.cs.
103 throw new InvalidCastException();
long IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToInt64 |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 110 of file SqlNull.cs.
111 throw new InvalidCastException();
sbyte IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToSByte |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 86 of file SqlNull.cs.
87 throw new InvalidCastException();
float IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToSingle |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 118 of file SqlNull.cs.
119 throw new InvalidCastException();
string IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToString |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 134 of file SqlNull.cs.
135 throw new InvalidCastException();
override string Deveel.Data.Sql.Objects.SqlNull.ToString |
( |
| ) |
|
|
inline |
object IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToType |
( |
Type |
conversionType, |
|
|
IFormatProvider |
provider |
|
) |
| |
|
inline |
Definition at line 138 of file SqlNull.cs.
139 throw new InvalidCastException();
ushort IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToUInt16 |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 98 of file SqlNull.cs.
99 throw new InvalidCastException();
uint IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToUInt32 |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 106 of file SqlNull.cs.
107 throw new InvalidCastException();
ulong IConvertible. Deveel.Data.Sql.Objects.SqlNull.ToUInt64 |
( |
IFormatProvider |
provider | ) |
|
|
inline |
Definition at line 114 of file SqlNull.cs.
115 throw new InvalidCastException();
readonly SqlNull Deveel.Data.Sql.Objects.SqlNull.Value = new SqlNull() |
|
static |
bool Deveel.Data.Sql.Objects.SqlNull.IsNull |
|
get |
The documentation for this struct was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb/Deveel.Data.Sql.Objects/SqlNull.cs