All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.guyi.ipojo.module.coap.enums.CoapMethod Maven / Gradle / Ivy

The newest version!
package tech.guyi.ipojo.module.coap.enums;

import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor
public enum CoapMethod {

    GET("GET"),POST("POST"),PUT("PUT"),DELETE("DELETE");

    private final String value;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy