Refactor Enum.forName error messages
This commit is contained in:
parent
21d562eadd
commit
4897adf913
|
@ -1,5 +1,7 @@
|
|||
package net.filebot;
|
||||
|
||||
import static java.util.Arrays.*;
|
||||
import static java.util.stream.Collectors.*;
|
||||
import static net.filebot.UserFiles.*;
|
||||
|
||||
import java.io.File;
|
||||
|
@ -7,6 +9,7 @@ import java.io.IOException;
|
|||
import java.nio.file.Files;
|
||||
import java.nio.file.LinkOption;
|
||||
import java.nio.file.attribute.BasicFileAttributes;
|
||||
import java.util.List;
|
||||
|
||||
import net.filebot.util.FileUtilities;
|
||||
|
||||
|
@ -163,12 +166,18 @@ public enum StandardRenameAction implements RenameAction {
|
|||
}
|
||||
}
|
||||
|
||||
public static StandardRenameAction forName(String action) {
|
||||
for (StandardRenameAction it : values()) {
|
||||
if (it.name().equalsIgnoreCase(action))
|
||||
return it;
|
||||
public static List<String> names() {
|
||||
return stream(values()).map(Enum::name).collect(toList());
|
||||
}
|
||||
|
||||
public static StandardRenameAction forName(String name) {
|
||||
for (StandardRenameAction action : values()) {
|
||||
if (action.name().equalsIgnoreCase(name)) {
|
||||
return action;
|
||||
}
|
||||
}
|
||||
throw new IllegalArgumentException("Illegal rename action: " + action);
|
||||
|
||||
throw new IllegalArgumentException(String.format("%s not in %s", name, names()));
|
||||
}
|
||||
|
||||
public static File revert(File current, File original) throws IOException {
|
||||
|
|
|
@ -1,16 +1,26 @@
|
|||
package net.filebot.cli;
|
||||
|
||||
import static java.util.Arrays.*;
|
||||
import static java.util.stream.Collectors.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public enum ConflictAction {
|
||||
|
||||
SKIP, OVERRIDE, FAIL, AUTO, INDEX;
|
||||
|
||||
public static ConflictAction forName(String action) {
|
||||
for (ConflictAction it : values()) {
|
||||
if (it.name().equalsIgnoreCase(action))
|
||||
return it;
|
||||
public static List<String> names() {
|
||||
return stream(values()).map(Enum::name).collect(toList());
|
||||
}
|
||||
|
||||
public static ConflictAction forName(String name) {
|
||||
for (ConflictAction action : values()) {
|
||||
if (action.name().equalsIgnoreCase(name)) {
|
||||
return action;
|
||||
}
|
||||
}
|
||||
|
||||
throw new IllegalArgumentException("Illegal conflict action: " + action);
|
||||
throw new IllegalArgumentException(String.format("%s not in %s", name, names()));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
package net.filebot.subtitle;
|
||||
|
||||
import static java.util.Arrays.*;
|
||||
import static java.util.stream.Collectors.*;
|
||||
import static net.filebot.util.FileUtilities.*;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.List;
|
||||
|
||||
import net.filebot.web.SubtitleDescriptor;
|
||||
|
||||
|
@ -49,13 +52,18 @@ public enum SubtitleNaming {
|
|||
|
||||
public abstract String format(File video, SubtitleDescriptor subtitle, String ext);
|
||||
|
||||
public static SubtitleNaming forName(String s) {
|
||||
for (SubtitleNaming it : values()) {
|
||||
if (it.name().equalsIgnoreCase(s) || it.toString().equalsIgnoreCase(s)) {
|
||||
return it;
|
||||
public static List<String> names() {
|
||||
return stream(values()).map(Enum::name).collect(toList());
|
||||
}
|
||||
|
||||
public static SubtitleNaming forName(String name) {
|
||||
for (SubtitleNaming naming : values()) {
|
||||
if (naming.name().equalsIgnoreCase(name)) {
|
||||
return naming;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
|
||||
throw new IllegalArgumentException(String.format("%s not in %s", name, names()));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
package net.filebot.vfs;
|
||||
|
||||
import static java.util.Collections.*;
|
||||
import static net.filebot.Logging.*;
|
||||
|
||||
import java.nio.ByteBuffer;
|
||||
import java.util.Collections;
|
||||
import java.util.EnumSet;
|
||||
import java.util.logging.Level;
|
||||
|
||||
public enum ArchiveType {
|
||||
|
||||
|
@ -25,12 +28,12 @@ public enum ArchiveType {
|
|||
return files;
|
||||
}
|
||||
} catch (Exception e) {
|
||||
// ignore
|
||||
debug.log(Level.WARNING, e, e::toString);
|
||||
}
|
||||
}
|
||||
|
||||
// cannot extract data, return empty archive
|
||||
return Collections.emptySet();
|
||||
return emptySet();
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -39,10 +42,12 @@ public enum ArchiveType {
|
|||
@Override
|
||||
public Iterable<MemoryFile> fromData(ByteBuffer data) {
|
||||
// cannot extract data, return empty archive
|
||||
return Collections.emptySet();
|
||||
return emptySet();
|
||||
}
|
||||
};
|
||||
|
||||
public abstract Iterable<MemoryFile> fromData(ByteBuffer data);
|
||||
|
||||
public static ArchiveType forName(String name) {
|
||||
if (name == null)
|
||||
return UNDEFINED;
|
||||
|
@ -53,6 +58,4 @@ public enum ArchiveType {
|
|||
return UNKOWN;
|
||||
}
|
||||
|
||||
public abstract Iterable<MemoryFile> fromData(ByteBuffer data);
|
||||
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ public enum SortOrder {
|
|||
}
|
||||
|
||||
public static List<String> names() {
|
||||
return stream(values()).map(SortOrder::name).collect(toList());
|
||||
return stream(values()).map(Enum::name).collect(toList());
|
||||
}
|
||||
|
||||
public static SortOrder forName(String name) {
|
||||
|
|
|
@ -6,6 +6,7 @@ import java.util.Locale;
|
|||
public class SubtitleSearchResult extends Movie {
|
||||
|
||||
public enum Kind {
|
||||
|
||||
Movie, Series, Other, Unkown;
|
||||
|
||||
public static Kind forName(String s) {
|
||||
|
|
Loading…
Reference in New Issue