本文整理汇总了Java中org.febit.util.StringUtil.cutSuffix方法的典型用法代码示例。如果您正苦于以下问题:Java StringUtil.cutSuffix方法的具体用法?Java StringUtil.cutSuffix怎么用?Java StringUtil.cutSuffix使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.febit.util.StringUtil
的用法示例。
在下文中一共展示了StringUtil.cutSuffix方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addModule
import org.febit.util.StringUtil; //导入方法依赖的package包/类
public static void addModule(String module) {
if (module == null) {
return;
}
MODULES.add(module);
module = StringUtil.cutPrefix(module, "classpath:");
MODULES.add(module);
module = StringUtil.cutSuffix(module, ".props");
MODULES.add(module);
}
示例2: Column
import org.febit.util.StringUtil; //导入方法依赖的package包/类
public Column(Table table, TableSettings.Attrs attrs, String sqlName, String name, String javaType, int size, boolean ispk, boolean isUnique, boolean optional, List<ColumnEnum> enums, String fkHint, Object defaultValue, String remark) {
this.table = table;
this.attrs = attrs;
this.size = size;
this.isUnique = isUnique;
this.optional = optional;
this.ispk = ispk;
this.remark = remark;
this.name = name;
this.type = javaType;
this.sqlName = sqlName;
this.enums = enums;
this.defaultValue = defaultValue;
this.fkHint = fkHint != null ? fkHint : attrs.getValidString("fk");
this.query = attrs.getBoolean("query");
this.fkVarName = StringUtil.cutSuffix(name, "Id");
this.linkColumns = new ArrayList<>();
if (enums != null) {
this.enumMap = new HashMap<>();
enums.forEach((columnEnum) -> {
this.enumMap.put(columnEnum.value, columnEnum);
});
} else {
this.enumMap = null;
}
}
示例3: resolveClassActionPath
import org.febit.util.StringUtil; //导入方法依赖的package包/类
protected String resolveClassActionPath(Class<?> actionType) {
String actionClassPath = actionType.getSimpleName();
actionClassPath = StringUtil.cutSuffix(actionClassPath, "Action");
actionClassPath = StringUtil.lowerFirst(actionClassPath);
return actionClassPath;
}