Package com.spotify.styx.util
Class ClassEnforcer
- java.lang.Object
-
- com.spotify.styx.util.ClassEnforcer
-
public class ClassEnforcer extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanassertNotInstantiable(java.lang.Class<?> cls)Verify cls is not instantiable with default constructor.
-
-
-
Method Detail
-
assertNotInstantiable
public static boolean assertNotInstantiable(java.lang.Class<?> cls) throws java.lang.ReflectiveOperationExceptionVerify cls is not instantiable with default constructor.- Parameters:
cls- the class to verify- Throws:
java.lang.ReflectiveOperationException- if cls does not have a default constructorjava.lang.AssertionError- if
-
-