Enum TLineType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<TLineType>

    public enum TLineType
    extends java.lang.Enum<TLineType>
    • Enum Constant Detail

      • AFFECTATION_DEFINE

        public static final TLineType AFFECTATION_DEFINE
      • AFFECTATION

        public static final TLineType AFFECTATION
      • ASSERT

        public static final TLineType ASSERT
      • IFNDEF

        public static final TLineType IFNDEF
      • ELSEIF

        public static final TLineType ELSEIF
      • ENDWHILE

        public static final TLineType ENDWHILE
      • FOREACH

        public static final TLineType FOREACH
      • ENDFOREACH

        public static final TLineType ENDFOREACH
      • DECLARE_RETURN_FUNCTION

        public static final TLineType DECLARE_RETURN_FUNCTION
      • DECLARE_PROCEDURE

        public static final TLineType DECLARE_PROCEDURE
      • END_FUNCTION

        public static final TLineType END_FUNCTION
      • RETURN

        public static final TLineType RETURN
      • LEGACY_DEFINE

        public static final TLineType LEGACY_DEFINE
      • LEGACY_DEFINELONG

        public static final TLineType LEGACY_DEFINELONG
      • INCLUDE

        public static final TLineType INCLUDE
      • INCLUDE_DEF

        public static final TLineType INCLUDE_DEF
      • IMPORT

        public static final TLineType IMPORT
      • STARTSUB

        public static final TLineType STARTSUB
      • ENDSUB

        public static final TLineType ENDSUB
      • INCLUDESUB

        public static final TLineType INCLUDESUB
      • DUMP_MEMORY

        public static final TLineType DUMP_MEMORY
      • COMMENT_SIMPLE

        public static final TLineType COMMENT_SIMPLE
      • COMMENT_LONG_START

        public static final TLineType COMMENT_LONG_START
    • Method Detail

      • values

        public static TLineType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TLineType c : TLineType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TLineType valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getFromLineInternal

        public static TLineType getFromLineInternal​(java.lang.String s)
      • isQuote

        public static boolean isQuote​(char ch)
      • isLetterOrUnderscoreOrDigit

        public static boolean isLetterOrUnderscoreOrDigit​(char ch)
      • isLetterOrUnderscore

        public static boolean isLetterOrUnderscore​(char ch)
      • isLetterOrUnderscoreOrDollar

        public static boolean isLetterOrUnderscoreOrDollar​(char ch)
      • isLetterOrDigit

        public static boolean isLetterOrDigit​(char ch)
      • isLetter

        public static boolean isLetter​(char ch)
      • isSpaceChar

        public static boolean isSpaceChar​(char ch)
      • isLatinDigit

        public static boolean isLatinDigit​(char ch)