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 TypeClassDescriptionclassAn ILogicalHost that represents the logical AND of two ILogicalHosts.classAn ILogicalHost that represents the logical NOT of the given ILogicalHost.classAn ILogicalHost that represents the logical OR of two ILogicalHosts.classAn ILogicalHost that represents the logical XOR of two ILogicalHosts.Fields in provided.utils.logic.impl declared as ILogicalHostModifier and TypeFieldDescriptionprivate ILogicalHostLogicalNotHost.hostThe given logical hostprivate ILogicalHostLogicalAndHost.hostAThe first logical hostprivate ILogicalHostLogicalOrHost.hostAThe first logical hostprivate ILogicalHostLogicalXOrHost.hostAThe first logical hostprivate ILogicalHostLogicalAndHost.hostBThe second logical hostprivate ILogicalHostLogicalOrHost.hostBThe second logical hostprivate ILogicalHostLogicalXOrHost.hostBThe 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.