com.shixinke.utils.web.annotation.NameStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-utils Show documentation
Show all versions of web-utils Show documentation
Toolbox commonly used in web development
package com.shixinke.utils.web.annotation;
/**
* Variable naming style
* @author shixinke
* @version 1.0
* created 19-2-22 下午3:16
*/
public enum NameStyle {
/**
* Hump method
* example : userId
*/
CAMEL,
/**
* example : user_id
*/
UNDERLINE
}