Module io.helidon.data
Package io.helidon.data
Class Sort.BuilderBase<BUILDER extends Sort.BuilderBase<BUILDER,PROTOTYPE>,PROTOTYPE extends Sort>
java.lang.Object
io.helidon.data.Sort.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:
Sort.Builder
- Enclosing interface:
Sort
public abstract static class Sort.BuilderBase<BUILDER extends Sort.BuilderBase<BUILDER,PROTOTYPE>,PROTOTYPE extends Sort>
extends Object
implements Prototype.Builder<BUILDER,PROTOTYPE>
Fluent API builder base for
Sort
.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static class
Generated implementation of the prototype, can be extended by descendant prototype implementations. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddOrderBy
(Order orderBy) List
of query ordering rules.addOrderBy
(Consumer<Order.Builder> consumer) List
of query ordering rules.addOrderBy
(List<? extends Order> orderBy) List
of query ordering rules.Update this builder from an existing prototype instance.from
(Sort.BuilderBase<?, ?> builder) Update this builder from an existing prototype builder instance.orderBy()
List
of query ordering rules.List
of query ordering rules.protected void
Handles providers and decorators.toString()
protected void
Validates required properties.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface io.helidon.builder.api.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
-
orderBy
- Parameters:
orderBy
-List
of order definitions- Returns:
- updated builder instance
- See Also:
-
addOrderBy
- Parameters:
orderBy
-List
of order definitions- Returns:
- updated builder instance
- See Also:
-
addOrderBy
- Parameters:
orderBy
-List
of order definitions- Returns:
- updated builder instance
- See Also:
-
addOrderBy
- Parameters:
consumer
-List
of order definitions- Returns:
- updated builder instance
- See Also:
-
orderBy
- Returns:
- the order by
-
toString
-
preBuildPrototype
protected void preBuildPrototype()Handles providers and decorators. -
validatePrototype
protected void validatePrototype()Validates required properties.
-