Enum Phase.CleanupMode

    • Enum Constant Detail

      • NONE

        public static final Phase.CleanupMode NONE
        No fields should be removed, including those generated for field processing
      • INTERMEDIATE

        public static final Phase.CleanupMode INTERMEDIATE
        Only those fields generated for field processing should be removed. Input fields are preserved.
      • ALL

        public static final Phase.CleanupMode ALL
        All input fields and any fields generated for field processing are removed. Only result fields are preserved.
    • Method Detail

      • values

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

        public static Phase.CleanupMode 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
      • removeIntermediates

        public boolean removeIntermediates()
        Indicates whether intermediate fields produced to get phase results should be removed.
        Returns:
        true to remove intermediate fields, false otherwise.
      • removeInputs

        public boolean removeInputs()
        Indicates whether input fields for the phase should be removed.
        Returns:
        true to remove input fields, false otherwise.