Home
last modified time | relevance | path

Searched refs:ALLOW_MISSING_VALUES (Results 1 – 13 of 13) sorted by relevance

/external/jackson-core/src/test/java/com/fasterxml/jackson/core/json/async/
DAsyncMissingValuesInArrayTest.java35 cases.add(EnumSet.of(JsonReadFeature.ALLOW_MISSING_VALUES)); in getTestCases()
37 … cases.add(EnumSet.of(JsonReadFeature.ALLOW_MISSING_VALUES, JsonReadFeature.ALLOW_TRAILING_COMMA)); in getTestCases()
73 if (!features.contains(JsonReadFeature.ALLOW_MISSING_VALUES)) { in testArrayInnerComma()
95 if (!features.contains(JsonReadFeature.ALLOW_MISSING_VALUES)) { in testArrayLeadingComma()
131 } else if (features.contains(JsonReadFeature.ALLOW_MISSING_VALUES)) { in testArrayTrailingComma()
156 if (features.contains(JsonReadFeature.ALLOW_MISSING_VALUES) && in testArrayTrailingCommas()
161 } else if (features.contains(JsonReadFeature.ALLOW_MISSING_VALUES)) { in testArrayTrailingCommas()
187 if (features.contains(JsonReadFeature.ALLOW_MISSING_VALUES) && in testArrayTrailingCommasTriple()
193 } else if (features.contains(JsonReadFeature.ALLOW_MISSING_VALUES)) { in testArrayTrailingCommasTriple()
DAsyncMissingValuesInObjectTest.java35 cases.add(EnumSet.of(JsonReadFeature.ALLOW_MISSING_VALUES)); in getTestCases()
37 … cases.add(EnumSet.of(JsonReadFeature.ALLOW_MISSING_VALUES, JsonReadFeature.ALLOW_TRAILING_COMMA)); in getTestCases()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/read/
DTrailingCommasTest.java39 cases.add(new Object[]{mode, Arrays.asList(JsonReadFeature.ALLOW_MISSING_VALUES)}); in getTestCases()
41 cases.add(new Object[]{mode, Arrays.asList(JsonReadFeature.ALLOW_MISSING_VALUES, in getTestCases()
77 if (!features.contains(JsonReadFeature.ALLOW_MISSING_VALUES)) { in testArrayInnerComma()
99 if (!features.contains(JsonReadFeature.ALLOW_MISSING_VALUES)) { in testArrayLeadingComma()
135 } else if (features.contains(JsonReadFeature.ALLOW_MISSING_VALUES)) { in testArrayTrailingComma()
160 if (features.contains(JsonReadFeature.ALLOW_MISSING_VALUES) && in testArrayTrailingCommas()
165 } else if (features.contains(JsonReadFeature.ALLOW_MISSING_VALUES)) { in testArrayTrailingCommas()
191 if (features.contains(JsonReadFeature.ALLOW_MISSING_VALUES) && in testArrayTrailingCommasTriple()
197 } else if (features.contains(JsonReadFeature.ALLOW_MISSING_VALUES)) { in testArrayTrailingCommasTriple()
DArrayParsingTest.java113 .enable(JsonReadFeature.ALLOW_MISSING_VALUES) in _testMissingValueByEnablingFeature()
171 .enable(JsonReadFeature.ALLOW_MISSING_VALUES) in _testNotMissingValueByEnablingFeature()
DTrailingCommas616Test.java9 .enable(JsonReadFeature.ALLOW_MISSING_VALUES)
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DJsonReadFeature.java162 ALLOW_MISSING_VALUES(false, JsonParser.Feature.ALLOW_MISSING_VALUES), enumConstant
DUTF8DataInputJsonParser.java50 private final static int FEAT_MASK_ALLOW_MISSING = Feature.ALLOW_MISSING_VALUES.getMask();
DReaderBasedJsonParser.java32 private final static int FEAT_MASK_ALLOW_MISSING = Feature.ALLOW_MISSING_VALUES.getMask();
DUTF8StreamJsonParser.java30 private final static int FEAT_MASK_ALLOW_MISSING = Feature.ALLOW_MISSING_VALUES.getMask();
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/cfg/
DDeserializationConfigTest.java64 JsonReadFeature.ALLOW_MISSING_VALUES)); in testParserFeatures()
68 JsonReadFeature.ALLOW_MISSING_VALUES)); in testParserFeatures()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DJsonParser.java233 ALLOW_MISSING_VALUES(false), enumConstant
/external/jackson-core/release-notes/
DVERSION-2.x263 #117: Add `JsonParser.Feature.ALLOW_MISSING_VALUES` to support for missing values
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/async/
DNonBlockingJsonParser.java30 private final static int FEAT_MASK_ALLOW_MISSING = Feature.ALLOW_MISSING_VALUES.getMask();