All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.featherfly.common.io.file.rename.NoRenamePolicy Maven / Gradle / Ivy

The newest version!

package cn.featherfly.common.io.file.rename;

import cn.featherfly.common.io.file.RenamePolicy;


/**
 * 

* 不重名的策略(原样返回) *

* * @author zhongj */ public class NoRenamePolicy implements RenamePolicy{ /** */ public NoRenamePolicy() { } /** * {@inheritDoc} */ @Override public String rename(String fileName) { return fileName; } // ******************************************************************** // property // ******************************************************************** }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy