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

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

The newest version!
package io.sphere.sdk.attributes;

import io.sphere.sdk.models.LocalizedStrings;


public class TextAttributeDefinitionBuilder extends BaseBuilder {
    private final TextInputHint textInputHint;

    TextAttributeDefinitionBuilder(final String name, final LocalizedStrings label, final TextInputHint textInputHint) {
        super(name, label);
        this.textInputHint = textInputHint;
    }

    @Override
    protected TextAttributeDefinitionBuilder getThis() {
        return this;
    }

    @Override
    public TextAttributeDefinition build() {
        return new TextAttributeDefinition(new TextType(), getName(), getLabel(), isRequired(), getAttributeConstraint(), isSearchable(), textInputHint);
    }

    public static TextAttributeDefinitionBuilder of(final String name, final LocalizedStrings label, final TextInputHint textInputHint) {
        return new TextAttributeDefinitionBuilder(name, label, textInputHint);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy