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

ru.r2cloud.apt.model.Architecture Maven / Gradle / Ivy

The newest version!
package ru.r2cloud.apt.model;

public enum Architecture {

	AMD64(false), I386(false), ANY(true), ALL(true), ARMHF(false), ARM64(false);
	
	private final boolean wildcard;
	
	private Architecture(boolean wildcard) {
		this.wildcard = wildcard;
	}
	
	public boolean isWildcard() {
		return wildcard;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy