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

com.vaadin.base.devserver.editor.Where Maven / Gradle / Ivy

There is a newer version: 24.6.2
Show newest version
package com.vaadin.base.devserver.editor;

public enum Where {
    BEFORE, AFTER, INSIDE;

    public static Where from(String where) {
        for (Where w : values()) {
            if (w.name().equalsIgnoreCase(where)) {
                return w;
            }
        }
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy