public enum ModuleType extends Enum<ModuleType>
| Enum Constant and Description |
|---|
AGGREGATOR
just use its dependencies
|
IGNORE
it is just there, ignore it (e.g.
|
JANGAROO_APP
used for an app via Maven
|
JANGAROO_APP_OVERLAY
used for an app overlay via Maven
|
JANGAROO_APPS
used for apps via Maven
|
SWC
used for a code package or a theme via Maven
|
| Modifier and Type | Method and Description |
|---|---|
static ModuleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModuleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleType SWC
public static final ModuleType JANGAROO_APP
public static final ModuleType JANGAROO_APP_OVERLAY
public static final ModuleType JANGAROO_APPS
public static final ModuleType AGGREGATOR
public static final ModuleType IGNORE
public static ModuleType[] values()
for (ModuleType c : ModuleType.values()) System.out.println(c);
public static ModuleType 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 © 2002–2021 CoreMedia AG. All rights reserved.