Class RFC1945Helper

java.lang.Object
com.helger.http.RFC1945Helper

@Immutable public final class RFC1945Helper extends Object
HTTP string helper. Based on RFC 1945 (HTTP/1.0) http://tools.ietf.org/html/rfc1945
Author:
Philip Helger
  • Field Details

  • Method Details

    • isChar

      public static boolean isChar(int n)
    • isOctet

      public static boolean isOctet(int n)
    • isUpperAlphaChar

      public static boolean isUpperAlphaChar(int n)
    • isLowerAlphaChar

      public static boolean isLowerAlphaChar(int n)
    • isAlphaChar

      public static boolean isAlphaChar(int n)
    • isDigitChar

      public static boolean isDigitChar(int n)
    • isControlChar

      public static boolean isControlChar(int n)
    • isCRChar

      public static boolean isCRChar(int n)
    • isLFChar

      public static boolean isLFChar(int n)
    • isSpaceChar

      public static boolean isSpaceChar(int n)
    • isTabChar

      public static boolean isTabChar(int n)
    • isLinearWhitespaceChar

      public static boolean isLinearWhitespaceChar(int n)
    • isQuoteChar

      public static boolean isQuoteChar(int n)
    • isHexChar

      public static boolean isHexChar(int n)
    • isHexNotEmpty

      public static boolean isHexNotEmpty(@Nullable char[] aChars)
    • isHexNotEmpty

      public static boolean isHexNotEmpty(@Nullable String sStr)
    • isLowerHexChar

      public static boolean isLowerHexChar(int n)
    • isLowerHexNotEmpty

      public static boolean isLowerHexNotEmpty(@Nullable char[] aChars)
    • isLowerHexNotEmpty

      public static boolean isLowerHexNotEmpty(@Nullable String sStr)
    • isNonTokenChar

      public static boolean isNonTokenChar(int n)
    • isTokenChar

      public static boolean isTokenChar(int n)
    • isToken

      public static boolean isToken(@Nullable char[] aChars)
    • isToken

      public static boolean isToken(@Nullable String sStr)
    • isTextChar

      public static boolean isTextChar(int n)
    • isCommentChar

      public static boolean isCommentChar(int n)
    • isComment

      public static boolean isComment(@Nullable char[] aChars)
    • isComment

      public static boolean isComment(@Nullable String sStr)
    • isQuotedTextChar

      public static boolean isQuotedTextChar(int n)
    • isQuotedText

      public static boolean isQuotedText(@Nullable char[] aChars)
    • isQuotedText

      public static boolean isQuotedText(@Nullable String sStr)
    • getQuotedTextString

      @Nullable public static String getQuotedTextString(@Nullable String sStr)
    • isQuotedTextContent

      public static boolean isQuotedTextContent(@Nullable char[] aChars)
    • isQuotedTextContent

      public static boolean isQuotedTextContent(@Nullable String sStr)
    • isWord

      public static boolean isWord(@Nullable char[] aChars)
    • isWord

      public static boolean isWord(@Nullable String sStr)
    • isReservedChar

      public static boolean isReservedChar(int n)
    • isExtraChar

      public static boolean isExtraChar(int n)
    • isSafeChar

      public static boolean isSafeChar(int n)
    • isUnsafeChar

      public static boolean isUnsafeChar(int n)
    • isNationalChar

      public static boolean isNationalChar(int n)
    • isUnreservedChar

      public static boolean isUnreservedChar(int n)