public interface IOModel
Provides methods that returns IOs from the current robot installation.
Modifier and Type | Method and Description |
---|---|
Collection<IO> |
getIOs() |
<T extends IO> |
getIOs(Class<T> clazz) |
Collection<IO> |
getIOs(Filter<IO> filter) |
Collection<IO> getIOs()
<T extends IO> Collection<T> getIOs(Class<T> clazz)
T
- The IO typeclazz
- the sort of IO of interest, e.g. AnalogIO.class
,
DigitalIO.class
, or ModbusIO.class
.Collection<IO> getIOs(Filter<IO> filter)
filter
- a filter, see IOFilterFactory
for examplesCopyright © 2018. All rights reserved.