com.polarion.alm.tracker.model.IPriorityEnumeration


METHODS
Modifiers and TypeNameDescription
IPriorityOpt getClosestStandardOpt(float) Tries to find closest standard priority option with lower value. Catches the case when value is lower than the lowest standard option.
IPriorityOpt getClosestStandardOpt(float,Object) Tries to find closest standard priority option with lower value. Catches the case when value is lower than the lowest standard option.

This method checks only the option definition for given controlValue (even if null).

IPriorityOpt getClosestStandardOpt(float,IPObject) Tries to find closest standard priority option with lower value. Catches the case when value is lower than the lowest standard option.

This method checks only the option definition applicable to given object.

If pobject is not specified then it acts as {@link #getClosestStandardOpt(float,Object)} with null control value.

IPriorityOpt wrapOption(float) Shortcut method, converts the float to string and calls the {@link #wrapOption(String)} .

The string conversion is done with the precision of three decimal digits (e.g. 99.999).

IPriorityOpt wrapOption(float,Object) Shortcut method, converts the float to string and calls the {@link #wrapOption(String,Object)} .

The string conversion is done with the precision of three decimal digits (e.g. 99.999).

IPriorityOpt wrapOption(float,IPObject) Shortcut method, converts the float to string and calls the {@link #wrapOption(String,IPObject)} .

The string conversion is done with the precision of three decimal digits (e.g. 99.999).


Back to Index