All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.qbicc.main.PlatformConverter Maven / Gradle / Ivy

There is a newer version: 0.77.0
Show newest version
package org.qbicc.main;

import org.qbicc.machine.arch.Platform;
import picocli.CommandLine;

/**
 * A picocli converter for Platform values.
 */
public final class PlatformConverter implements CommandLine.ITypeConverter {
    public Platform convert(String value) throws IllegalArgumentException {
        return Platform.parse(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy