br.com.tecsinapse.dataio.style.CellVAlign Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tecsinapse-data-io Show documentation
Show all versions of tecsinapse-data-io Show documentation
A simple way to work with CSV, XLSX? and TXT files
The newest version!
/*
* Tecsinapse Data Input and Output
*
* License: GNU Lesser General Public License (LGPL), version 3 or later
* See the LICENSE file in the root directory or .
*/
package br.com.tecsinapse.dataio.style;
import org.apache.poi.ss.usermodel.VerticalAlignment;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter
@AllArgsConstructor
public enum CellVAlign {
CENTER(VerticalAlignment.CENTER, "vertical-align:middle;"),
JUSTIFY(VerticalAlignment.JUSTIFY, ""),
TOP(VerticalAlignment.TOP, "vertical-align:top;"),
BOTTOM(VerticalAlignment.BOTTOM, "vertical-align:bottom;");
private final VerticalAlignment cellStyleVAlign;
private final String css;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy