public static enum WeldUtils.BDAType extends Enum<WeldUtils.BDAType>
Can be WAR, JAR, RAR or UNKNOWN.
| Modifier and Type | Method and Description |
|---|---|
static WeldUtils.BDAType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WeldUtils.BDAType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WeldUtils.BDAType WAR
public static final WeldUtils.BDAType JAR
public static final WeldUtils.BDAType RAR
public static final WeldUtils.BDAType UNKNOWN
public static WeldUtils.BDAType[] values()
for (WeldUtils.BDAType c : WeldUtils.BDAType.values()) System.out.println(c);
public static WeldUtils.BDAType 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 © 2019. All rights reserved.