Idea的live template参数中的预定义功能

简介: Predefined Functions to Use in Live Template Variables ItemDescriptionannotated("annotation qname") Creates a symbol of type with an annotation that resides at the specified location.

Predefined Functions to Use in Live Template Variables

Item Description
annotated("annotation qname") Creates a symbol of type with an annotation that resides at the specified location. For an example, see Live Templates in the iterations group.
arrayVariable() Suggests all array variables applicable in the current scope. For an example, see Live Templates in the iterations group.
anonymousSuper() Suggests a supertype for a Kotlin object expression.
сamelCase(String) Returns the string passed as a parameter, converted to camel case. For example, my-text-file/my text file/my_text_file will be converted to myTextFile.
capitalize(String) Capitalizes the first letter of the name passed as a parameter.
capitalizeAndUnderscore(sCamelCaseName) Capitalizes the all letters of a CamelCase name passed as a parameter, and inserts an underscore between the parts. For example, if the string passed as a parameter isFooBar, then the function returns FOO_BAR.
castToLeftSideType() Casts the right-side expression to the left-side expression type. It is used in the iterationsgroup to have a single template for generating both raw-type and Generics Collections.
className(sClassName) Returns the name of the current class (the class where the template is expanded).
classNameComplete() This expression substitutes for the class name completion at the variable position.
clipboard() Returns the contents of the system clipboard.
camelCase(String) Returns CamelCase string out of snake_case string. For example, if the string passed as a parameter is foo_bar, then the function returns fooBar.
complete() This expression substitutes for the code completion invocation at the variable position.
completeSmart() This expression substitutes for the smart type completion invocation at the variable position.
componentTypeOf (<array variable or array type>) Returns component type of an array. For example, see the Live Templates in theiterations group in the other group.
currentPackage() Returns the current package name.
date(sDate) Returns the current system date in the specified format.

By default, the current date is returned in the default system format. However, if you specify date format in double quotes, the date will be presented in this format:

date_format
decapitalize(sName) Replaces the first letter of the name passed as a parameter with the corresponding lowercase letter.
descendantClassEnum(<String>) Shows the children of the class entered as a string parameter.
enum(sCompletionString1,sCompletionString2,...) List of comma-delimited strings suggested for completion at the template invocation.
escapeString(sEscapeString) Escapes the specified string.
expectedType() Returns the type which is expected as a result of the whole template. Makes sense if the template is expanded in the right part of an assignment, after return, etc.
fileName(sFileName) Returns file name with extension.
fileNameWithoutExtension() Returns file name without extension.
firstWord(sFirstWord) Returns the first word of the string passed as a parameter.
groovyScript("groovy code") Returns Groovy script with the specified code.
You can use groovyScript macro with multiple arguments. The first argument is a script text that is executed or a path to the file that contains a script. The next arguments are bound to _1, _2, _3, ..._n variables that are available inside your script. 
Also, _editor variable is available inside the script. This variable is bound to the current editor.
guessElementType (<container>) Makes a guess on the type of elements stored in a java.util.Collection. To make a guess, IntelliJ IDEA tries to find the places where the elements were added to or extracted from the container.
iterableComponentType(<ArrayOrIterable>) Returns the type of an iterable component, such as an array or a collection.
iterableVariable() Returns the name of a variable that can be iterated.
lineNumber() Returns the current line number.
lowercaseAndDash(String) Returns lower case separated by dashes, of the string passed as a parameter. For example, the string MyExampleName is converted to my-example-name.
methodName() Returns the name of the embracing method (where the template is expanded).
methodParameters() Returns the list of parameters of the embracing method (where the template is expanded).
methodReturnType() Returns the type of the value returned by the current method (the method within which the template is expanded).
qualifiedClassName() Returns the fully qualified name of the current class (the class where the template is expanded).

Clear the Shorten FQ names check box.

rightSideType() Declares the left-side variable with a type of the right-side expression. It is used in theiterations group to have a single template for generating both raw-type and Generics Collections.
snakeCase(sCamelCaseText) Returns snake_case string out of CamelCase string passed as a parameter.
spaceSeparated(String) Returns string separated with spaces out of CamelCase string passed as a parameter. For example, if the string passed as a parameter is fooBar, then the function returns foo bar.
subtypes(sType) Returns the subtypes of the type passed as a parameter.
suggestIndexName() Suggests the name of an index variable. Returns i if there is no such variable in scope, otherwise returns j if there is no such variable in scope, etc.
suggestVariableName() Suggests the name for a variable based on the variable type and its initializer expression, according to your code style settings that refer to the variable naming rules.
For example, if it is a variable that holds an element within iteration, IntelliJ IDEA makes a guess on the most reasonable names, also taking into account the name of the container being iterated.
suggestFirstVariableName(sFirstVariableName) Doesn't suggest true, false, this, super.
time(sSystemTime) Returns the current system time.
typeOfVariable(VAR) Returns the type of the variable passed as a parameter.
underscoresToCamelCase(sCamelCaseText) Returns the string passed as a parameter with CamelHump letters substituting for underscores. For example, if the string passed as a parameter is foo_bar, then the function returns fooBar.
underscoresToSpaces(sParameterWithSpaces) Returns the string passed as a parameter with spaces substituting for underscores.
user() Returns the name of the current user.
variableOfType(<type>) Suggests all variables that may be assigned to the type passed as a parameter, for example variableOfType("java.util.Vector"). If you pass an empty string ("") as a parameter, suggests all variables regardless of their types.
JsArrayVariable Returns JavaScript array name.
jsClassName() Returns the name of the current JavaScript class.
jsComponentType Returns the JavaScript component type.
jsMethodName() Returns the name of the current JavaScript method.
jsQualifiedClassName Returns the complete name of the current JavaScript class.
jsSuggestIndexName Returns a suggested name for an index.
jsSuggestVariableName Returns a suggested name for a variable.
目录
相关文章
|
2月前
|
数据可视化 Java uml
IDEA中一个被低估的功能,一键把项目代码绘制成UML类图
IDEA中一个被低估的功能,一键把项目代码绘制成UML类图
28 1
|
3月前
IntelliJ IDEA 自定义控制台输出多颜色格式功能 --- 安装Grep Console插件
IntelliJ IDEA 自定义控制台输出多颜色格式功能 --- 安装Grep Console插件
130 0
|
7月前
|
开发框架 前端开发 Java
【IntelliJ IDEA】idea 实用功能Auto Import:自动优化导包(自动删除、导入包)
【IntelliJ IDEA】idea 实用功能Auto Import:自动优化导包(自动删除、导入包)
174 0
|
5月前
|
SQL Java 关系型数据库
在IDEA中配置MySQL数据库连接以及在使用mybatis时设置sql语句的代码提示功能
在IDEA中配置MySQL数据库连接以及在使用mybatis时设置sql语句的代码提示功能
恕我直言,IDEA的这个分析功能,只有不到10%的程序员知道
最近,有同学问我,为什么你如此钟爱IDEA? 因为你越用越顺手,还能不断给你惊喜,让你乐此不疲的去挖掘它的功能。
|
6月前
|
微服务
IDEA如何配置启动参数
IDEA如何配置启动参数
95 0
|
6月前
IntelliJ idea 添加参数
IntelliJ idea 添加参数
|
7月前
|
SQL IDE Linux
IDEA:7个强大功能助你高效编码和优质工作!
IDEA:7个强大功能助你高效编码和优质工作!
35 0
|
7月前
|
程序员 开发工具 git
震精!IDEA不为人知的功能竟被鹅厂用400页IntelliJ文档讲清楚了
这就是为什么在这种情况下,编辑器是屏幕上唯一可见的,具有所有其他与编码无关的功能的专用快捷方式。而且IDEA代表集成开发环境。 它是多种工具的组合,使软件开发过程更容易,更健壮,更不容易出错,为了帮助开发人员组织他们的工作流程,IntelliJ IDEA为他们提供了一个惊人的工具集,包括反编译器,Docker支持,字节码查看器,FTP和许多其他工具
|
8月前
|
安全 IDE Java
IDEA快捷键总结和各种实用功能
IDEA快捷键总结和各种实用功能
123 1