Interface CamelCase
- All Known Implementing Classes:
- AnimationDirection,- BackgroundClip,- BackgroundRepeat,- BoxSizing,- Cursor,- DockCornerPriority,- FontVariant,- MediaFeature,- OverflowWrap,- PseudoSelector,- TextAlign,- TextDecoration,- TextJustify,- WhiteSpace,- WordWrap
public interface CamelCase
Marker interface for option enums to indicate that their names should be converted from camel case before use
- 
Field SummaryFields
- 
Method SummaryStatic MethodsModifier and TypeMethodDescriptionstatic StringcamelCaseToCss(String camelCaseName) Converts a camel case string to a css string.static StringcssToCamelCase(String cssName) 
- 
Field Details- 
UPPERRegex pattern for a single upper-case letter
- 
DASH_LOWERRegex pattern for a dash followed by a single lower-case letter
 
- 
- 
Method Details- 
camelCaseToCssConverts a camel case string to a css string. e.g.camelCaseToCss("camelCase") = "camel-case"
- 
cssToCamelCase
 
-