Class TagStringUtil

java.lang.Object
com.webfirmframework.wffweb.util.TagStringUtil

public final class TagStringUtil extends Object
Since:
1.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    static String
    In html, the tag characters are supposed to use a limited number of characters like 'a'-'z', 'A'-'Z', '0'-'9', '.', ',', '-' etc...
    static String
    In html, the tag characters are supposed to use a limited number of characters like 'a'-'z', 'A'-'Z', '0'-'9', '.', ',', '-' etc...
    This method gains performance than the native String.toUpperCase() method.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • toLowerCase

      public static String toLowerCase(String value)
      In html, the tag characters are supposed to use a limited number of characters like 'a'-'z', 'A'-'Z', '0'-'9', '.', ',', '-' etc... only. * This method gains performance than the native String.toLowerCase() method.
      Parameters:
      value - The String to lower case
      Returns:
      The lower case string
    • toUpperCase

      public static String toUpperCase(String value)
      In html, the tag characters are supposed to use a limited number of characters like 'a'-'z', 'A'-'Z', '0'-'9', '.', ',', '-' etc...
      This method gains performance than the native String.toUpperCase() method.
      Parameters:
      value - The String to lower case
      Returns:
      The upper case string