Enum Class SmithyIdlComponentOrder
- All Implemented Interfaces:
Serializable
,Comparable<SmithyIdlComponentOrder>
,Constable
Defines how shapes, traits, and metadata are sorted when serializing a model with
SmithyIdlModelSerializer
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSort shapes, traits, and metadata alphabetically.Reorganizes shapes based on a preferred ordering of shapes, and alphanumeric traits and metadata.Sort shapes, traits, and metadata by source location, persisting their original placement when parsed. -
Method Summary
Modifier and TypeMethodDescriptionstatic SmithyIdlComponentOrder
Returns the enum constant of this class with the specified name.static SmithyIdlComponentOrder[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALPHA_NUMERIC
Sort shapes, traits, and metadata alphabetically. Member order, however, is not sorted. -
SOURCE_LOCATION
Sort shapes, traits, and metadata by source location, persisting their original placement when parsed. -
PREFERRED
Reorganizes shapes based on a preferred ordering of shapes, and alphanumeric traits and metadata.Shapes are ordered as follows:
- Trait definitions
- Services
- Resources
- Operations
- Structures
- Unions
- Lists
- Maps
- Finally, alphabetically by shape type.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-