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

com.epam.jdi.light.elements.pageobjects.annotations.objects.TableHeaderTypes Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package com.epam.jdi.light.elements.pageobjects.annotations.objects;

public enum TableHeaderTypes {
    ALL_HEADERS(true, true),
    NO_HEADERS(false, false),
    COLUMNS_HEADERS(false, true),
    ROWS_HEADERS(true, false);
    public boolean row;
    public boolean column;
    TableHeaderTypes(boolean row, boolean column) {
        this.row = row;
        this.column = column;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy