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

org.dominokit.domino.ui.grid.SectionSpan Maven / Gradle / Ivy

There is a newer version: 1.0.139
Show newest version
package org.dominokit.domino.ui.grid;

public enum SectionSpan {
    _1(1), _2(2), _3(3), _4(4), _5(5), _6(6);

    private int value;

    SectionSpan(int value) {
        this.value = value;
    }

    public int getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy