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

org.pixel.commons.model.VerticalAlignment Maven / Gradle / Ivy

The newest version!
/*
 * This software is available under Apache License
 * Copyright (c) 2020
 */

package org.pixel.commons.model;

public enum VerticalAlignment {
    BOTTOM, MIDDLE, TOP;

    /**
     * @param value
     * @return
     */
    public static VerticalAlignment fromString(String value) {
        switch (value.toLowerCase()) {
            case "top":
                return TOP;

            case "middle":
                return MIDDLE;

            case "bottom":
                return BOTTOM;

            default:
                return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy