Class SchemaString.BuilderBase<BUILDER extends SchemaString.BuilderBase<BUILDER, PROTOTYPE>, PROTOTYPE extends SchemaString>
java.lang.Object
io.helidon.json.schema.SchemaItem.BuilderBase<BUILDER, PROTOTYPE>
io.helidon.json.schema.SchemaString.BuilderBase<BUILDER, PROTOTYPE>
- Type Parameters:
BUILDER- type of the builder extending this abstract builderPROTOTYPE- type of the prototype interface that would be built byPrototype.Builder.buildPrototype()
- All Implemented Interfaces:
Prototype.Builder<BUILDER, PROTOTYPE>
- Direct Known Subclasses:
SchemaString.Builder
- Enclosing interface:
SchemaString
public abstract static class SchemaString.BuilderBase<BUILDER extends SchemaString.BuilderBase<BUILDER, PROTOTYPE>, PROTOTYPE extends SchemaString>
extends SchemaItem.BuilderBase<BUILDER, PROTOTYPE>
implements Prototype.Builder<BUILDER, PROTOTYPE>
Fluent API builder base for
SchemaString.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations.Nested classes/interfaces inherited from class SchemaItem.BuilderBase
SchemaItem.BuilderBase.SchemaItemImplModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionClear existing value of maxLength.Clear existing value of minLength.Clear existing value of pattern.from(SchemaString prototype) Update this builder from an existing prototype instance.from(SchemaString.BuilderBase<?, ?> builder) Update this builder from an existing prototype builder instance.Maximum length of the string.maxLength(long maxLength) Maximum length of the string.Minimum length of the string.minLength(long minLength) Minimum length of the string.pattern()String pattern to follow.String pattern to follow.protected voidHandles providers and decorators.toString()protected voidValidates required properties.Methods inherited from class SchemaItem.BuilderBase
clearDescription, clearTitle, description, description, from, from, required, required, title, titleModifier and TypeMethodDescriptionClear existing value of description.Clear existing value of title.Description of the item.description(String description) Description of the item.from(SchemaItem prototype) Update this builder from an existing prototype instance.from(SchemaItem.BuilderBase<?, ?> builder) Update this builder from an existing prototype builder instance.booleanrequired()Used in the object properties to mark required property.required(boolean required) Used in the object properties to mark required property.title()Title of the item.Title of the item.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Prototype.Builder
buildPrototype, self
-
Constructor Details
-
BuilderBase
protected BuilderBase()Protected to support extensibility.
-
-
Method Details
-
from
Update this builder from an existing prototype instance. This method disables automatic service discovery.- Parameters:
prototype- existing prototype to update this builder from- Returns:
- updated builder instance
-
from
Update this builder from an existing prototype builder instance.- Parameters:
builder- existing builder prototype to update this builder from- Returns:
- updated builder instance
-
clearMaxLength
Clear existing value of maxLength.- Returns:
- updated builder instance
- See Also:
-
maxLength
Maximum length of the string.- Parameters:
maxLength- maximum string length- Returns:
- updated builder instance
- See Also:
-
clearMinLength
Clear existing value of minLength.- Returns:
- updated builder instance
- See Also:
-
minLength
Minimum length of the string.- Parameters:
minLength- minimum string length- Returns:
- updated builder instance
- See Also:
-
clearPattern
Clear existing value of pattern.- Returns:
- updated builder instance
- See Also:
-
pattern
-
maxLength
-
minLength
-
pattern
-
toString
- Overrides:
toStringin classSchemaItem.BuilderBase<BUILDER extends SchemaString.BuilderBase<BUILDER, PROTOTYPE>, PROTOTYPE extends SchemaString>
-
preBuildPrototype
protected void preBuildPrototype()Handles providers and decorators.- Overrides:
preBuildPrototypein classSchemaItem.BuilderBase<BUILDER extends SchemaString.BuilderBase<BUILDER, PROTOTYPE>, PROTOTYPE extends SchemaString>
-
validatePrototype
protected void validatePrototype()Validates required properties.- Overrides:
validatePrototypein classSchemaItem.BuilderBase<BUILDER extends SchemaString.BuilderBase<BUILDER, PROTOTYPE>, PROTOTYPE extends SchemaString>
-