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

shade.com.alibaba.fastjson2.function.impl.ToNumber Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
package com.alibaba.fastjson2.function.impl;

import com.alibaba.fastjson2.JSONException;

import java.util.function.Function;

public final class ToNumber
        implements Function {
    final Number defaultValue;

    public ToNumber(Number defaultValue) {
        this.defaultValue = defaultValue;
    }

    @Override
    public Object apply(Object o) {
        if (o == null) {
            return defaultValue;
        }

        if (o instanceof Boolean) {
            return (Boolean) o ? 1 : 0;
        }

        if (o instanceof Number) {
            return o;
        }

        throw new JSONException("can not cast to Number " + o.getClass());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy