public enum AccountIdEndpointMode extends Enum<AccountIdEndpointMode>
| Enum Constant and Description |
|---|
DISABLED
When mode is disabled, any resolved account ID will not be used in endpoint construction and rules that
reference them will be bypassed.
|
PREFERRED
Default value that indicates account ID values will be used in endpoint rules if available.
|
REQUIRED
Required mode would be used in scenarios where endpoint resolution should return an error if no account ID is
available.
|
| Modifier and Type | Method and Description |
|---|---|
static AccountIdEndpointMode |
fromValue(String s)
Returns the appropriate AccountIdEndpointMode value after parsing the parameter.
|
static AccountIdEndpointMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountIdEndpointMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountIdEndpointMode PREFERRED
public static final AccountIdEndpointMode DISABLED
public static final AccountIdEndpointMode REQUIRED
public static AccountIdEndpointMode[] values()
for (AccountIdEndpointMode c : AccountIdEndpointMode.values()) System.out.println(c);
public static AccountIdEndpointMode 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 AccountIdEndpointMode fromValue(String s)
s - AccountIdEndpointMode in String Format.IllegalArgumentException - Unrecognized value for endpoint mode.Copyright © 2026. All rights reserved.