Java Number Round roundToMultipleXLength(int inLength, int multipler)

Here you can find the source of roundToMultipleXLength(int inLength, int multipler)

Description

round To Multiple X Length

License

Apache License

Declaration

public static int roundToMultipleXLength(int inLength, int multipler) 

Method Source Code

//package com.java2s;
/**/*from   w  w w  . j  av  a 2 s  . c o m*/
 *      Copyright (C) 2012 SequoiaDB Inc.
 *
 *   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 {
    public static int roundToMultipleXLength(int inLength, int multipler) {
        if (multipler == 0)
            return inLength;

        return inLength % multipler == 0 ? inLength : inLength + multipler
                - inLength % multipler;
    }
}

Related

  1. roundToInt(final double d)
  2. roundToInterval(float num, float interval)
  3. roundToMil(double val)
  4. roundToMultiple(int value, int divisor)
  5. roundToMultiple(int value, int multipleOf)
  6. roundToN(double d, int n)
  7. roundToNDecimalPlaces(final double in, final int n)
  8. roundToNDigits(double d, int n)
  9. roundToNearest(double d)