Class ChangeStringEnumsToEnumShapes
java.lang.Object
software.amazon.smithy.build.transforms.ConfigurableProjectionTransformer<ChangeStringEnumsToEnumShapes.Config>
software.amazon.smithy.build.transforms.ChangeStringEnumsToEnumShapes
- All Implemented Interfaces:
- ProjectionTransformer
public final class ChangeStringEnumsToEnumShapes
extends ConfigurableProjectionTransformer<ChangeStringEnumsToEnumShapes.Config>
changeStringEnumsToEnumShapes is used to change string shapes
 bearing the enum trait into enum shapes.- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic final classchangeStringEnumsToEnumShapesconfiguration settings.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionGets the configuration class type.getName()Gets the name of the transformer.protected ModeltransformWithConfig(TransformContext context, ChangeStringEnumsToEnumShapes.Config config) Executes the transform using the deserialized configuration object.Methods inherited from class software.amazon.smithy.build.transforms.ConfigurableProjectionTransformergetAdditionalProjections, getAdditionalProjectionsFunction, transform
- 
Constructor Details- 
ChangeStringEnumsToEnumShapespublic ChangeStringEnumsToEnumShapes()
 
- 
- 
Method Details- 
getConfigTypeDescription 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 class- ConfigurableProjectionTransformer<ChangeStringEnumsToEnumShapes.Config>
- Returns:
- Returns the configuration class (a POJO with setters/getters).
 
- 
getNameDescription copied from interface:ProjectionTransformerGets the name of the transformer.- Returns:
- Returns the name (e.g., "traits").
 
- 
transformWithConfigprotected Model transformWithConfig(TransformContext context, ChangeStringEnumsToEnumShapes.Config config) Description copied from class:ConfigurableProjectionTransformerExecutes the transform using the deserialized configuration object.- Specified by:
- transformWithConfigin class- ConfigurableProjectionTransformer<ChangeStringEnumsToEnumShapes.Config>
- Parameters:
- context- Transform context.
- config- Deserialized configuration object.
- Returns:
- Returns the transformed model.
 
 
-