public enum DependencyHandling extends java.lang.Enum<DependencyHandling>
Enum Constant and Description |
---|
BEST_EFFORT
Dependency checks are performed but not enforced.
|
IGNORE
No dependency checks are enforced
|
REQUIRED
Dependency checks are performed but not enforced.
|
STRICT
Full dependency checks are enforced.
|
Modifier and Type | Method and Description |
---|---|
static DependencyHandling |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DependencyHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependencyHandling IGNORE
public static final DependencyHandling BEST_EFFORT
public static final DependencyHandling REQUIRED
public static final DependencyHandling STRICT
public static DependencyHandling[] values()
for (DependencyHandling c : DependencyHandling.values()) System.out.println(c);
public static DependencyHandling 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 namejava.lang.NullPointerException
- if the argument is null"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"