集册 Java实例教程 删除Bean方法前缀

删除Bean方法前缀

欢马劈雪     最近更新时间:2020-01-02 10:19:05

430
删除Bean方法前缀
//nowjava.com - 时  代  Java 提 供

//package com.nowjava;


public class Main {



    public static String removeBeanMethodPrefix(String methodName) {

        if (methodName.startsWith("get")) { //NOI18N

            methodName = methodName.replaceFirst("get", "");

        }

        if (methodName.startsWith("set")) { //NOI18N

            methodName = methodName.replaceFirst("set", "");

        }

        if (methodName.startsWith("is")) { //NOI18N

            methodName = methodName.
展开阅读全文