com.crabshue.commons.xml.schema.Protocol Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-xml Show documentation
Show all versions of commons-xml Show documentation
Library for XML documents operations.
package com.crabshue.commons.xml.schema;
/**
* Enumeration of protocols, and their prefix.
*
*/
public enum Protocol {
HTTP("http:"),
HTTPS("https:"),
FILE("file:");
private final String prefix;
Protocol(final String prefix) {
this.prefix = prefix;
}
public String getPrefix() {
return prefix;
}
}