Class ModelSerializer.Builder
java.lang.Object
software.amazon.smithy.model.shapes.ModelSerializer.Builder
- All Implemented Interfaces:
SmithyBuilder<ModelSerializer>
- Enclosing class:
- ModelSerializer
public static final class ModelSerializer.Builder
extends Object
implements SmithyBuilder<ModelSerializer>
Builder used to create
ModelSerializer
.-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Creates an immutable object that is created from the properties that have been set on the builder.includePrelude
(boolean includePrelude) Enables or disables including the prelude in the serialized model.metadataFilter
(Predicate<String> metadataFilter) Predicate that determines if a metadata is serialized.shapeFilter
(Predicate<Shape> shapeFilter) Predicate that determines if a shape and its traits are serialized.traitFilter
(Predicate<Trait> traitFilter) Sets a predicate that can be used to filter trait values from appearing in the serialized model.Sets the IDL version to serialize.
-
Method Details
-
metadataFilter
Predicate that determines if a metadata is serialized.- Parameters:
metadataFilter
- Predicate that accepts a metadata key.- Returns:
- Returns the builder.
-
shapeFilter
Predicate that determines if a shape and its traits are serialized.- Parameters:
shapeFilter
- Predicate that accepts a shape.- Returns:
- Returns the builder.
-
includePrelude
Enables or disables including the prelude in the serialized model.By default, the prelude is not included.
This should nearly always be left at default, as per the spec the prelude is inherently part of every model, and so any Smithy implementation must build in an understanding of the prelude. Disabling this filter can be useful for those implementations to allow them to build their understanding of it from a JSON version of the prelude.
- Parameters:
includePrelude
- boolean indicating whether the prelude should be included or not.- Returns:
- Returns the builder.
-
traitFilter
Sets a predicate that can be used to filter trait values from appearing in the serialized model.Note that this does not filter out trait definitions. It only filters out instances of traits from being serialized on shapes.
- Parameters:
traitFilter
- Predicate that filters out trait definitions.- Returns:
- Returns the builder.
-
version
Sets the IDL version to serialize. Defaults to 2.0.Version "1.0" serialization cannot be used with
includePrelude
.- Parameters:
version
- IDL version to set. Can be "1", "1.0", "2", or "2.0". "1" and "2" are normalized to "1.0" and "2.0".- Returns:
- Returns the builder.
-
build
Description copied from interface:SmithyBuilder
Creates an immutable object that is created from the properties that have been set on the builder.- Specified by:
build
in interfaceSmithyBuilder<ModelSerializer>
- Returns:
- an instance of T
-