Converts a String representation of an Flag into its numeric value
(String s)
| 62 | |
| 63 | /** Converts a String representation of an Flag into its numeric value */ |
| 64 | public static int |
| 65 | value(String s) { |
| 66 | return flags.getValue(s); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Indicates if a bit in the flags field is a flag or not. If it's part of |