public static String getPrimitive()

in src/main/java/com/amazonaws/eclipse/simpleworkflow/asynchrony/common/PrimitiveTypeHelper.java [54:60]


    public static String getPrimitive(String wrapper) {
        String result = wrapperToPrimitive.get(wrapper);
        if (result == null) {
            throw new IllegalArgumentException(wrapper);
        }
        return result;
    }