// A null value is the easiest case - just set the SimpleMetaValue's inner value to null.
simpleValueSupport.setValue(null);
return;
}
// String value is non-null, so we can massage it into the proper type for the SimpleMetaValue's inner value.
SimpleMetaType simpleMetaType = simpleValueSupport.getMetaType();
Serializable innerValue;
if (simpleMetaType.equals(SimpleMetaType.STRING) || simpleMetaType.equals(SimpleMetaType.NAMEDOBJECT))
innerValue = propSimpleValue;
else if (simpleMetaType.equals(SimpleMetaType.BOOLEAN) || simpleMetaType.equals(SimpleMetaType.BOOLEAN_PRIMITIVE))
innerValue = Boolean.valueOf(propSimpleValue);
else if (simpleMetaType.equals(SimpleMetaType.BYTE) || simpleMetaType.equals(SimpleMetaType.BYTE_PRIMITIVE))
innerValue = Byte.valueOf(propSimpleValue);
else if (simpleMetaType.equals(SimpleMetaType.CHARACTER) || simpleMetaType.equals(SimpleMetaType.CHARACTER_PRIMITIVE))
{
if (propSimpleValue.length() != 1)
throw new IllegalStateException("String value '" + propSimpleValue + " cannot be converted to a character.");
innerValue = propSimpleValue.charAt(0);
}
else if (simpleMetaType.equals(SimpleMetaType.DOUBLE) || simpleMetaType.equals(SimpleMetaType.DOUBLE_PRIMITIVE))
innerValue = Double.valueOf(propSimpleValue);
else if (simpleMetaType.equals(SimpleMetaType.FLOAT) || simpleMetaType.equals(SimpleMetaType.FLOAT_PRIMITIVE))
innerValue = Float.valueOf(propSimpleValue);
else if (simpleMetaType.equals(SimpleMetaType.INTEGER) || simpleMetaType.equals(SimpleMetaType.INTEGER_PRIMITIVE))
innerValue = Integer.valueOf(propSimpleValue);
else if (simpleMetaType.equals(SimpleMetaType.LONG) || simpleMetaType.equals(SimpleMetaType.LONG_PRIMITIVE))
innerValue = Long.valueOf(propSimpleValue);
else if (simpleMetaType.equals(SimpleMetaType.SHORT) || simpleMetaType.equals(SimpleMetaType.SHORT_PRIMITIVE))
innerValue = Short.valueOf(propSimpleValue);
else
throw new IllegalStateException("Unsupported MetaType: " + simpleMetaType);
simpleValueSupport.setValue(innerValue);
}