@InternalApi public enum HostType extends Enum<HostType>
| Enum Constant and Description |
|---|
ACCOUNTS
Traditional accounts host.
|
UNIFIED
Unified host supporting both workspace and account operations.
|
WORKSPACE
Traditional workspace host.
|
| Modifier and Type | Method and Description |
|---|---|
static HostType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HostType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HostType WORKSPACE
public static final HostType ACCOUNTS
public static final HostType UNIFIED
public static HostType[] values()
for (HostType c : HostType.values()) System.out.println(c);
public static HostType 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 © 2026. All rights reserved.