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

com.testvagrant.mdb.enums.Models Maven / Gradle / Ivy

The newest version!
package com.testvagrant.mdb.enums;


public enum  Models {

    MOTOROLA("Moto"),
    NEXUS("Nexus");
    private String modelName;
    Models(String modelName) {
        this.modelName = modelName;
    }


    public String getModelName() {
        return modelName;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy