io.swagger.models.Scheme Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-all Show documentation
Show all versions of swagger-all Show documentation
swagger-all is a rebundled verison of Swagger as one OSGi bundle.
The newest version!
package io.swagger.models;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
public enum Scheme {
HTTP("http"),
HTTPS("https"),
WS("ws"),
WSS("wss");
private final String value;
private Scheme(String value) {
this.value = value;
}
@JsonCreator
public static Scheme forValue(String value) {
for (Scheme item : Scheme.values()) {
if (item.toValue().equalsIgnoreCase(value)) {
return item;
}
}
return null;
}
@JsonValue
public String toValue() {
return value;
}
}