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

com.github.rahulsom.jansitable.Column Maven / Gradle / Ivy

The newest version!
package com.github.rahulsom.jansitable;

public class Column {
    public enum Alignment {
        LEFT, RIGHT
    }

    int width;
    Alignment alignment = Alignment.LEFT;

    public Column(int width, Alignment alignment) {
        this.width = width;
        this.alignment = alignment;
    }

    public Column(int width) {
        this.width = width;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy