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

io.github.przybandrzej.yeelight.YeelightEffect Maven / Gradle / Ivy

package io.github.przybandrzej.yeelight;

/**
 * Enumeration for transition effect
 */
public enum YeelightEffect {
    SMOOTH("smooth"),
    SUDDEN("sudden");

    /**
     * Representation in request parameters
     */
    private String value;

    YeelightEffect(String value) {
        this.value = value;
    }

    /**
     * Getter for value (ie. representation of effect in request parameters)
     * @return Value for effect
     */
    public String getValue() {
        return this.value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy