* @throws PropertyException For an invalid property value.
*/
private PropertyValue createPropertyValue(final FObj fobj,
final String value) throws PropertyException {
final PropertyValue pv = standardParse(fobj, value);
if (pv.canEvalKeyword()) {
return pv;
}
if (pv.canEvalInteger()) {
final int integer = pv.evalInteger();
if (Font.Weight.isValidNumericWeight(integer)) {