Uses of Enum
org.skyscreamer.jsonassert.JSONCompareMode
Packages that use JSONCompareMode
-
Uses of JSONCompareMode in org.skyscreamer.jsonassert
Methods in org.skyscreamer.jsonassert that return JSONCompareModeModifier and TypeMethodDescriptionstatic JSONCompareModeReturns the enum constant of this type with the specified name.static JSONCompareMode[]JSONCompareMode.values()Returns an array containing the constants of this enum type, in the order they are declared.JSONCompareMode.withExtensible(boolean extensible) Get the equivalentJSONCompareModewith or without extensibility.JSONCompareMode.withStrictOrdering(boolean strictOrdering) Get the equivalentJSONCompareModewith or without strict ordering.Methods in org.skyscreamer.jsonassert with parameters of type JSONCompareModeModifier and TypeMethodDescriptionstatic voidJSONAssert.assertEquals(String message, String expectedStr, String actualStr, JSONCompareMode compareMode) Asserts that the JSONArray provided matches the expected string.static voidJSONAssert.assertEquals(String message, String expectedStr, org.json.JSONArray actual, JSONCompareMode compareMode) Asserts that the JSONArray provided matches the expected string.static voidJSONAssert.assertEquals(String message, String expectedStr, org.json.JSONObject actual, JSONCompareMode compareMode) Asserts that the JSONObject provided matches the expected string.static voidJSONAssert.assertEquals(String expectedStr, String actualStr, JSONCompareMode compareMode) Asserts that the JSONArray provided matches the expected string.static voidJSONAssert.assertEquals(String message, org.json.JSONArray expected, org.json.JSONArray actual, JSONCompareMode compareMode) Asserts that the JSONArray provided matches the expected JSONArray.static voidJSONAssert.assertEquals(String expectedStr, org.json.JSONArray actual, JSONCompareMode compareMode) Asserts that the JSONArray provided matches the expected string.static voidJSONAssert.assertEquals(String message, org.json.JSONObject expected, org.json.JSONObject actual, JSONCompareMode compareMode) Asserts that the JSONObject provided matches the expected JSONObject.static voidJSONAssert.assertEquals(String expectedStr, org.json.JSONObject actual, JSONCompareMode compareMode) Asserts that the JSONObject provided matches the expected string.static voidJSONAssert.assertEquals(org.json.JSONArray expected, org.json.JSONArray actual, JSONCompareMode compareMode) Asserts that the JSONArray provided matches the expected JSONArray.static voidJSONAssert.assertEquals(org.json.JSONObject expected, org.json.JSONObject actual, JSONCompareMode compareMode) Asserts that the JSONObject provided matches the expected JSONObject.static voidJSONAssert.assertNotEquals(String message, String expectedStr, String actualStr, JSONCompareMode compareMode) Asserts that the JSONArray provided does not match the expected string.static voidJSONAssert.assertNotEquals(String message, String expectedStr, org.json.JSONArray actual, JSONCompareMode compareMode) Asserts that the JSONArray provided does not match the expected string.static voidJSONAssert.assertNotEquals(String message, String expectedStr, org.json.JSONObject actual, JSONCompareMode compareMode) Asserts that the JSONObject provided does not match the expected string.static voidJSONAssert.assertNotEquals(String expectedStr, String actualStr, JSONCompareMode compareMode) Asserts that the JSONArray provided does not match the expected string.static voidJSONAssert.assertNotEquals(String message, org.json.JSONArray expected, org.json.JSONArray actual, JSONCompareMode compareMode) Asserts that the JSONArray provided does not match the expected JSONArray.static voidJSONAssert.assertNotEquals(String expectedStr, org.json.JSONArray actual, JSONCompareMode compareMode) Asserts that the JSONArray provided does not match the expected string.static voidJSONAssert.assertNotEquals(String message, org.json.JSONObject expected, org.json.JSONObject actual, JSONCompareMode compareMode) Asserts that the JSONObject provided does not match the expected JSONObject.static voidJSONAssert.assertNotEquals(String expectedStr, org.json.JSONObject actual, JSONCompareMode compareMode) Asserts that the JSONObject provided does not match the expected string.static voidJSONAssert.assertNotEquals(org.json.JSONArray expected, org.json.JSONArray actual, JSONCompareMode compareMode) Asserts that the JSONArray provided does not match the expected JSONArray.static voidJSONAssert.assertNotEquals(org.json.JSONObject expected, org.json.JSONObject actual, JSONCompareMode compareMode) Asserts that the JSONObject provided does not match the expected JSONObject.static JSONCompareResultJSONCompare.compareJSON(String expectedStr, String actualStr, JSONCompareMode mode) Compares JSON string provided to the expected JSON string, and returns the results of the comparison.static JSONCompareResultJSONCompare.compareJSON(org.json.JSONArray expected, org.json.JSONArray actual, JSONCompareMode mode) Compares JSONArray provided to the expected JSONArray, and returns the results of the comparison.static JSONCompareResultJSONCompare.compareJSON(org.json.JSONObject expected, org.json.JSONObject actual, JSONCompareMode mode) Compares JSONObject provided to the expected JSONObject, and returns the results of the comparison. -
Uses of JSONCompareMode in org.skyscreamer.jsonassert.comparator
Constructors in org.skyscreamer.jsonassert.comparator with parameters of type JSONCompareModeModifierConstructorDescriptionCreate new ArraySizeComparator.CustomComparator(JSONCompareMode mode, Customization... customizations)