Package org.osgi.util.converter
Interface InternalConverting
-
- All Superinterfaces:
Converting
,Specifying<Converting>
- All Known Implementing Classes:
ConvertingImpl
,CustomConverterImpl.ConvertingWrapper
interface InternalConverting extends Converting
This interface is the same as theConverting
interface with the addition that the current converter (which may include custom rules) can be set on it. This allows the converter to be re-entrant and use itself for sub-conversions if applicable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setConverter(Converter c)
Set the current converter.-
Methods inherited from interface org.osgi.util.converter.Converting
to, to, to
-
Methods inherited from interface org.osgi.util.converter.Specifying
defaultValue, keysIgnoreCase, sourceAs, sourceAsBean, sourceAsDTO, targetAs, targetAsBean, targetAsDTO, view
-
-
-
-
Method Detail
-
setConverter
void setConverter(Converter c)
Set the current converter.- Parameters:
c
- The current converter.
-
-