Added Utils.parseBoolean() method to parse 0/1 booleans.

Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
Jeffrey Han
2015-05-23 14:52:03 -04:00
parent 91b78b4add
commit fe8c6a6f02
3 changed files with 17 additions and 5 deletions

View File

@@ -691,4 +691,14 @@ public class Utils {
return null;
}
}
/**
* Parses the integer string argument as a boolean:
* {@code 1} is {@code true}, and all other values are {@code false}.
* @param s the {@code String} containing the boolean representation to be parsed
* @return the boolean represented by the string argument
*/
public static boolean parseBoolean(String s) {
return (Integer.parseInt(s) == 1);
}
}