Class Apply
- java.lang.Object
-
- software.amazon.smithy.build.transforms.ConfigurableProjectionTransformer<T>
-
- software.amazon.smithy.build.transforms.Apply
-
- All Implemented Interfaces:
ProjectionTransformer
public final class Apply extends ConfigurableProjectionTransformer<T>
Applies transforms of other projections.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Apply.Config
apply
configuration.
-
Constructor Summary
Constructors Constructor Description Apply()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>
getAdditionalProjections(TransformContext context)
Allows the composition of projections by returning additional projections to run after the current one.protected java.util.Optional<java.util.function.BiFunction<TransformContext,Apply.Config,java.util.List<java.lang.String>>>
getAdditionalProjectionsFunction()
java.lang.Class<Apply.Config>
getConfigType()
Gets the configuration class type.java.lang.String
getName()
Gets the name of the transformer.Model
transform(TransformContext context)
Transforms the given model using the providedTransformContext
.protected Model
transformWithConfig(TransformContext context, Apply.Config config)
Executes the transform using the deserialized configuration object.
-
-
-
Method Detail
-
getConfigType
public java.lang.Class<Apply.Config> getConfigType()
Description copied from class:ConfigurableProjectionTransformer
Gets the configuration class type.The referenced
configType
class must be a public POJO with a public, zero-arg constructor, getters, and setters. If the POJO has a public staticfromNode
method, it will be invoked and is expected to deserialize the Node. If the POJO has a public staticbuilder
method, it will be invoked, setters will be called on the builder POJO, and finally the result of calling thebuild
method 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:
getConfigType
in classConfigurableProjectionTransformer<Apply.Config>
- Returns:
- Returns the configuration class (a POJO with setters/getters).
-
getName
public java.lang.String getName()
Description copied from interface:ProjectionTransformer
Gets the name of the transformer.- Returns:
- Returns the name (e.g., "traits").
-
transform
public Model transform(TransformContext context)
Description copied from interface:ProjectionTransformer
Transforms the given model using the providedTransformContext
.- Specified by:
transform
in interfaceProjectionTransformer
- Parameters:
context
- Transformation context.- Returns:
- Returns the created transformer.
-
transformWithConfig
protected Model transformWithConfig(TransformContext context, Apply.Config config)
Description copied from class:ConfigurableProjectionTransformer
Executes the transform using the deserialized configuration object.- Specified by:
transformWithConfig
in classConfigurableProjectionTransformer<Apply.Config>
- Parameters:
context
- Transform context.config
- Deserialized configuration object.- Returns:
- Returns the transformed model.
-
getAdditionalProjectionsFunction
protected java.util.Optional<java.util.function.BiFunction<TransformContext,Apply.Config,java.util.List<java.lang.String>>> getAdditionalProjectionsFunction()
- Overrides:
getAdditionalProjectionsFunction
in 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
public java.util.List<java.lang.String> getAdditionalProjections(TransformContext context)
Description copied from interface:ProjectionTransformer
Allows the composition of projections by returning additional projections to run after the current one.- Specified by:
getAdditionalProjections
in interfaceProjectionTransformer
- Overrides:
getAdditionalProjections
in classConfigurableProjectionTransformer<T>
- Parameters:
context
- Transformation context.- Returns:
- a collection of named projections to run.
-
-