Java Number Value Of valueOf(int i)

Here you can find the source of valueOf(int i)

Description

value Of

License

Open Source License

Declaration

public static boolean valueOf(int i) 

Method Source Code

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

public class Main {
    public static boolean valueOf(int i) {
        return (i != 0);
    }/*from w  w  w .j a va 2s  . c  om*/
}

Related

  1. valueOf(char c)
  2. valueOf(char hexChar)
  3. valueOf(Class enumType, int ordinal)
  4. valueOf(final Boolean value)
  5. valueOf(float f)
  6. valueOf(int i)
  7. valueOf(int number)
  8. valueOf(int[] source)
  9. valueOf(Integer value)