Zdobądź boolean z Java String

String str = "true";
boolean boolean = Boolean.parseBoolean(str);
Wicked Weevil