ru.r2cloud.apt.model.Architecture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apt-man Show documentation
Show all versions of apt-man Show documentation
Library for managing APT repository
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;
}
}