()
| 42 | } |
| 43 | |
| 44 | @Override |
| 45 | public String toString() { |
| 46 | final StringBuilder sb = new StringBuilder(name()); |
| 47 | final Object v = value(); |
| 48 | if(v != null && !v.toString().isEmpty()) sb.append('=').append(v); |
| 49 | return sb.toString(); |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Returns a string representation of the option with the specified argument. |