Idea的live template参数中的预定义功能
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: |
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. |
Idea的live template参数中的预定义功能的更多相关文章
- C标准中一些预定义的宏,如__FILE__,__func__等
C标准中一些预定义的宏 C标准中指定了一些预定义的宏,对于编程经常会用到.下面这个表中就是一些常常用到的预定义宏. 宏 意义 __DATE__ 进行预处理的日期(“Mmm dd yyyy”形式的字符串 ...
- WPF中取得预定义颜色
原文:WPF中取得预定义颜色 使用XAML代码取得.net预定义颜色:<Page xmlns="http://schemas.microsoft.com/winfx/2006/x ...
- 五十九、SAP中常用预定义系统变量
一.SAP中常用预定义系统变量 内容如下: 二.系统变量定义在结构SYST里,我们打开SE38 三.在代码编辑器输入SYST变量 四.双击SYST,来到这个系统结构,里面有很多系统变量 五.我们随便写 ...
- 五十八、SAP中常用预定义数据类型
一.SAP中常用预定义数据类型 注意事项如下: 1.默认的定义数据类型是CHAR. 2.取值的时候C型默认从左取,N型从右取,超过定义长度则截断. 3.C类型,可以赋值数值,也可以赋值字符,还可以混合 ...
- C++ 中常见预定义宏的使用
http://blog.csdn.net/hgl868/article/details/7058906 替代字符串: #define DOWNLOAD_IMAGE_LOG /var/log/png.l ...
- PHP中的预定义超全局数组
定义 超全局变量,是在全部作用域中始终可用的内置变量. PHP中的许多预定义变量都是"超全局的",这意味着它们在一个脚本的全部作用域中都可用. 在函数或方法中无需执行 global ...
- C标准中一些预定义的宏
C标准中指定了一些预定义的宏,对于编程经常会用到.下面这个表中就是一些常常用到的预定义宏. 宏(双下滑线) 意义 __DATE__ 进行预处理的日期(“Mmm dd yyyy”形式的字符串文字) __ ...
- PHP中的预定义常量、类常量和魔术常量的区别
PHP 向它运行的任何脚本提供了大量的预定义常量.不过很多常量都是由不同的扩展库定义的,只有在加载了这些扩展库时才会出现,或者动态加载后,或者在编译时已经包括进去了. 对于一些基本的常量是这些常量在 ...
- Linux中的预定义变量
解释: 主要是Bash中已经定好的变量,名称不能自定义,作用也是固定的 $? 最后一次执行的命令返回状态,0为成功,非0为失败 $$ 当前进程的进程号 $! 后台运行的最后一个进程的进程号 例子: [ ...
随机推荐
- centos下 redis安装配置及简单测试
1:安装redis(使用的的环境是centos6.7 redis-2.6.14) 将redis-2.6.14.tar.gz文件拷贝到/usr/local/src 目录下 解压文件 tar zxvf ...
- Java—继承、封装、抽象、多态
类.对象和包 1) 面向对象编程(Object Oriented Programming ,简称 OOP):20世纪70年代以后开始流行. 2) 结构化编程与面向对象编程的区别: A. 在结构化编程中 ...
- StringGrid 实例1:初始化StirngGrid的首行和首列
实例1:初始化StirngGrid的首行和首列
- 【转】python fabric实现远程操作和部署
fabric title是开发,但是同时要干开发测试还有运维的活……为毛 task*3 不是 salary * 3 (o(╯□╰)o) 近期接手越来越多的东西,发布和运维的工作相当机械,加上频率还蛮高 ...
- selenium通过WebDriverWait实现ajax测试,实现等页面元素加载完成
WebDriverWait(driver, 10)10秒内每隔500毫秒扫描1次页面变化,当出现指定的元素后结束. http://fox1984.iteye.com/blog/1225265new W ...
- javaweb 乱码---汉字存入mysql数据库中变成乱码
今天郁闷了一天,java程序在向mysql插入数据前不是乱码,数据库安装时也选了编码为utf8(和我程序的编码格式一致).可是插入数据就变成乱码,相当郁闷. 原因:mysql的配置文件中的编码并没有改 ...
- SQL Server 存储引擎-剖析Forwarded Records
我们都知道数据在存储引擎中是以页的形式组织的,但数据页在不同的组织形式中其中对应的数据行存储是不尽相同的,这里通过实例为大家介绍下堆表的中特有的一种情形Forwared Records及处理方式. 概 ...
- Dynamic CRM 2013学习笔记(二十四)页面保存前进行逻辑验证
我们有时要验证下页面上的一些逻辑,比如开始时间不能晚于结束时间,不对时不让保存.我们可以在相关的字段事件上处理,但这如果要判断的字段比较多时,就比较麻烦了. 这时候我们就可以利用Form的OnSave ...
- Docker学习笔记整理
Docker接触有一段时间了,但是对于Docker的使用可以说是一点不会.现在要在Docker上部署基于Angular开发的页面.只能一点点积累查找的资料,顺手整理一下,方便后面的回顾. 其中用到的资 ...
- hadoop2.X使用手册1:通过web端口查看主节点、slave1节点及集群运行状态
导读内容:1.如何通过web查看hdfs集群状态2.如何通过web查看运行在在主节点master上ResourceManager状态3.如何通过web查看运行在在slave节点NodeManager资 ...