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

io.github.linmoure.constants.ServiceConstants Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package io.github.linmoure.constants;

import java.util.ArrayList;
import java.util.List;

public class ServiceConstants {

    public static final List STATUS_LIST = new ArrayList<>();
    static {
        STATUS_LIST.add("1");
        STATUS_LIST.add("2");
        STATUS_LIST.add("3");
        STATUS_LIST.add("4");
    }

    public static final List IE_FLAG_LIST = new ArrayList<>();
    static {
        IE_FLAG_LIST.add("I");
        IE_FLAG_LIST.add("E");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy