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

wtf.metio.storageunits.mongodb.DecimalStorageUnitCodec Maven / Gradle / Ivy

There is a newer version: 2023.12.20
Show newest version
/*
 * SPDX-FileCopyrightText: The Storage-Units Authors
 * SPDX-License-Identifier: 0BSD
 */
package wtf.metio.storageunits.mongodb;

import wtf.metio.storageunits.model.StorageUnit;
import wtf.metio.storageunits.model.StorageUnits;

import java.math.BigInteger;

public final class DecimalStorageUnitCodec extends AbstractStorageUnitCodec {

    @Override
    protected StorageUnit convertToStorageUnit(final BigInteger value) {
        return StorageUnits.decimalValueOf(value);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy