DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | List of all members
Deveel.Data.Sql.Tables.RawTableInfo.RawRowItem Class Reference
Inheritance diagram for Deveel.Data.Sql.Tables.RawTableInfo.RawRowItem:

Public Member Functions

 RawRowItem (int[] values)
 
int CompareTo (RawRowItem other)
 

Properties

int[] RowValues [get, private set]
 

Detailed Description

Definition at line 269 of file RawTableInfo.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Tables.RawTableInfo.RawRowItem.RawRowItem ( int[]  values)
inline

Definition at line 270 of file RawTableInfo.cs.

270  {
271  RowValues = values;
272  }

Member Function Documentation

int Deveel.Data.Sql.Tables.RawTableInfo.RawRowItem.CompareTo ( RawRowItem  other)
inline

Definition at line 276 of file RawTableInfo.cs.

276  {
277  int size = RowValues.Length;
278  for (int i = 0; i < size; ++i) {
279  int v1 = RowValues[i];
280  int v2 = other.RowValues[i];
281  if (v1 != v2) {
282  return v1 - v2;
283  }
284  }
285  return 0;
286  }

Property Documentation

int [] Deveel.Data.Sql.Tables.RawTableInfo.RawRowItem.RowValues
getprivate set

Definition at line 274 of file RawTableInfo.cs.


The documentation for this class was generated from the following file: