public static enum AlgorithmProvider.METHOD extends java.lang.Enum<AlgorithmProvider.METHOD>
Enum Constant and Description |
---|
GIT |
HTTP |
UNSUPPORTED |
Modifier and Type | Method and Description |
---|---|
boolean |
isAutomaticDeployed() |
static AlgorithmProvider.METHOD |
parse(java.lang.String method) |
abstract java.lang.String[] |
requiredKeys() |
static AlgorithmProvider.METHOD |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmProvider.METHOD[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlgorithmProvider.METHOD HTTP
public static final AlgorithmProvider.METHOD GIT
public static final AlgorithmProvider.METHOD UNSUPPORTED
public static AlgorithmProvider.METHOD[] values()
for (AlgorithmProvider.METHOD c : AlgorithmProvider.METHOD.values()) System.out.println(c);
public static AlgorithmProvider.METHOD 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 nullpublic abstract java.lang.String[] requiredKeys()
public boolean isAutomaticDeployed()
public static AlgorithmProvider.METHOD parse(java.lang.String method)