StringArrayLengthValidator

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

bases: mantid.kernel.IValidator

class mantid.kernel.StringArrayLengthValidator((object)arg1)
__init__((object)arg1) → None
__init__( (object)arg1, (int)length) -> None :
Constructs a validator verifying that an array is of the exact length given
__init__( (object)arg1, (int)lenmin, (int)lenmax) -> None :
Constructs a validator verifying that the length of an array is within the range given
clearLength((StringArrayLengthValidator)arg1) → None :

Clears accepted length of an array

clearLengthMax((StringArrayLengthValidator)arg1) → None :

Set the accepted maximum length of an array

clearLengthMin((StringArrayLengthValidator)arg1) → None :

Set the accepted minimum length of an array

getLength((StringArrayLengthValidator)arg1) → int :

Returns the set fixed length

getMaxLength((StringArrayLengthValidator)arg1) → int :

Returns the set maximum length

getMinLength((StringArrayLengthValidator)arg1) → int :

Returns the set minimum length

hasLength((StringArrayLengthValidator)arg1) → bool :

Returns true if a single length has been set

hasMaxLength((StringArrayLengthValidator)arg1) → bool :

Returns true if a maximum length has been set

hasMinLength((StringArrayLengthValidator)arg1) → bool :

Returns true if a minimum length has been set

setLength((StringArrayLengthValidator)arg1, (int)arg2) → None :

Set the accepted length of an array

setLengthMax((StringArrayLengthValidator)arg1, (int)arg2) → None :

Set the accepted maximum length of an array

setLengthMin((StringArrayLengthValidator)arg1, (int)arg2) → None :

Set the accepted minimum length of an array