com.algolia.search.models.HttpMethod Maven / Gradle / Ivy
The newest version!
package com.algolia.search.models;
@SuppressWarnings("WeakerAccess")
public enum HttpMethod {
GET("GET"),
POST("POST"),
PUT("PUT"),
DELETE("DELETE");
public final String name;
HttpMethod(String name) {
this.name = name;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy