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

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

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

import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.SphereEnumeration;

public enum TextInputHint implements SphereEnumeration {
    SINGLE_LINE, MULTI_LINE;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy