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

io.sphere.sdk.models.TextInputHint Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.models;

import com.fasterxml.jackson.annotation.JsonCreator;

public enum TextInputHint implements SphereEnumeration {
    SINGLE_LINE, MULTI_LINE;

    @JsonCreator
    public static TextInputHint ofSphereValue(final String value) {
        return SphereEnumeration.findBySphereName(values(), value).get();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy