in src/main/java/com/amazonaws/eclipse/simpleworkflow/asynchrony/common/PrimitiveTypeHelper.java [62:68]
public static String getToPrimitiveMethod(String primitive) {
String result = toPrimitiveMethods.get(primitive);
if (result == null) {
throw new IllegalArgumentException(primitive);
}
return result;
}