public static enum ScatteredArchive.Type extends Enum<ScatteredArchive.Type>
| Enum Constant and Description |
|---|
JAR
The module is an Enterprise Java Bean or Application Client archive.
|
RAR
The module is a Connector archive.
|
WAR
The module is a Web Application archive.
|
| Modifier and Type | Method and Description |
|---|---|
static ScatteredArchive.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScatteredArchive.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScatteredArchive.Type JAR
public static final ScatteredArchive.Type WAR
public static final ScatteredArchive.Type RAR
public static ScatteredArchive.Type[] values()
for (ScatteredArchive.Type c : ScatteredArchive.Type.values()) System.out.println(c);
public static ScatteredArchive.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 © 2018 Eclipse Foundation. All rights reserved.