Uses of Class
com.mouseviator.fsuipc.FSUIPCWrapper.FSUIPCSimVersion
Package | Description |
---|---|
com.mouseviator.fsuipc |
This package contains two main classes that implement the Java FSUIPC SDK.
|
-
Uses of FSUIPCWrapper.FSUIPCSimVersion in com.mouseviator.fsuipc
Fields in com.mouseviator.fsuipc with type parameters of type FSUIPCWrapper.FSUIPCSimVersion Modifier and Type Field Description static java.util.HashMap<FSUIPCWrapper.FSUIPCSimVersion,java.lang.String>
FSUIPC. FSUIPC_SIM_VERSION_TEXT
A has map with simulator names, giving some explanation to FSUIPC supported simulator values.Methods in com.mouseviator.fsuipc that return FSUIPCWrapper.FSUIPCSimVersion Modifier and Type Method Description static FSUIPCWrapper.FSUIPCSimVersion
FSUIPCWrapper.FSUIPCSimVersion. get(int value)
ReturnsFSUIPCWrapper.FSUIPCSimVersion
by corresponding int value.static FSUIPCWrapper.FSUIPCSimVersion
FSUIPCWrapper.FSUIPCSimVersion. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FSUIPCWrapper.FSUIPCSimVersion[]
FSUIPCWrapper.FSUIPCSimVersion. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.mouseviator.fsuipc with parameters of type FSUIPCWrapper.FSUIPCSimVersion Modifier and Type Method Description int
FSUIPC. connect(FSUIPCWrapper.FSUIPCSimVersion simVersion)
Open FSUIPC connection to selected simulator version.java.lang.String
FSUIPC. getFSVersion(FSUIPCWrapper.FSUIPCSimVersion simVersion)
This function will return one text fromFSUIPC.FSUIPC_SIM_VERSION_TEXT
based on the result of the call of the functionFSUIPCWrapper.getFSVersion()
.If it fails to convert result of functionFSUIPCWrapper.getFSVersion()
toFSUIPCWrapper.FSUIPCSimVersion
, the returned value will be an empty string.boolean
FSUIPC. waitForConnection(FSUIPCWrapper.FSUIPCSimVersion simVersion, int repeatPeriod)
This method will init thread that will continuously try to connect to simulator via FSUIPC till success.