Class DependencyUtils
- java.lang.Object
-
- com.thebuzzmedia.exiftool.commons.reflection.DependencyUtils
-
public final class DependencyUtils extends Object
Static Dependency Utilities.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isGuavaAvailable()
Check if Guava is available on the classpath.static boolean
isLog4j2Available()
Check if log4j2 is available on the classpath.static boolean
isLog4jAvailable()
Check if log4j is available on the classpath.static boolean
isSlf4jAvailable()
Check if slf4j is available on the classpath.
-
-
-
Method Detail
-
isGuavaAvailable
public static boolean isGuavaAvailable()
Check if Guava is available on the classpath.- Returns:
true
if guava is available,false
otherwise.
-
isSlf4jAvailable
public static boolean isSlf4jAvailable()
Check if slf4j is available on the classpath.- Returns:
true
if slf4j is available,false
otherwise.
-
isLog4jAvailable
public static boolean isLog4jAvailable()
Check if log4j is available on the classpath.- Returns:
true
if log4j is available,false
otherwise.
-
isLog4j2Available
public static boolean isLog4j2Available()
Check if log4j2 is available on the classpath.- Returns:
true
if log4j2 is available,false
otherwise.
-
-