Java Integer Divide dividable(final String charBitmap, final int row)

Here you can find the source of dividable(final String charBitmap, final int row)

Description

dividable

License

Apache License

Declaration

private static boolean dividable(final String charBitmap, final int row) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static boolean dividable(final String charBitmap, final int row) {
        return (charBitmap.length() % row) == 0;
    }/*from w  ww . j av  a 2  s . c  o m*/
}

Related

  1. divCeil(int a, int b)
  2. divCeil(int nNumerator, int nDenominator)
  3. divCeil(int pNum, int pDivisor)
  4. divCeil(int value, int divisor)
  5. divData(int numTest, int numTrain)
  6. divide(final String bitmap, final int row)
  7. divide(int numerator, int denominator)
  8. divide(int numerator, int denominator)
  9. divide(int value, int divideBy)