@param val should be a string value to be checked for equality (case-insensitive) with one of the enum values for this enumeration @return the enumeration that matches the given string, or null if none match
(String val)
| 97 | * @return the enumeration that matches the given string, or null if none match |
| 98 | */ |
| 99 | public static Load getLoadType(String val) |
| 100 | { |
| 101 | return valueOf(val.toUpperCase()); |
| 102 | } |
| 103 | |
| 104 | |
| 105 | public double calcEncumberedMove(final double unencumberedMove) |
no test coverage detected