com.googlecode.loosejar.output.Format Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of loosejar Show documentation
Show all versions of loosejar Show documentation
Java Agent which can discover unnecessary jars in classpath
The newest version!
package com.googlecode.loosejar.output;
public enum Format {
CSV, VERBAL;
public static Format fromString(String formatName) {
for (Format format : Format.values()) {
if (format.name().equalsIgnoreCase(formatName)) {
return format;
}
}
return null;
}
}