public static enum ContainerBuilder.Type extends Enum<ContainerBuilder.Type>
| Enum Constant and Description |
|---|
all
all installed containers
|
ejb
ejb container type
|
jpa
persistence container type
|
jruby
jruby container type
|
web
web container type
|
webservices
webservices container type
|
| Modifier and Type | Method and Description |
|---|---|
static ContainerBuilder.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainerBuilder.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerBuilder.Type ejb
public static final ContainerBuilder.Type web
public static final ContainerBuilder.Type jruby
public static final ContainerBuilder.Type jpa
public static final ContainerBuilder.Type webservices
public static final ContainerBuilder.Type all
public static ContainerBuilder.Type[] values()
for (ContainerBuilder.Type c : ContainerBuilder.Type.values()) System.out.println(c);
public static ContainerBuilder.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 nullCopyright © 2017. All rights reserved.