Uses of Interface
provided.utils.logic.ILogicalHost
Packages that use ILogicalHost
Package
Description
Implementations of logical hosts that represent specific
compound logical operations on other logical hosts.
-
Uses of ILogicalHost in provided.utils.logic.impl
Classes in provided.utils.logic.impl that implement ILogicalHostModifier and TypeClassDescriptionclass
An ILogicalHost that represents the logical AND of two ILogicalHosts.class
An ILogicalHost that represents the logical NOT of the given ILogicalHost.class
An ILogicalHost that represents the logical OR of two ILogicalHosts.class
An ILogicalHost that represents the logical XOR of two ILogicalHosts.Fields in provided.utils.logic.impl declared as ILogicalHostModifier and TypeFieldDescriptionprivate ILogicalHost
LogicalNotHost.host
The given logical hostprivate ILogicalHost
LogicalAndHost.hostA
The first logical hostprivate ILogicalHost
LogicalOrHost.hostA
The first logical hostprivate ILogicalHost
LogicalXOrHost.hostA
The first logical hostprivate ILogicalHost
LogicalAndHost.hostB
The second logical hostprivate ILogicalHost
LogicalOrHost.hostB
The second logical hostprivate ILogicalHost
LogicalXOrHost.hostB
The second logical hostConstructors in provided.utils.logic.impl with parameters of type ILogicalHostModifierConstructorDescriptionLogicalAndHost(ILogicalHost hostA, ILogicalHost hostB)
Construct the logical AND of the two hosts.LogicalNotHost(ILogicalHost host)
Construct the logical NOT of the given hosts.LogicalOrHost(ILogicalHost hostA, ILogicalHost hostB)
Construct the logical OR of the two hosts.LogicalXOrHost(ILogicalHost hostA, ILogicalHost hostB)
Construct the logical XOR of the two hosts.