Class StudiedWord


  • public class StudiedWord
    extends java.lang.Object
    • Constructor Detail

      • StudiedWord

        public StudiedWord​(java.lang.CharSequence word,
                           int separators)
    • Method Detail

      • separatorCharFlags

        public static int separatorCharFlags​(char separator)
      • of

        public static StudiedWord of​(java.lang.CharSequence word,
                                     int separators)
      • getWord

        public java.lang.CharSequence getWord()
      • some

        public boolean some​(int flags)
      • none

        public boolean none​(int flags)
      • only

        public boolean only​(int flags)
      • is

        public boolean is​(int flags)
      • all

        public boolean all​(int flags)
      • first

        public boolean first​(int flags)
      • rest

        public boolean rest​(int flags)
      • second

        public boolean second​(int flags)
      • last

        public boolean last​(int flags)
      • identifier

        public boolean identifier()
      • compute

        public static int compute​(char c)
      • flags

        public static int flags​(char c)
      • flags

        public static int flags​(java.lang.CharSequence word)
      • flags

        public static int flags​(java.lang.CharSequence word,
                                int startIndex)
      • flags

        public static int flags​(java.lang.CharSequence word,
                                int startIndex,
                                int endIndex)
      • some

        public static boolean some​(int wordFlags,
                                   int flags)
      • none

        public static boolean none​(int wordFlags,
                                   int flags)
      • only

        public static boolean only​(int wordFlags,
                                   int flags)
      • is

        public static boolean is​(int wordFlags,
                                 int flags)
      • all

        public static boolean all​(int wordFlags,
                                  int flags)
      • isAnySnakeCase

        public boolean isAnySnakeCase()
      • isAnyDashCase

        public boolean isAnyDashCase()
      • isAnyDotCase

        public boolean isAnyDotCase()
      • isAnySlashCase

        public boolean isAnySlashCase()
      • isMixedSnakeCase

        public boolean isMixedSnakeCase()
      • isMixedDashCase

        public boolean isMixedDashCase()
      • isMixedDotCase

        public boolean isMixedDotCase()
      • isMixedSlashCase

        public boolean isMixedSlashCase()
      • isFirstCapSnakeCase

        public boolean isFirstCapSnakeCase()
      • isFirstCapDashCase

        public boolean isFirstCapDashCase()
      • isFirstCapDotCase

        public boolean isFirstCapDotCase()
      • isFirstCapSlashCase

        public boolean isFirstCapSlashCase()
      • isScreamingSnakeCase

        public boolean isScreamingSnakeCase()
      • isScreamingDashCase

        public boolean isScreamingDashCase()
      • isScreamingDotCase

        public boolean isScreamingDotCase()
      • isScreamingSlashCase

        public boolean isScreamingSlashCase()
      • isSnakeCase

        public boolean isSnakeCase()
      • isDashCase

        public boolean isDashCase()
      • isDotCase

        public boolean isDotCase()
      • isSlashCase

        public boolean isSlashCase()
      • isCamelCase

        public boolean isCamelCase()
      • isProperCamelCase

        public boolean isProperCamelCase()
      • isPascalCase

        public boolean isPascalCase()
      • hasNoUpperCase

        public boolean hasNoUpperCase()
      • hasNoLowerCase

        public boolean hasNoLowerCase()
      • hasUpperCase

        public boolean hasUpperCase()
      • hasLowerCase

        public boolean hasLowerCase()
      • hasLowerCaseOrUpperCase

        public boolean hasLowerCaseOrUpperCase()
      • isLowerCase

        public boolean isLowerCase()
      • isUpperCase

        public boolean isUpperCase()
      • makeMixedSeparatorCase

        public java.lang.String makeMixedSeparatorCase​(char separator)
      • makeProperFirstCapCase

        public static java.lang.String makeProperFirstCapCase​(java.lang.String s)
      • makeMixedSnakeCase

        public java.lang.String makeMixedSnakeCase()
      • makeMixedDotCase

        public java.lang.String makeMixedDotCase()
      • makeMixedDashCase

        public java.lang.String makeMixedDashCase()
      • makeMixedSlashCase

        public java.lang.String makeMixedSlashCase()
      • makeFirstCapSnakeCase

        public java.lang.String makeFirstCapSnakeCase()
      • makeFirstCapDotCase

        public java.lang.String makeFirstCapDotCase()
      • makeFirstCapDashCase

        public java.lang.String makeFirstCapDashCase()
      • makeFirstCapSlashCase

        public java.lang.String makeFirstCapSlashCase()
      • makeCamelCase

        public java.lang.String makeCamelCase()
      • makeProperCamelCase

        public java.lang.String makeProperCamelCase()
      • makePascalCase

        public java.lang.String makePascalCase()
      • makeScreamingSnakeCase

        public java.lang.String makeScreamingSnakeCase()
      • makeSnakeCase

        public java.lang.String makeSnakeCase()
      • makeScreamingDashCase

        public java.lang.String makeScreamingDashCase()
      • makeDashCase

        public java.lang.String makeDashCase()
      • makeScreamingDotCase

        public java.lang.String makeScreamingDotCase()
      • makeDotCase

        public java.lang.String makeDotCase()
      • makeScreamingSlashCase

        public java.lang.String makeScreamingSlashCase()
      • makeSlashCase

        public java.lang.String makeSlashCase()
      • canBeMixedSnakeCase

        public boolean canBeMixedSnakeCase()
      • canBeFirstCapSnakeCase

        public boolean canBeFirstCapSnakeCase()
      • canBeScreamingSnakeCase

        public boolean canBeScreamingSnakeCase()
      • canBeSnakeCase

        public boolean canBeSnakeCase()
      • canBeMixedDashCase

        public boolean canBeMixedDashCase()
      • canBeFirstCapDashCase

        public boolean canBeFirstCapDashCase()
      • canBeScreamingDashCase

        public boolean canBeScreamingDashCase()
      • canBeDashCase

        public boolean canBeDashCase()
      • canBeMixedDotCase

        public boolean canBeMixedDotCase()
      • canBeFirstCapDotCase

        public boolean canBeFirstCapDotCase()
      • canBeScreamingDotCase

        public boolean canBeScreamingDotCase()
      • canBeDotCase

        public boolean canBeDotCase()
      • canBeMixedSlashCase

        public boolean canBeMixedSlashCase()
      • canBeFirstCapSlashCase

        public boolean canBeFirstCapSlashCase()
      • canBeScreamingSlashCase

        public boolean canBeScreamingSlashCase()
      • canBeSlashCase

        public boolean canBeSlashCase()
      • canBeCamelCase

        public boolean canBeCamelCase()
      • canBeProperCamelCase

        public boolean canBeProperCamelCase()
      • canBePascalCase

        public boolean canBePascalCase()