public enum UnderscoresInNameBehavior extends Enum<UnderscoresInNameBehavior>
CustomizationConfig.setUnderscoresInNameBehavior(software.amazon.awssdk.codegen.model.config.customization.UnderscoresInNameBehavior) customization.| Enum Constant and Description |
|---|
ALLOW
Allow the underscores in names, and generating shapes with names that are non-idiomatic to the language.
|
| Modifier and Type | Method and Description |
|---|---|
static UnderscoresInNameBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnderscoresInNameBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnderscoresInNameBehavior ALLOW
public static UnderscoresInNameBehavior[] values()
for (UnderscoresInNameBehavior c : UnderscoresInNameBehavior.values()) System.out.println(c);
public static UnderscoresInNameBehavior valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.