Class IncludeShapesBySelector
- java.lang.Object
-
- software.amazon.smithy.build.transforms.ConfigurableProjectionTransformer<IncludeShapesBySelector.Config>
-
- software.amazon.smithy.build.transforms.IncludeShapesBySelector
-
- All Implemented Interfaces:
ProjectionTransformer
public final class IncludeShapesBySelector extends ConfigurableProjectionTransformer<IncludeShapesBySelector.Config>
includeShapesBySelectorincludes the shapes matching the given selector.Prelude shapes are not removed by this transformer.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIncludeShapesBySelector.ConfigincludeShapesBySelectorconfiguration.
-
Constructor Summary
Constructors Constructor Description IncludeShapesBySelector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<IncludeShapesBySelector.Config>getConfigType()Gets the configuration class type.java.lang.StringgetName()Gets the name of the transformer.protected ModeltransformWithConfig(TransformContext context, IncludeShapesBySelector.Config config)Executes the transform using the deserialized configuration object.-
Methods inherited from class software.amazon.smithy.build.transforms.ConfigurableProjectionTransformer
getAdditionalProjections, getAdditionalProjectionsFunction, transform
-
-
-
-
Method Detail
-
getConfigType
public java.lang.Class<IncludeShapesBySelector.Config> 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<IncludeShapesBySelector.Config>- Returns:
- Returns the configuration class (a POJO with setters/getters).
-
getName
public java.lang.String getName()
Description copied from interface:ProjectionTransformerGets the name of the transformer.- Returns:
- Returns the name (e.g., "traits").
-
transformWithConfig
protected Model transformWithConfig(TransformContext context, IncludeShapesBySelector.Config config)
Description copied from class:ConfigurableProjectionTransformerExecutes the transform using the deserialized configuration object.- Specified by:
transformWithConfigin classConfigurableProjectionTransformer<IncludeShapesBySelector.Config>- Parameters:
context- Transform context.config- Deserialized configuration object.- Returns:
- Returns the transformed model.
-
-