Java Double Number Print printDoubleIndentw(Object object)

Here you can find the source of printDoubleIndentw(Object object)

Description

Prints the double indent.

License

Open Source License

Parameter

Parameter Description
object the object

Declaration

public static void printDoubleIndentw(Object object) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    /**/*from w  w w.j  a  va 2 s .  c o  m*/
     * Prints the double indent.
     * 
     * @param object
     *            the object
     */
    public static void printDoubleIndentw(Object object) {
        System.out.println("\t \t" + object);
    }
}

Related

  1. printDouble(Double value)
  2. printDouble(double[] salida)
  3. printDoubleArray(double[] array)
  4. printDoubleArray(double[] array)
  5. printDoubleArray(double[] d)
  6. printDoubleMatrix(double[][] matrix)
  7. printDoubleVector(double[] pVec)