public boolean getBoolean(String keyStr) {
SoyData valueData = get(keyStr);
if (valueData == null) {
throw new IllegalArgumentException("Missing key: " + keyStr);
}
return valueData.booleanValue();
}
/**
* Precondition: The specified key string is the path to an integer.
* Gets the integer at the specified key string.