Java String Quote quote(String name)

Here you can find the source of quote(String name)

Description

Quote the given name by prefixing it with a dollar ($)

License

Apache License

Declaration

public static String quote(String name) 

Method Source Code

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

public class Main {
    /** Quote the given name by prefixing it with a dollar ($) */
    public static String quote(String name) {
        return "$" + name;
    }/*from ww w  .  j ava 2  s . c  o  m*/
}

Related

  1. quote(String input)
  2. quote(String input)
  3. quote(String literal)
  4. quote(String message, String quotationMark)
  5. quote(String name)
  6. quote(String name)
  7. quote(String name)
  8. quote(String p_sql)
  9. quote(String p_string)