Uses of Interface
jdk.dynalink.Namespace
Package
Description
Contains interfaces and classes that are used to link an
invokedynamic
call site.-
Uses of Namespace in jdk.dynalink
Modifier and TypeClassDescriptionenum
An enumeration of standard namespaces defined by Dynalink.Modifier and TypeMethodDescriptionNamespaceOperation.getNamespace
(int i) Returns the i-th namespace in this namespace operation.NamespaceOperation.getNamespaces()
Returns the namespaces in this namespace operation.static Namespace[]
NamespaceOperation.getNamespaces
(Operation op) If the passed operation is a namespace operation, returns itsNamespaceOperation.getNamespaces()
, otherwise returns an empty array.Modifier and TypeMethodDescriptionboolean
Returns true if this namespace operation contains a namespace equal to the specified namespace.static boolean
Returns true if the specified operation is aNamespaceOperation
and its base operation is equal to the specified operation, and it contains the specified namespace.default NamespaceOperation
Operation.withNamespace
(Namespace namespace) Returns aNamespaceOperation
using this operation as its base.default NamespaceOperation
Operation.withNamespaces
(Namespace... namespaces) Returns aNamespaceOperation
using this operation as its base.ModifierConstructorDescriptionNamespaceOperation
(Operation baseOperation, Namespace... namespaces) Constructs a new namespace operation.