net.minidev.ovh.api.xdsl.linediagnostic.OvhSeltPrelocEnum Maven / Gradle / Ivy
package net.minidev.ovh.api.xdsl.linediagnostic;
/**
 * Possible SELT test prelocalizations
 */
public enum OvhSeltPrelocEnum {
	CUST("CUST"),
	DSLAM("DSLAM"),
	LINE("LINE"),
	RE("RE");
	final String value;
	OvhSeltPrelocEnum(String s) {
		this.value = s;
	}
	public String toString() {
		return this.value;
	}
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy