public static enum ArtifactoryRequest.Method extends java.lang.Enum<ArtifactoryRequest.Method>
| Enum Constant and Description |
|---|
DELETE |
GET |
OPTIONS |
PATCH |
POST |
PUT |
| Modifier and Type | Method and Description |
|---|---|
static ArtifactoryRequest.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArtifactoryRequest.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArtifactoryRequest.Method GET
public static final ArtifactoryRequest.Method POST
public static final ArtifactoryRequest.Method PUT
public static final ArtifactoryRequest.Method DELETE
public static final ArtifactoryRequest.Method PATCH
public static final ArtifactoryRequest.Method OPTIONS
public static ArtifactoryRequest.Method[] values()
for (ArtifactoryRequest.Method c : ArtifactoryRequest.Method.values()) System.out.println(c);
public static ArtifactoryRequest.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 null