public interface DriverArchitectureSpec
Interface for configuring driver architecture.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public void |
setArchitecture(String arch)Sets architecture to something other than the default. |
|
public void |
setArchitecture(org.ysb33r.grolifant5.api.core.OperatingSystem$Arch arch)Sets architecture to something other than the default. |
|
public void |
setArchitecture(Provider<OperatingSystem.Arch> arch)Sets architecture to something other than the default. |
|
public void |
setFallbackTo32Bit(boolean fallbackTo32Bit)Whether to fall back to a 32bit driver if 64bit is not available. |
|
public void |
setFallbackTo32Bit(Provider<Boolean> fallbackTo32Bit)Whether to fall back to a 32bit driver if 64bit is not available. |
Sets architecture to something other than the default.
arch - String that represents architecture.Sets architecture to something other than the default.
arch - Grolifant's OperatingSystem.Arch.Sets architecture to something other than the default.
arch - Provider to an instance of Grolifant's OperatingSystem.Arch.Whether to fall back to a 32bit driver if 64bit is not available.
fallbackTo32Bit - true if fallback is enabled.