|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ArchiveType>
org.objectweb.easybeans.deployable.ArchiveType
public enum ArchiveType
List of types for an archive.
Enum Constant Summary | |
---|---|
CLIENT_APP
Client module. |
|
EAR
Application. |
|
EJB21JAR
EJB (version ejb 2.1). |
|
EJB3JAR
EJB (version 3). |
|
RAR
It's a resource adapter. |
|
UNKNOWN
Unknown type. |
|
WAR
War file. |
Method Summary | |
---|---|
static ArchiveType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ArchiveType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ArchiveType EJB21JAR
public static final ArchiveType EJB3JAR
public static final ArchiveType WAR
public static final ArchiveType EAR
public static final ArchiveType RAR
public static final ArchiveType CLIENT_APP
public static final ArchiveType UNKNOWN
Method Detail |
---|
public static final ArchiveType[] values()
for(ArchiveType c : ArchiveType.values()) System.out.println(c);
public static ArchiveType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |