class SugarCane::ThresholdCheck::UnavailableValue

Null object for all cases when the value to be compared against cannot be read.

Public Instance Methods

<(_) click to toggle source
# File lib/sugarcane/threshold_check.rb, line 74
def <(_); false; end
<=(_) click to toggle source
# File lib/sugarcane/threshold_check.rb, line 76
def <=(_); false; end
>(_) click to toggle source
# File lib/sugarcane/threshold_check.rb, line 75
def >(_); false; end
>=(_) click to toggle source
# File lib/sugarcane/threshold_check.rb, line 77
def >=(_); false; end
real?() click to toggle source
# File lib/sugarcane/threshold_check.rb, line 79
def real?; false; end
to_s() click to toggle source
# File lib/sugarcane/threshold_check.rb, line 78
def to_s; 'unavailable'; end