@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-20T00:39:28.386Z") @Stability(value=Experimental) public enum DependencyType extends Enum<DependencyType>
| Enum Constant and Description |
|---|
BUILD
(experimental) The dependency is required to run the `build` task.
|
BUNDLED
(experimental) The dependency is bundled and shipped with the module, so consumers are not required to install it.
|
DEVENV
(experimental) The dependency is required for development (e.g.
|
PEER
(experimental) The dependency is required at runtime but expected to be installed by the consumer.
|
RUNTIME
(experimental) The dependency is required for the program/library during runtime.
|
TEST
(experimental) The dependency is required to run the `test` task.
|
| Modifier and Type | Method and Description |
|---|---|
static DependencyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DependencyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final DependencyType RUNTIME
@Stability(value=Experimental) public static final DependencyType PEER
@Stability(value=Experimental) public static final DependencyType BUNDLED
@Stability(value=Experimental) public static final DependencyType BUILD
@Stability(value=Experimental) public static final DependencyType TEST
@Stability(value=Experimental) public static final DependencyType DEVENV
public static DependencyType[] values()
for (DependencyType c : DependencyType.values()) System.out.println(c);
public static DependencyType 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 © 2021. All rights reserved.