Java Object NVL nvl(String str)

Here you can find the source of nvl(String str)

Description

nvl

License

Open Source License

Declaration

public static String nvl(String str) 

Method Source Code

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

public class Main {
    public static String nvl(String str) {
        return isNull(str) ? "" : str;
    }/*from  w w  w.j  av a2s.  c om*/

    public static boolean isNull(String str) {
        return str == null;
    }
}

Related

  1. nvl(String s)
  2. nvl(String s, String def)
  3. NVL(String s, String valorPorDefecto)
  4. NVL(String source, String def)
  5. nvl(String source, String defaultString)
  6. nvl(String str, String nullString)
  7. NVL(String str, String replace)
  8. nvl(String string)
  9. nvl(String value)