io.sphere.sdk.attributes.AttributeSetter Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.attributes;
public interface AttributeSetter extends AttributeGetterSetterBase {
public static AttributeSetter of(final String name, final AttributeMapper mapper) {
return AttributeGetterSetter.of(name, mapper);
}
public Attribute valueOf(final T input);
}