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

org.bidib.wizard.mvc.pt.model.PtMode Maven / Gradle / Ivy

There is a newer version: 2.0.29
Show newest version
package org.bidib.wizard.mvc.pt.model;

/**
 * The programming mode used for the programming track.
 */
public enum PtMode {
    BYTE("byte"), BIT("bit");

    private final String key;

    private PtMode(String key) {
        this.key = key;
    }

    public String getKey() {
        return key;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy