IntArrayBoundedValidator

This a python binding to the C++ class Mantid::Kernel::ArrayBoundedValidator.

bases: mantid.kernel.IValidator

class mantid.kernel.IntArrayBoundedValidator((object)arg1)
__init__((object)arg1) → None
__init__( (object)self, (int)lowerBound, (int)upperBound) -> None :
A validator to ensure each value is in the given range
clearLower((IntArrayBoundedValidator)self) → None :

Clear any set lower bound

clearUpper((IntArrayBoundedValidator)self) → None :

Clear any set upper bound

hasLower((IntArrayBoundedValidator)self) → bool :

Returns true if a lower bound has been set

hasUpper((IntArrayBoundedValidator)self) → bool :

Returns true if an upper bound has been set

lower((IntArrayBoundedValidator)self) → int :

Returns the lower bound

setLower((IntArrayBoundedValidator)self, (int)lower) → None :

Sets the lower bound

setUpper((IntArrayBoundedValidator)self, (int)upper) → None :

Sets the upper bound

upper((IntArrayBoundedValidator)self) → int :

Returns the upper bound