Top Description Methods
org.osgi.framework.connect

public Interface FrameworkUtilHelper

Annotations
@ConsumerType
Imports
java.util.Optional, org.osgi.annotation.versioning.ConsumerType, org.osgi.framework.Bundle, .FrameworkUtil

A helper for the FrameworkUtil class.

This helper provides alternative implementations for methods on FrameworkUtil.

Method Summary

Modifier and TypeMethod and Description
public default Optional<Bundle>

Returns:

An Optional containing the Bundle for the specified class, or an empty Optional if the specified class is not from a bundle.
getBundle
(Class<?>
A class associated with a bundle.
classFromBundle
)

Returns the Bundle associated with the specified class.

Method Detail

getBundleback to summary
public default Optional<Bundle> getBundle(Class<?> classFromBundle)

Returns the Bundle associated with the specified class.

This helper method is called by FrameworkUtil#getBundle(Class) if the standard implementation of FrameworkUtil is unable to find the bundle.

Parameters
classFromBundle:Class<?>

A class associated with a bundle.

Returns:Optional<Bundle>

An Optional containing the Bundle for the specified class, or an empty Optional if the specified class is not from a bundle.