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

org.aeonbits.owner.converters.ByteSizeConverter Maven / Gradle / Ivy

There is a newer version: 1.0.12
Show newest version
/*
 * Copyright (c) 2012-2016, Luigi R. Viggiano
 * All rights reserved.
 *
 * This software is distributable under the BSD license.
 * See the terms of the BSD license in the documentation provided with this software.
 */

package org.aeonbits.owner.converters;

import org.aeonbits.owner.util.bytesize.ByteSize;
import org.aeonbits.owner.util.bytesize.ByteSizeUnit;
import org.aeonbits.owner.Converter;

import java.lang.reflect.Method;
import java.math.BigDecimal;

/**
 * @author Stefan Freyr Stefansson
 */
public class ByteSizeConverter implements Converter {

    public ByteSize convert(Method method, String input) {
        return parse(input);
    }

    private static ByteSize parse(String input){
        String[] parts = ConverterUtil.splitNumericAndChar(input);
        String value = parts[0];
        String unit = parts[1];

        BigDecimal bdValue = new BigDecimal(value);
        ByteSizeUnit bsuUnit = ByteSizeUnit.parse(unit);

        if (bsuUnit == null){
            throw new IllegalArgumentException("Invalid unit string: '" + unit + "'");
        }

        return new ByteSize(bdValue, bsuUnit);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy