public static enum Dependency.Type extends Enum<Dependency.Type>
| Enum Constant and Description |
|---|
DYNAMIC_IMPORT |
HTML_IMPORT |
JAVASCRIPT |
JS_MODULE |
STYLESHEET |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
contains(String value)
Check if the given value is contained as a enum value.
|
static Dependency.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dependency.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dependency.Type STYLESHEET
public static final Dependency.Type JAVASCRIPT
public static final Dependency.Type JS_MODULE
public static final Dependency.Type HTML_IMPORT
public static final Dependency.Type DYNAMIC_IMPORT
public static Dependency.Type[] values()
for (Dependency.Type c : Dependency.Type.values()) System.out.println(c);
public static Dependency.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 nullpublic static boolean contains(String value)
value - value to checkCopyright © 2025. All rights reserved.