Here you can find the source of valueOf(Integer value)
Parameter | Description |
---|---|
value | a parameter |
public static int valueOf(Integer value)
//package com.java2s; //License from project: Apache License public class Main { /**/* ww w . ja v a 2 s .c o m*/ * * @param value * @return */ public static int valueOf(Integer value) { if (value != null) { return value; } return 0; } }