Class DatePrefixIdConverter
- All Implemented Interfaces:
- Decorator<IdConverter>,- IdConverter,- Statistical
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Constructor Details- 
DatePrefixIdConverter
 
- 
- 
Method Details- 
asStringDescription copied from interface:IdConverterConvert alongtype ID to itsStringrepresentation.This method transforms a numeric ID into a string format according to the specific conversion algorithm implemented by the converter. For example, a radix converter might convert the number 12345 to "3d7". - Specified by:
- asStringin interface- IdConverter
- Parameters:
- id- The- longtype ID to convert
- Returns:
- The Stringrepresentation of the ID
 
- 
asLongDescription copied from interface:IdConverterConvert aStringtype ID back to itslongrepresentation.This method performs the reverse operation of IdConverter.asString(long), transforming a string ID back into its original numeric form. Implementations should be able to correctly parse strings generated by theirIdConverter.asString(long)method.- Specified by:
- asLongin interface- IdConverter
- Parameters:
- idString- The- Stringtype ID to convert
- Returns:
- The longrepresentation of the ID
 
- 
getActualDescription copied from interface:DecoratorGet the actual (wrapped) object that this decorator is enhancing.This method returns the underlying object that this decorator is wrapping. For ID generators, this would typically be the base generator that is being enhanced with additional functionality. - Specified by:
- getActualin interface- Decorator<IdConverter>
- Returns:
- The actual object being decorated
 
- 
statDescription copied from interface:IdConverterGet statistical information about this converter.This method provides basic statistical information about the converter, including its implementation class name. - Specified by:
- statin interface- IdConverter
- Specified by:
- statin interface- Statistical
- Returns:
- Statistical information about this converter
 
 
-