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

com.jwebmp.plugins.datatable.options.DataTablesDomDivisionOptions Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
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