18 lines
320 B
Java
18 lines
320 B
Java
package de.craftix.api;
|
|
|
|
public enum RequestMethod {
|
|
GET("GET"),
|
|
POST("POST"),
|
|
PUT("PUT"),
|
|
DELETE("DELETE");
|
|
|
|
private final String type;
|
|
|
|
RequestMethod(String type) { this.type = type; }
|
|
|
|
public String getType() { return type; }
|
|
|
|
@Override
|
|
public String toString() { return type; }
|
|
}
|