Java BigDecimal to toLongObject(@Nullable final BigDecimal value)

Here you can find the source of toLongObject(@Nullable final BigDecimal value)

Description

to Long Object

License

Apache License

Declaration

public static Long toLongObject(@Nullable final BigDecimal value) 

Method Source Code


//package com.java2s;
/*//from   w w w .ja v a2s . c  o m
 * Copyright (c) 2014  Haixing Hu
 *
 * 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.math.BigDecimal;

import javax.annotation.Nullable;

public class Main {
    public static Long toLongObject(@Nullable final BigDecimal value) {
        return (value == null ? null : Long.valueOf(value.longValue()));
    }

    public static Long toLongObject(@Nullable final BigDecimal value, @Nullable final Integer defaultValue) {
        return (value == null ? defaultValue : Long.valueOf(value.longValue()));
    }
}

Related

  1. toDouble(BigDecimal bigDecimal)
  2. toDouble(final BigDecimal b)
  3. toDouble(final BigDecimal b)
  4. toInteger(BigDecimal b)
  5. toLong(BigDecimal value)
  6. toNumber(final BigDecimal bigDecimal, final Class clazz)
  7. toObject(BigDecimal value)
  8. toPercent(final BigDecimal decimalValue, final MathContext mathCntext)
  9. toScientificNotation(BigDecimal bd)