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

com.bigcommerce.catalog.models.WeightUnitsAdapter Maven / Gradle / Ivy

The newest version!
package com.bigcommerce.catalog.models;

import javax.xml.bind.annotation.adapters.XmlAdapter;

public class WeightUnitsAdapter extends XmlAdapter {

	@Override
	public WeightUnits unmarshal(final String weightUnit) throws Exception {
		return WeightUnits.toEnum(weightUnit);
	}

	@Override
	public String marshal(final WeightUnits weightUnit) throws Exception {
		return weightUnit.toString();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy