public enum DevModeType extends Enum<DevModeType>
| Enum Constant and Description |
|---|
LOCAL |
REMOTE_LOCAL_SIDE |
REMOTE_SERVER_SIDE |
| Modifier and Type | Method and Description |
|---|---|
static DevModeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DevModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DevModeType LOCAL
public static final DevModeType REMOTE_LOCAL_SIDE
public static final DevModeType REMOTE_SERVER_SIDE
public static DevModeType[] values()
for (DevModeType c : DevModeType.values()) System.out.println(c);
public static DevModeType 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 © 2020 JBoss by Red Hat. All rights reserved.