Package io.deephaven.json
Class CharValue
Processes a JSON value as a
char
.-
Nested Class Summary
Nested classes/interfaces inherited from class io.deephaven.json.ValueSingleValueBase
ValueSingleValueBase.BuilderSpecial<T,
V extends ValueSingleValueBase<T>, B extends ValueSingleValueBase.BuilderSpecial<T, V, B>> Nested classes/interfaces inherited from class io.deephaven.json.Value
Value.Visitor<T>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionThe allowed types.static CharValue.Builder
builder()
static CharValue
standard()
The standard char options.static CharValue
strict()
The strict char options.final <T> T
walk
(Value.Visitor<T> visitor) Methods inherited from class io.deephaven.json.ValueSingleValueBase
onMissing, onNull
Methods inherited from class io.deephaven.json.Value
allowMissing, array, field, skip
-
Constructor Details
-
CharValue
public CharValue()
-
-
Method Details
-
builder
-
standard
The standard char options. Allows missing and acceptsJsonValueTypes.stringOrNull()
.- Returns:
- the standard char options
-
strict
The strict char options. Disallows missing and acceptsJsonValueTypes.string()
.- Returns:
- the strict char options
-
allowedTypes
The allowed types. Must be a subset ofJsonValueTypes.stringOrNull()
. By default isJsonValueTypes.stringOrNull()
.- Specified by:
allowedTypes
in classValue
-
walk
-