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

com.googlecode.openbox.foo.ClientVersion Maven / Gradle / Ivy

There is a newer version: 2.1.6
Show newest version
package com.googlecode.openbox.foo;

public enum ClientVersion {
	V1("v1");

	private String version;

	ClientVersion(String version) {
		this.version = version;
	}

	public String getVersion() {
		return version;
	}

	public String toString() {
		return getVersion();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy