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

com.crabshue.commons.xml.schema.Protocol Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy