Class BasicPropertyNamer

java.lang.Object
org.apache.juneau.BasicPropertyNamer
All Implemented Interfaces:
PropertyNamer

public class BasicPropertyNamer extends Object implements PropertyNamer
Default property namer.
Example:
  • "fooBar" -> "fooBar"
  • "fooBarURL" -> "fooBarURL"
  • "FooBarURL" -> "fooBarURL"
  • "URL" -> "URL"

See Introspector.decapitalize(String) for exact rules.

See Also: