Package io.microsphere.util
Interface Utils
-
- All Known Implementing Classes:
AccessibleObjectUtils
,AnnotationUtils
,ArrayUtils
,CharSequenceUtils
,CharsetUtils
,ClassLoaderUtils
,ClassPathUtils
,ClassUtils
,CollectionUtils
,ConstructorUtils
,EnumerationUtils
,ExceptionUtils
,ExecutableUtils
,ExecutorUtils
,FieldUtils
,FileUtils
,FilterUtils
,FormatUtils
,IOUtils
,JarUtils
,JmxUtils
,JSONUtils
,Lists
,ListUtils
,ManagementUtils
,Maps
,MapUtils
,MemberUtils
,MethodHandlesLookupUtils
,MethodHandleUtils
,MethodUtils
,NumberUtils
,PropertiesUtils
,PropertyResourceBundleUtils
,ProxyUtils
,QueueUtils
,ReflectionUtils
,ServiceLoaderUtils
,Sets
,SetUtils
,ShutdownHookUtils
,StackTraceUtils
,StringUtils
,SystemUtils
,TypeUtils
,URLUtils
,VersionUtils
public interface Utils
A marker interface serving as a base for utility classes within the MicroSphere framework.This interface is intended to be extended by utility classes that provide static methods for common operations. It helps in organizing utility classes under a common type hierarchy.
Example Usage
public final class MyUtils implements Utils { private MyUtils() {} public static void doSomething() { // Utility logic here } }