PrinterProtocol.java
396 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.fd.stp.api;
public enum PrinterProtocol {
CUPS("CUPS"),
DirectIP("DirectIP"),
LPD("LPD"),
SharedPrinter("SharedPrinter"),
CIFS("CIFS");
private final String value;
private PrinterProtocol(String value) {
this.value = value;
}
public String toString() {
return this.value;
}
}