Java Object to Double asDouble(Object value)

Here you can find the source of asDouble(Object value)

Description

as Double

License

Apache License

Declaration

public static double asDouble(Object value) 

Method Source Code

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

public class Main {
    public static double asDouble(Object value) {
        return Double.valueOf(value.toString());
    }/*  w  ww. j  av a2  s. c  o m*/
}

Related

  1. asDouble(final Object object)
  2. asDouble(Object o)
  3. asDouble(Object obj)
  4. asDouble(Object val, Double def)
  5. asDouble(Object value)
  6. asDouble(Object value)
  7. castDouble(Object o)
  8. castDoubleToFloat(final double v)
  9. castShortToDouble(short[] x)