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

org.artifact.protocol.enums.ProtocolConstant Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.artifact.protocol.enums;

public enum ProtocolConstant {
	SEND("send","modules","module.btl"),
	PUSH("push","modules","module.btl"),
	STRUCT("struct","structs","struct.btl"),
	ENUM("enum","structs","enum.btl");
	
	private String name;
	private String path;
	private String btl;


	
	private ProtocolConstant(String name, String path, String btl) {
		this.name = name;
		this.path = path;
		this.btl = btl;
	}
	

	public String getName() {
		return name;
	}


	public String getPath() {
		return path;
	}

	public String getBtl() {
		return btl;
	}
	
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy