Class: InterMine::PathQuery::RangeConstraint

Inherits:
MultiValueConstraint show all
Defined in:
lib/intermine/query.rb

Direct Known Subclasses

TemplateRangeConstraint

Constant Summary collapse

VALID_OPS =
[
    "WITHIN", "OUTSIDE",
    "CONTAINS", "DOES NOT CONTAIN",
    "OVERLAPS", "DOES NOT OVERLAP"
]

Instance Attribute Summary

Attributes inherited from MultiValueConstraint

#values

Attributes included from Coded

#code, #op

Attributes included from PathFeature

#path

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from MultiValueConstraint

#to_elem

Methods included from AttributeConstraint

#coerce_value, #validate_value

Methods included from Coded

#to_elem

Class Method Details

.valid_opsObject



1367
1368
1369
# File 'lib/intermine/query.rb', line 1367

def self.valid_ops
    return VALID_OPS
end

Instance Method Details

#validateObject



1371
1372
1373
# File 'lib/intermine/query.rb', line 1371

def validate
    # no-op
end