Java Long Number Create toLong(final Object o, final String pattern)

Here you can find the source of toLong(final Object o, final String pattern)

Description

to Long

License

Apache License

Declaration

public static Long toLong(final Object o, final String pattern) 

Method Source Code


//package com.java2s;
/*/*  ww w .jav  a  2s  . com*/
 * Copyright 2004-2012 the Seasar Foundation and the Others.
 *
 * 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.
 */

import java.text.SimpleDateFormat;

public class Main {

    public static Long toLong(final Object o) {
        return toLong(o, null);
    }

    public static Long toLong(final Object o, final String pattern) {
        if (o == null) {
            return null;
        } else if (o instanceof Long) {
            return (Long) o;
        } else if (o instanceof Number) {
            return Long.valueOf(((Number) o).longValue());
        } else if (o instanceof String) {
            return toLong((String) o);
        } else if (o instanceof java.util.Date) {
            if (pattern != null) {
                return Long.valueOf(new SimpleDateFormat(pattern).format(o));
            }
            return Long.valueOf(((java.util.Date) o).getTime());
        } else if (o instanceof Boolean) {
            return ((Boolean) o).booleanValue() ? Long.valueOf(1) : Long.valueOf(0);
        } else {
            return toLong(o.toString());
        }
    }

    private static Long toLong(final String s) {
        if (s == null || s.isEmpty()) {
            return null;
        }
        return Long.valueOf(s);
    }
}

Related

  1. toLong(final byte[] b, final int offset)
  2. toLong(final byte[] bytes, final int offset)
  3. toLong(final byte[] data)
  4. toLong(final byte[] data)
  5. toLong(final byte[] inputBytes, int offset)
  6. toLong(final Object obj)
  7. toLong(final String bitString)
  8. toLong(final String str, final long defaultValue)
  9. toLong(final String value)