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

de.gofabian.jfixture.Scope Maven / Gradle / Ivy

The newest version!
package de.gofabian.jfixture;

public enum Scope {
    SESSION(1),
    FILE(2),
    CLASS(3),
    METHOD(4);

    private final int order;

    Scope(int order) {
        this.order = order;
    }

    public int getOrder() {
        return order;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy