Class Apply
java.lang.Object
software.amazon.smithy.build.transforms.ConfigurableProjectionTransformer<T>
software.amazon.smithy.build.transforms.Apply
- All Implemented Interfaces:
ProjectionTransformer
Applies transforms of other projections.
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetAdditionalProjections(TransformContext context) Allows the composition of projections by returning additional projections to run after the current one.protected Optional<BiFunction<TransformContext,Apply.Config, List<String>>> Gets the configuration class type.getName()Gets the name of the transformer.transform(TransformContext context) Transforms the given model using the providedTransformContext.protected ModeltransformWithConfig(TransformContext context, Apply.Config config) Executes the transform using the deserialized configuration object.
-
Constructor Details
-
Apply
public Apply()
-
-
Method Details
-
getConfigType
Description copied from class:ConfigurableProjectionTransformerGets the configuration class type.The referenced
configTypeclass must be a public POJO with a public, zero-arg constructor, getters, and setters. If the POJO has a public staticfromNodemethod, it will be invoked and is expected to deserialize the Node. If the POJO has a public staticbuildermethod, it will be invoked, setters will be called on the builder POJO, and finally the result of calling thebuildmethod is used as the configuration type. Finally, the deserializer will attempt to create the type and call setters on the instantiated object that correspond to property names (either named "set" + property name, or just property name).- Specified by:
getConfigTypein classConfigurableProjectionTransformer<Apply.Config>- Returns:
- Returns the configuration class (a POJO with setters/getters).
-
getName
Description copied from interface:ProjectionTransformerGets the name of the transformer.- Returns:
- Returns the name (e.g., "traits").
-
transform
Description copied from interface:ProjectionTransformerTransforms the given model using the providedTransformContext.- Specified by:
transformin interfaceProjectionTransformer- Parameters:
context- Transformation context.- Returns:
- Returns the created transformer.
-
transformWithConfig
Description copied from class:ConfigurableProjectionTransformerExecutes the transform using the deserialized configuration object.- Specified by:
transformWithConfigin classConfigurableProjectionTransformer<Apply.Config>- Parameters:
context- Transform context.config- Deserialized configuration object.- Returns:
- Returns the transformed model.
-
getAdditionalProjectionsFunction
protected Optional<BiFunction<TransformContext,Apply.Config, getAdditionalProjectionsFunction()List<String>>> - Overrides:
getAdditionalProjectionsFunctionin classConfigurableProjectionTransformer<Apply.Config>- Returns:
- an Optional of either a BiFunction that returns the additional projections to run after this one, or empty to indicate this projection will never compose other ones.
-
getAdditionalProjections
Description copied from interface:ProjectionTransformerAllows the composition of projections by returning additional projections to run after the current one.- Specified by:
getAdditionalProjectionsin interfaceProjectionTransformer- Overrides:
getAdditionalProjectionsin classConfigurableProjectionTransformer<T>- Parameters:
context- Transformation context.- Returns:
- a collection of named projections to run.
-