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

org.lastaflute.di.util.LdiShortConversionUtil Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/*
 * Copyright 2015-2021 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */
package org.lastaflute.di.util;

import java.text.SimpleDateFormat;

/**
 * @author modified by jflute (originated in Seasar)
 */
public class LdiShortConversionUtil {

    protected LdiShortConversionUtil() {
    }

    /**
     * @param o
     * @return 
     */
    public static Short toShort(Object o) {
        return toShort(o, null);
    }

    /**
     * @param o
     * @param pattern
     * @return 
     */
    public static Short toShort(Object o, String pattern) {
        if (o == null) {
            return null;
        } else if (o instanceof Short) {
            return (Short) o;
        } else if (o instanceof Number) {
            return new Short(((Number) o).shortValue());
        } else if (o instanceof String) {
            return toShort((String) o);
        } else if (o instanceof java.util.Date) {
            if (pattern != null) {
                return new Short(new SimpleDateFormat(pattern).format(o));
            }
            return new Short((short) ((java.util.Date) o).getTime());
        } else if (o instanceof Boolean) {
            return ((Boolean) o).booleanValue() ? new Short((short) 1) : new Short((short) 0);
        } else {
            return toShort(o.toString());
        }
    }

    private static Short toShort(String s) {
        if (LdiStringUtil.isEmpty(s)) {
            return null;
        }
        return new Short(LdiDecimalFormatUtil.normalize(s));
    }

    /**
     * @param o
     * @return 
     */
    public static short toPrimitiveShort(Object o) {
        return toPrimitiveShort(o, null);
    }

    /**
     * @param o
     * @param pattern
     * @return 
     */
    public static short toPrimitiveShort(Object o, String pattern) {
        if (o == null) {
            return 0;
        } else if (o instanceof Number) {
            return ((Number) o).shortValue();
        } else if (o instanceof String) {
            return toPrimitiveShort((String) o);
        } else if (o instanceof java.util.Date) {
            if (pattern != null) {
                return Short.parseShort(new SimpleDateFormat(pattern).format(o));
            }
            return (short) ((java.util.Date) o).getTime();
        } else if (o instanceof Boolean) {
            return ((Boolean) o).booleanValue() ? (short) 1 : (short) 0;
        } else {
            return toPrimitiveShort(o.toString());
        }
    }

    private static short toPrimitiveShort(String s) {
        if (LdiStringUtil.isEmpty(s)) {
            return 0;
        }
        return Short.parseShort(LdiDecimalFormatUtil.normalize(s));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy