Enum ModuleSectionType

    • Enum Constant Detail

      • REGION_PREPROCESSOR

        public static final ModuleSectionType REGION_PREPROCESSOR
        Region pre-processor
      • INSERT_REGION_PREPROCESSOR

        public static final ModuleSectionType INSERT_REGION_PREPROCESSOR
        Insert region pre-processor
      • DELETE_REGION_PREPROCESSOR

        public static final ModuleSectionType DELETE_REGION_PREPROCESSOR
        Delete region pre-processor
      • IF_PREPROCESSOR

        public static final ModuleSectionType IF_PREPROCESSOR
        If- pre-processor
      • DECLARATION

        public static final ModuleSectionType DECLARATION
        Variable declaration block
      • METHOD_SIGNATURE

        public static final ModuleSectionType METHOD_SIGNATURE
        Method (function/procedure) signature
      • METHOD_BODY

        public static final ModuleSectionType METHOD_BODY
        Method (function/procedure) body
    • Method Detail

      • values

        public static ModuleSectionType[] 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 (ModuleSectionType c : ModuleSectionType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ModuleSectionType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null