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

io.sphere.sdk.carts.CartState Maven / Gradle / Ivy

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

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

public enum CartState implements SphereEnumeration {
    /**
     The cart can be updated and ordered. It is the default state.
     */
    ACTIVE,
    /**
     Anonymous cart whose content was merged into a customers cart on signin. No further operations on the cart are allowed.
     */
    MERGED,
    /**
     The cart was ordered. No further operations on the cart are allowed.
     */
    ORDERED;

    public static CartState defaultValue() {
        return CartState.ACTIVE;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy