Java Char Create toChars(String from)

Here you can find the source of toChars(String from)

Description

to Chars

License

Open Source License

Declaration

public static char[] toChars(String from) 

Method Source Code

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

public class Main {
    public static char[] toChars(String from) {
        return from.toCharArray();
    }//from   ww w.ja  va  2  s.com
}

Related

  1. toChars(byte b, char[] result, int position)
  2. toChars(final int cp, final char[] buffer, final int offset)
  3. toChars(int codePoint, char[] dst, int dstIndex)
  4. toChars(int number, char chars[])
  5. toChars(int[] src, int srcOff, int srcLen, char[] dest, int destOff)
  6. toChars(String s)
  7. toCharSequence(final Object value)
  8. toCharString(byte[] bytes)
  9. toCharWithoutOverflow(double value)