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