com.jwebmp.plugins.datatable.options.DataTablesDomDivisionOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-data-tables Show documentation
Show all versions of jwebmp-data-tables Show documentation
The JWebSwing implementation for Data Tables
package com.jwebmp.plugins.datatable.options;
/**
* The default sections for the data tables
*/
public enum DataTablesDomDivisionOptions
implements IDataTableDomOptionType
{
TopSection("\"top\""),
TopRowSection("\"top row\""),
TopRowSectionJustified("\"top row d-flex justify-content-between\""),
ClearSection("\"clear\""),
BottomSection("\"bottom\""),
BottomRowSection("\"bottom row\""),
BottomRowJustifiedSection("\"bottom row d-flex justify-content-between\"");
private String identifier;
DataTablesDomDivisionOptions(String identifier)
{
this.identifier = identifier;
}
@Override
public String toString()
{
return identifier;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy