/* * AppleCommander - An Apple ][ image utility. * Copyright (C) 2019-2022 by Robert Greene and others * robgreene at users.sourceforge.net * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package io.github.applecommander.acx.converter; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.Map; import io.github.applecommander.acx.ExportMethod; import picocli.CommandLine.ITypeConverter; import picocli.CommandLine.TypeConversionException; public class ExportMethodConverter implements ITypeConverter { public static final Map EXPORTS = new HashMap<>(); static { for (ExportMethod x : ExportMethod.values()) { for (String code : x.getCodes()) { EXPORTS.put(code, x); } } } @Override public ExportMethod convert(String value) throws Exception { if (EXPORTS.containsKey(value)) { return EXPORTS.get(value); } throw new TypeConversionException(String.format("Export method not found: %s", value)); } public static class ExportMethodCandidates extends ArrayList { private static final long serialVersionUID = -744232190636905235L; ExportMethodCandidates() { super(EXPORTS.keySet()); Collections.sort(this); } } }