Package org.h2.util.json
Class JSONValidationTarget
- java.lang.Object
-
- org.h2.util.json.JSONTarget<JSONItemType>
-
- org.h2.util.json.JSONValidationTarget
-
- Direct Known Subclasses:
JSONValidationTargetWithoutUniqueKeys
,JSONValidationTargetWithUniqueKeys
public abstract class JSONValidationTarget extends JSONTarget<JSONItemType>
JSON validation target.
-
-
Constructor Summary
Constructors Constructor Description JSONValidationTarget()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract JSONItemType
getResult()
Returns the result.-
Methods inherited from class org.h2.util.json.JSONTarget
endArray, endObject, isPropertyExpected, isValueSeparatorExpected, member, startArray, startObject, valueFalse, valueNull, valueNumber, valueString, valueTrue
-
-
-
-
Method Detail
-
getResult
public abstract JSONItemType getResult()
Description copied from class:JSONTarget
Returns the result.- Specified by:
getResult
in classJSONTarget<JSONItemType>
- Returns:
- JSON item type of the top-level item, may not return
JSONItemType.VALUE
-
-