Package org.h2.util.json
Class JSONValidationTargetWithoutUniqueKeys
- java.lang.Object
-
- org.h2.util.json.JSONTarget<JSONItemType>
-
- org.h2.util.json.JSONValidationTarget
-
- org.h2.util.json.JSONValidationTargetWithoutUniqueKeys
-
public final class JSONValidationTargetWithoutUniqueKeys extends JSONValidationTarget
JSON validation target without unique keys.
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
afterName
private static byte
ARRAY
private boolean
needSeparator
private static byte
OBJECT
private ByteStack
stack
private JSONItemType
type
-
Constructor Summary
Constructors Constructor Description JSONValidationTargetWithoutUniqueKeys()
Creates new instance of JSON validation target without unique keys.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private void
afterValue(JSONItemType type)
private void
beforeValue()
void
endArray()
End of the current array.void
endObject()
End of the current object.JSONItemType
getResult()
Returns the result.boolean
isPropertyExpected()
Returns whether member's name or the end of the current object is expected.boolean
isValueSeparatorExpected()
Returns whether value separator expected before the next member or value.void
member(java.lang.String name)
Name of a member.void
startArray()
Start of an array.void
startObject()
Start of an object.void
valueFalse()
Parse "false".void
valueNull()
Parse "null".void
valueNumber(java.math.BigDecimal number)
A number value.void
valueString(java.lang.String string)
A string value.void
valueTrue()
Parse "true".
-
-
-
Field Detail
-
OBJECT
private static final byte OBJECT
- See Also:
- Constant Field Values
-
ARRAY
private static final byte ARRAY
- See Also:
- Constant Field Values
-
type
private JSONItemType type
-
stack
private final ByteStack stack
-
needSeparator
private boolean needSeparator
-
afterName
private boolean afterName
-
-
Method Detail
-
startObject
public void startObject()
Description copied from class:JSONTarget
Start of an object.- Specified by:
startObject
in classJSONTarget<JSONItemType>
-
endObject
public void endObject()
Description copied from class:JSONTarget
End of the current object.- Specified by:
endObject
in classJSONTarget<JSONItemType>
-
startArray
public void startArray()
Description copied from class:JSONTarget
Start of an array.- Specified by:
startArray
in classJSONTarget<JSONItemType>
-
endArray
public void endArray()
Description copied from class:JSONTarget
End of the current array.- Specified by:
endArray
in classJSONTarget<JSONItemType>
-
member
public void member(java.lang.String name)
Description copied from class:JSONTarget
Name of a member.- Specified by:
member
in classJSONTarget<JSONItemType>
- Parameters:
name
- the name
-
valueNull
public void valueNull()
Description copied from class:JSONTarget
Parse "null".null
value.- Specified by:
valueNull
in classJSONTarget<JSONItemType>
-
valueFalse
public void valueFalse()
Description copied from class:JSONTarget
Parse "false".false
value.- Specified by:
valueFalse
in classJSONTarget<JSONItemType>
-
valueTrue
public void valueTrue()
Description copied from class:JSONTarget
Parse "true".true
value.- Specified by:
valueTrue
in classJSONTarget<JSONItemType>
-
valueNumber
public void valueNumber(java.math.BigDecimal number)
Description copied from class:JSONTarget
A number value.- Specified by:
valueNumber
in classJSONTarget<JSONItemType>
- Parameters:
number
- the number
-
valueString
public void valueString(java.lang.String string)
Description copied from class:JSONTarget
A string value.- Specified by:
valueString
in classJSONTarget<JSONItemType>
- Parameters:
string
- the string
-
beforeValue
private void beforeValue()
-
afterValue
private void afterValue(JSONItemType type)
-
isPropertyExpected
public boolean isPropertyExpected()
Description copied from class:JSONTarget
Returns whether member's name or the end of the current object is expected.- Specified by:
isPropertyExpected
in classJSONTarget<JSONItemType>
- Returns:
true
if it is,false
otherwise
-
isValueSeparatorExpected
public boolean isValueSeparatorExpected()
Description copied from class:JSONTarget
Returns whether value separator expected before the next member or value.- Specified by:
isValueSeparatorExpected
in classJSONTarget<JSONItemType>
- Returns:
true
if it is,false
otherwise
-
getResult
public JSONItemType getResult()
Description copied from class:JSONTarget
Returns the result.- Specified by:
getResult
in classJSONValidationTarget
- Returns:
- JSON item type of the top-level item, may not return
JSONItemType.VALUE
-
-