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

com.github.mengxianun.core.EnumLowerName Maven / Gradle / Ivy

The newest version!
package com.github.mengxianun.core;

/**
 * Enum lowercase name
 * 
 * @author mengxiangyun
 *
 */
public interface EnumLowerName {

	public String name();

	default String lowerName() {
		return name().toLowerCase();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy