Class SplitCamelCaseIdentifier


  • public class SplitCamelCaseIdentifier
    extends java.lang.Object
    Split a camel case identifier into individual words.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String ident  
    • Constructor Summary

      Constructors 
      Constructor Description
      SplitCamelCaseIdentifier​(java.lang.String ident)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Collection<java.lang.String> split()
      Split the identifier into words.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • ident

        private final java.lang.String ident
    • Constructor Detail

      • SplitCamelCaseIdentifier

        public SplitCamelCaseIdentifier​(java.lang.String ident)
        Constructor.
        Parameters:
        ident - the identifier to split into words
    • Method Detail

      • split

        public java.util.Collection<java.lang.String> split()
        Split the identifier into words.
        Returns:
        Collection of words in the identifier