H - The type of the handle.LinkComponentHandle<H>, LinkComponentHandle.DeviceAutomatonHandle<H>, OpenableHandle.OpenAutomatonHandle<H>public interface OpenableHandle<H>
OpenableHandle interface defines those methods related to the
handle based open/connect life-cycle.
The handle reference requires the Openable interface to be
implemented.
| Modifier and Type | Interface | Description |
|---|---|---|
static interface |
OpenableHandle.OpenAutomatonHandle<H> |
The
OpenableHandle.OpenAutomatonHandle interface defines those methods related
to the handle based open/connect life-cycle. |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
hasOpenable(H aHandle) |
Determines whether the handle reference is openable by implementing the
Openable interface. |
void |
open(H aHandle) |
Open/connect the component identified by the given handle.
|
default void |
openUnchecked(H aHandle) |
Opens the component by calling
open(Object) without you to
require catching an OpenException. |
boolean hasOpenable(H aHandle) throws UnknownHandleRuntimeException
Openable interface.aHandle - The handle to test whether the reference provides the
according functionality.UnknownHandleRuntimeException - in case the handle is unknown.void open(H aHandle) throws OpenException, UnknownHandleRuntimeException, UnsupportedHandleOperationRuntimeException, IllegalHandleStateChangeRuntimeException
aHandle - The handle identifying the component.OpenException - in case opening/connecting fails.UnknownHandleRuntimeException - in case the given handle is
unknown.UnsupportedHandleOperationRuntimeException - in case the reference
of the handle does not support the requested operation.IllegalHandleStateChangeRuntimeException - Thrown in case a state
change is not possible due to the current state the referenced
component is in.default void openUnchecked(H aHandle)
open(Object) without you to
require catching an OpenException.aHandle - The handle identifying the component.org.refcodes.exception.HiddenException - encapsulates the cause and is thrown upon
encountering a OpenException exceptionCopyright © 2018. All rights reserved.