public interface Adaptable
Adaptable
interface identifies objects which can be adapted
to other types or representations of the same object. For example a JCR Node
based Resource
can adapt to the
underlying JCR Node or a file based resource could adapt to the underlying
java.io.File
.Modifier and Type | Method and Description |
---|---|
<AdapterType> |
adaptTo(java.lang.Class<AdapterType> type)
Adapts the adaptable to another type.
|
<AdapterType> AdapterType adaptTo(java.lang.Class<AdapterType> type)
Please note that it is explicitly left as an implementation detail whether
each call to this method with the same type
yields the same
object or a new object on each call.
Implementations of this method should document their adapted types as well as their behaviour with respect to returning newly created or same instances on each call.
AdapterType
- The generic type to which this object is adapted
totype
- The Class object of the target type, such as
javax.jcr.Node.class
or
java.io.File.class
null
if the object cannot
adapt to the requested type"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"