Exemplo n.º 1
0
 public TermCondition(DateValue operand, IField field, uint? boost = null)
     : base(operand, field, boost)
 {
     if (field == null)
         throw new ArgumentNullException("field"); // Must specify field for non-string values
 }
Exemplo n.º 2
0
 public FieldCondition(DateValue operand, IField field = null)
     : base(operand, field)
 {
 }
Exemplo n.º 3
0
 public Range(DateValue min = null, DateValue max = null, bool minInclusive = false, bool maxInclusive = false)
     : this((IOperand)min, max, minInclusive, maxInclusive)
 {
 }
Exemplo n.º 4
0
 public Bucket(DateValue value)
     : this((IOperand)value)
 {
 }
Exemplo n.º 5
0
 public FieldCondition(DateValue operand, IField field = null)
     : base(operand, field)
 {
 }
Exemplo n.º 6
0
 public Bucket(DateValue value)
     : this((IOperand)value)
 {
 }