public static enum Process.Type extends Enum<Process.Type>
Enum Constant and Description |
---|
APPLICATION_CLIENT |
DOMAIN_SERVER |
EMBEDDED_HOST_CONTROLLER |
EMBEDDED_SERVER |
HOST_CONTROLLER |
SELF_CONTAINED |
STANDALONE_SERVER |
Modifier and Type | Method and Description |
---|---|
static Process.Type |
from(String processTypeName) |
String |
toString() |
static Process.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Process.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Process.Type DOMAIN_SERVER
public static final Process.Type EMBEDDED_SERVER
public static final Process.Type STANDALONE_SERVER
public static final Process.Type HOST_CONTROLLER
public static final Process.Type EMBEDDED_HOST_CONTROLLER
public static final Process.Type APPLICATION_CLIENT
public static final Process.Type SELF_CONTAINED
public static Process.Type[] values()
for (Process.Type c : Process.Type.values()) System.out.println(c);
public static Process.Type 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 Process.Type from(String processTypeName)
public String toString()
toString
in class Enum<Process.Type>
Copyright © 2017 JBoss by Red Hat. All rights reserved.