![JAR search and dependency download from the Maven repository](/logo.png)
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