public enum DeprecatedSuppression extends Enum<DeprecatedSuppression>
| Enum Constant and Description |
|---|
ClientConstructors
Public constructors on clients were deprecated in v1.11.84 of the SDK
|
ClientMutationMethods
Methods that mutate a client (eg: setRegion) were deprecated in v1.11.84 of the SDK
This suppresses creation of those methods on the client interface
|
EnumSetterOverload
Overloads for setters breaks the POJO contract so we don't emit them for new usages.
|
| Modifier and Type | Method and Description |
|---|---|
static DeprecatedSuppression |
fromValue(String value) |
static DeprecatedSuppression |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeprecatedSuppression[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeprecatedSuppression ClientConstructors
public static final DeprecatedSuppression ClientMutationMethods
public static final DeprecatedSuppression EnumSetterOverload
public static DeprecatedSuppression[] values()
for (DeprecatedSuppression c : DeprecatedSuppression.values()) System.out.println(c);
public static DeprecatedSuppression 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 nullpublic static DeprecatedSuppression fromValue(String value)
Copyright © 2022. All rights reserved.