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

com.cx.restclient.osa.dto.OSAScanStatusEnum Maven / Gradle / Ivy

package com.cx.restclient.osa.dto;

/**
 * Created by: Dorg.
 * Date: 06/10/2016.
 */
public enum OSAScanStatusEnum {

    NOT_STARTED(0, "NotStarted"),
    IN_PROGRESS(1, "In progress"),
    SUCCEEDED(2, "Succeeded"),
    FAILED(3, "Failed");

    public final int num;
    private String uiValue;

    public int getNum() {
        return num;
    }

    public String uiValue() {
        return uiValue;
    }

    OSAScanStatusEnum(int i, String uiValue) {
        this.num = i;
        this.uiValue = uiValue;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy