Class JSONUtils


  • public final class JSONUtils
    extends Object
    • Method Detail

      • toJSON

        @NonNull
        public static org.json.JSONObject toJSON​(@NonNull
                                                 Map<?,​?> map)
                                          throws org.json.JSONException
        Throws:
        org.json.JSONException
      • toJSON

        @NonNull
        public static org.json.JSONArray toJSON​(@NonNull
                                                List<?> list)
                                         throws org.json.JSONException
        Throws:
        org.json.JSONException
      • toJSONString

        @NonNull
        public static String toJSONString​(@NonNull
                                          Date date)
      • toJSON

        @Nullable
        public static Object toJSON​(@Nullable
                                    Object val)
                             throws org.json.JSONException
        Throws:
        org.json.JSONException
      • fromJSON

        @NonNull
        public static Map<String,​Object> fromJSON​(@NonNull
                                                        org.json.JSONObject json)
                                                 throws org.json.JSONException
        Throws:
        org.json.JSONException
      • fromJSON

        @NonNull
        public static List<Object> fromJSON​(@NonNull
                                            org.json.JSONArray json)
                                     throws org.json.JSONException
        Throws:
        org.json.JSONException
      • toDate

        @Nullable
        public static Date toDate​(@Nullable
                                  String json)