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

com.global.api.network.enums.ServiceCode Maven / Gradle / Ivy

There is a newer version: 14.2.3
Show newest version
package com.global.api.network.enums;

import com.global.api.entities.enums.INumericConstant;

public enum ServiceCode implements INumericConstant {
    Self(1),
    Full(2),
    Other(3);

    private final Integer value;

    ServiceCode(Integer value) { this.value = value; }

    @Override
    public int getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy