public enum DependencyType extends Enum<DependencyType>
| Enum Constant and Description |
|---|
BOWER |
DEBIAN |
GO |
GRADLE |
GRUNT |
MAVEN |
NPM |
NUGET |
PHP |
PYTHON |
RPM |
RUBY |
| 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.
|
public static final DependencyType MAVEN
public static final DependencyType GRADLE
public static final DependencyType NPM
public static final DependencyType BOWER
public static final DependencyType GRUNT
public static final DependencyType GO
public static final DependencyType PYTHON
public static final DependencyType RUBY
public static final DependencyType NUGET
public static final DependencyType PHP
public static final DependencyType RPM
public static final DependencyType DEBIAN
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 © 2011-2018 White Source. All Rights Reserved.