📄 sortusersby.java
字号:
package com.eline.vod.security.model;
/**
* SortUsersBy Enum for control how user's are sorted - Note the sort is
* performed in the database.
*
* @author Lucifer
*
*/
public interface SortUsersBy {
public static final int JoinedDate = 0;
public static final int Username = 1;
public static final int LastActiveDate = 2;
public static final int Email = 3;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -