Java String Upper Case toUpperCase(String text)

Here you can find the source of toUpperCase(String text)

Description

to Upper Case

License

Apache License

Declaration

public static String toUpperCase(String text) 

Method Source Code

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

public class Main {
    public static String toUpperCase(String text) {
        if (text == null) {
            return null;
        } else {/*from   w  w w .j a  v a  2s.  c  om*/
            return text.toUpperCase();
        }
    }
}

Related

  1. toUpperCase(String str)
  2. toUpperCase(String string)
  3. toUpperCase(String string)
  4. toUpperCase(String text)
  5. toUpperCase(String text)
  6. toUpperCase(String value)
  7. toUpperCase(String value)
  8. toUpperCase(String[] header)
  9. toUpperCase(String[] list)