码迷,mamicode.com
首页 > 其他好文 > 详细

移除字符串中的字符和移除字符串数组中的字符

时间:2014-09-07 02:13:54      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   cti   sp   on   c   ef   bs   



    /**
     * Remove a SASL mechanism from the list to be used.
     *
     * @param mech the SASL mechanism to be removed
     */
    public static void removeSaslMech(String mech) {
        if( defaultMechs.contains(mech) ) {
            defaultMechs.remove(mech);
        }
    }


   /**
     * Remove a Collection of SASL mechanisms to the list to be used.
     *
     * @param mechs the Collection of SASL mechanisms to be removed
     */
    public static void removeSaslMechs(Collection<String> mechs) {
        for(String mech : mechs) {
            removeSaslMech(mech);
        }
    }

移除字符串中的字符和移除字符串数组中的字符

标签:io   ar   for   cti   sp   on   c   ef   bs   

原文地址:http://blog.csdn.net/tw19811220/article/details/39109731

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!