public interface AppleDevice
Modifier and Type | Method and Description |
---|---|
String |
getArchitecture()
String that represents the architecture of the device (i.e., "x86_64", etc)
|
default String |
getHost()
String that represents the host of the device
|
default boolean |
getIs_local()
String that indicates if the device is local or remote ("true" or "false")
|
String |
getName()
String that represents the name of the device (i.e., "iPhone X", "iPad Air", etc)
|
String |
getOs_version()
String that represents the iOS version running on the device (i.e., "iOS 12.4", etc)
|
default int |
getPort()
String that represents the port of the device
|
String |
getState()
String that represents the state of the device (i.e., "Booted", "Shutdown", etc)
|
String |
getType()
String that represents the type of the device ("simulator" or "device")
|
String |
getUdid()
String that represents the udid of the device (its identifier)
|
static AppleDevice |
of(String name,
String udid,
String state,
String type,
String os_version,
String architecture) |
String getName()
String getUdid()
String getState()
String getType()
String getOs_version()
String getArchitecture()
@Value.Derived default String getHost()
@Value.Derived default int getPort()
@Value.Derived default boolean getIs_local()