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

.hazelcast-all.3.5.source-code.messagetype-template-java.ftl Maven / Gradle / Ivy

There is a newer version: 5.0-BETA-1
Show newest version
package ${model.packageName};

public enum ${model.className} {

<#list model.params as param>
    ${model.name?upper_case}_${param.name?upper_case}(${param.id})<#if param_has_next>,<#else>;


    private final int id;

    ${model.className}(int messageType) {
        this.id = messageType;
    }

    public int id() {
        return id;
    }


}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy