Java String Lower Case toLowerCase(int u)

Here you can find the source of toLowerCase(int u)

Description

to Lower Case

License

Apache License

Declaration

public static int toLowerCase(int u) 

Method Source Code

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

public class Main {
    public static int toLowerCase(int u) {
        return (u + 32);
    }/*  www . java2 s .  c  o  m*/
}

Related

  1. toLowerCase(final String s)
  2. toLowerCase(final String str)
  3. toLowerCase(final String[] strings)
  4. toLowerCase(final StringBuilder src)
  5. toLowercase(int codePoint)
  6. toLowerCase(String candidate)
  7. toLowerCase(String input)
  8. toLowerCase(String input)
  9. toLowerCase(String name)