Package org.apache.juneau
Interface PropertyNamer
- All Known Subinterfaces:
- PropertyNamer.Void
- All Known Implementing Classes:
- BasicPropertyNamer,- PropertyNamerDLC,- PropertyNamerDUCS,- PropertyNamerULC
public interface PropertyNamer
Defines an API for converting conventional bean property names to some other form.
 
 For example, given the bean property PropertyNamerDLC property namer will convert
 this to 
 Property namers are associated with beans through the @Bean(propertyNamer) annotation.
 
See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic interfaceRepresents a non-existent class.
- 
Method SummaryModifier and TypeMethodDescriptiongetPropertyName(String name) Convert the specified default property name to some other value.
- 
Method Details- 
getPropertyNameConvert the specified default property name to some other value.- Parameters:
- name- The original bean property name.
- Returns:
- The converted property name.
 
 
-