/// <summary>
 /// AnyListType class constructor
 /// </summary>
 public AnyListType()
 {
     this._resolveReferences = true;
     this._uniqueItems       = false;
     this._sorted            = false;
     this._sortDirection     = AnyListTypeSortDirection.Asc;
     this._allowNulls        = false;
     this._allowReferencess  = false;
 }
 /// <summary>
 /// NumListType class constructor
 /// </summary>
 public NumListType()
 {
     this._resolveReferences = true;
     this._uniqueItems       = false;
     this._sorted            = false;
     this._sortDirection     = AnyListTypeSortDirection.Asc;
     this._allowNulls        = false;
     this._allowReferencess  = false;
     this._quantEnum         = NumListTypeQuantEnum.EQ;
 }
 /// <summary>
 /// StrListType class constructor
 /// </summary>
 public StrListType()
 {
     this._dataTypeString    = DataTypeString_StypeEnum.@string;
     this._x_dataTypeString  = "string";
     this._resolveReferences = true;
     this._uniqueItems       = false;
     this._sorted            = false;
     this._sortDirection     = AnyListTypeSortDirection.Asc;
     this._allowNulls        = false;
     this._allowReferencess  = false;
 }
Beispiel #4
0
 /// <summary>
 /// IntegerListType class constructor
 /// </summary>
 public IntegerListType()
 {
     this._resolveReferences = true;
     this._uniqueItems       = false;
     this._sorted            = false;
     this._sortDirection     = AnyListTypeSortDirection.Asc;
     this._allowNulls        = false;
     this._allowReferencess  = false;
     this._dataTypeInteger   = DataTypeInteger_StypeEnum.integer;
     this._quantEnum         = IntegerListTypeQuantEnum.EQ;
 }
Beispiel #5
0
 /// <summary>
 /// BoolListType class constructor
 /// </summary>
 public BoolListType()
 {
     this._resolveReferences = true;
     this._uniqueItems       = false;
     this._sorted            = false;
     this._sortDirection     = AnyListTypeSortDirection.Asc;
     this._allowNulls        = false;
     this._allowReferencess  = false;
     this._not    = false;
     this._boolOp = BoolListTypeBoolOp.AND;
 }