Here you can find the source of div(Double dividend, Double quotient)
public static double div(Double dividend, Double quotient)
//package com.java2s; /**/*www . jav a 2 s .c o m*/ * Copyright 2015 Jan Lolling jan.lolling@gmail.com * * 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. */ public class Main { /** * build the division of given Doubles regardless of null * * {Category} NumberUtil * * {talendTypes} double | Double * * {param} double(2.5) dividend: dividend * * {param} double(4.3) quotient: quotient * * {example} div(2,4) result: 0.5 * */ public static double div(Double dividend, Double quotient) { if (dividend == null || quotient == null) { return 0; } else { if (quotient.doubleValue() == 0) { return 0; } else { return dividend.doubleValue() / quotient.doubleValue(); } } } /** * build the division of given Doubles regardless of null * * {Category} NumberUtil * * {talendTypes} double | Double * * {param} double(2.5) dividend: dividend * * {param} int(4.3) quotient: quotient * * {example} div(2,4) result: 0.5 * */ public static double div(Double dividend, Integer quotient) { if (dividend == null || quotient == null) { return 0; } else { if (quotient.doubleValue() == 0) { return 0; } else { return dividend.doubleValue() / (double) quotient.intValue(); } } } /** * build the division of given Doubles regardless of null * * {Category} NumberUtil * * {talendTypes} double | Double * * {param} double(2.5) dividend: dividend * * {param} int(4.3) quotient: quotient * * {example} div(2,4) result: 0.5 * */ public static double div(Integer dividend, Integer quotient) { if (dividend == null || quotient == null) { return 0; } else { if (quotient.doubleValue() == 0) { return 0; } else { return (double) dividend.intValue() / quotient.intValue(); } } } /** * build the division of given Doubles regardless of null * * {Category} NumberUtil * * {talendTypes} double | Double * * {param} double(2.5) dividend: dividend * * {param} int(4.3) quotient: quotient * * {example} div(2,4) result: 0.5 * */ public static double div(Integer dividend, Double quotient) { if (dividend == null || quotient == null) { return 0; } else { if (quotient.doubleValue() == 0) { return 0; } else { return ((double) dividend.intValue()) / quotient.doubleValue(); } } } }