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

com.global.api.entities.enums.ReasonCode Maven / Gradle / Ivy

There is a newer version: 14.2.3
Show newest version
package com.global.api.entities.enums;

import java.util.HashMap;

public enum ReasonCode implements IMappedConstant {
    Fraud(new HashMap() {{
        put(Target.GP_API, "FRAUD");
    }}),
    FalsePositive(new HashMap() {{
        put(Target.GP_API, "FALSE_POSITIVE");
    }}),
    OutOfStock(new HashMap() {{
        put(Target.GP_API, "OUT_OF_STOCK");
    }}),
    InStock(new HashMap() {{
        put(Target.GP_API, "IN_STOCK");
    }}),
    Other(new HashMap() {{
        put(Target.GP_API, "OTHER");
    }}),
    NotGiven(new HashMap() {{
        put(Target.GP_API, "NOT_GIVEN");
    }});

    HashMap value;
    ReasonCode(HashMap value){
        this.value = value;
    }
    public byte[] getBytes(Target target) {
        if(value.containsKey(target)) {
            return this.value.get(target).getBytes();
        }
        return null;
    }
    public String getValue(Target target) {
        if(value.containsKey(target)) {
            return this.value.get(target);
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy