View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.enumuration;public enum SchemeType {HTTP("http://"),HTTPS("https://");private String value;private SchemeType(String value) {this.value = value;}public String getValue() {return value;}}