Uses of Class
org.h2.util.json.JSONItemType
-
Packages that use JSONItemType Package Description org.h2.expression.condition Condition expressions.org.h2.util.json Internal utility classes for JSON data type.org.h2.value Data type and value implementations. -
-
Uses of JSONItemType in org.h2.expression.condition
Fields in org.h2.expression.condition declared as JSONItemType Modifier and Type Field Description private JSONItemType
IsJsonPredicate. itemType
Constructors in org.h2.expression.condition with parameters of type JSONItemType Constructor Description IsJsonPredicate(Expression left, boolean not, boolean whenOperand, boolean withUniqueKeys, JSONItemType itemType)
-
Uses of JSONItemType in org.h2.util.json
Fields in org.h2.util.json declared as JSONItemType Modifier and Type Field Description private JSONItemType
JSONValidationTargetWithoutUniqueKeys. type
private JSONItemType
JSONValidationTargetWithUniqueKeys. type
Methods in org.h2.util.json that return JSONItemType Modifier and Type Method Description abstract JSONItemType
JSONValidationTarget. getResult()
JSONItemType
JSONValidationTargetWithoutUniqueKeys. getResult()
JSONItemType
JSONValidationTargetWithUniqueKeys. getResult()
static JSONItemType
JSONItemType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JSONItemType[]
JSONItemType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.h2.util.json with parameters of type JSONItemType Modifier and Type Method Description private void
JSONValidationTargetWithoutUniqueKeys. afterValue(JSONItemType type)
private void
JSONValidationTargetWithUniqueKeys. afterValue(JSONItemType type)
boolean
JSONItemType. includes(JSONItemType type)
Checks whether this item type includes the specified item type. -
Uses of JSONItemType in org.h2.value
Methods in org.h2.value that return JSONItemType Modifier and Type Method Description JSONItemType
ValueJson. getItemType()
Returns JSON item type.
-