org.qbicc.main.PlatformConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qbicc-main Show documentation
Show all versions of qbicc-main Show documentation
The main entry point for Qbicc
The 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);
}
}