
com.activitystream.aspects.RequestMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
For a description please see https://github.com/activitystream/as-sdk-java
package com.activitystream.aspects;
public enum RequestMethod {
GET, POST, DELETE, PUT;
@Override
public String toString() {
if (this == GET) return "GET";
if (this == POST) return "POST";
if (this == PUT) return "PUT";
if (this == DELETE) return "DELETE";
throw new RuntimeException("unhandled action of timed action");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy