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

gwt.material.design.client.constants.Display Maven / Gradle / Ivy

/*
 * #%L
 * GwtMaterial
 * %%
 * Copyright (C) 2015 - 2017 GwtMaterialDesign
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */
package gwt.material.design.client.constants;

import com.google.gwt.dom.client.Style;
import com.google.gwt.dom.client.Style.HasCssName;

/**
 * @author chriswjones
 */
public enum Display implements HasCssName {
    INLINE(Style.Display.INLINE),
    BLOCK(Style.Display.BLOCK),
    FLEX("flex"),
    GRID("grid"),
    INLINE_GRID("inline-grid"),
    INLINE_BLOCK(Style.Display.INLINE_BLOCK),
    INLINE_TABLE(Style.Display.INLINE_TABLE),
    LIST_ITEM(Style.Display.LIST_ITEM),
    RUN_IN(Style.Display.RUN_IN),
    TABLE(Style.Display.TABLE),
    TABLE_CAPTION(Style.Display.TABLE_CAPTION),
    TABLE_COLUMN_GROUP(Style.Display.TABLE_COLUMN_GROUP),
    TABLE_HEADER_GROUP(Style.Display.TABLE_HEADER_GROUP),
    TABLE_FOOTER_GROUP(Style.Display.TABLE_FOOTER_GROUP),
    TABLE_ROW_GROUP(Style.Display.TABLE_ROW_GROUP),
    TABLE_CELL(Style.Display.TABLE_CELL),
    TABLE_COLUMN(Style.Display.TABLE_COLUMN),
    TABLE_ROW(Style.Display.TABLE_ROW),
    NONE(Style.Display.NONE),
    INITIAL(Style.Display.INITIAL);

    private final String cssName;

    Display(HasCssName gwtDisplay) {
        this.cssName = gwtDisplay.getCssName();
    }

    Display(String cssName) {
        this.cssName = cssName;
    }

    public Style.Display getGwtDisplay() {
        return Style.Display.valueOf(this.name());
    }

    public static Display parse(String display) {
        for (Display d : Display.values()) {
            if (d.getCssName().equals(display)) {
                return d;
            }
        }
        return null;
    }

    public static Display parse(HasCssName display) {
        return parse(display.getCssName());
    }

    @Override
    public String getCssName() {
        return cssName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy