org.bidib.wizard.mvc.pom.model.PomMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-client Show documentation
Show all versions of bidibwizard-client Show documentation
jBiDiB BiDiB Wizard Client Application POM
package org.bidib.wizard.mvc.pom.model;
/**
* The programming mode used for the programming track.
*/
public enum PomMode {
BYTE("byte"), BIT("bit");
private final String key;
private PomMode(String key) {
this.key = key;
}
public String getKey() {
return key;
}
}