MCPcopy Index your code
hub / github.com/davidgiven/luje / Boolean

Method Boolean

lib/java/lang/Boolean.java:69–71  ·  view source on GitHub ↗

Constructs a new Boolean with its boolean value specified by string. If string is not null and is equal to "true" using a non-case sensitive comparison, the result will be a Boolean representing the primitive value true, otherwise it will be a Boolean represen

(String string)

Source from the content-addressed store, hash-verified

67 * the string representing a boolean value.
68 */
69 public Boolean(String string) {
70 this(parseBoolean(string));
71 }
72
73 /**
74 * Constructs a new {@code Boolean} with the specified primitive boolean

Callers

nothing calls this directly

Calls 1

parseBooleanMethod · 0.95

Tested by

no test coverage detected