events.Method Maven / Gradle / Ivy
// Code generated by Wire protocol buffer compiler, do not edit.
// Source file: /private/tmp/snotel/target/checkout/client/src/main/proto/events/http.proto
package events;
import com.squareup.wire.ProtoEnum;
public enum Method
implements ProtoEnum {
GET(1),
POST(2),
PUT(3),
DELETE(4),
HEAD(5);
private final int value;
private Method(int value) {
this.value = value;
}
@Override
public int getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy