Package spoon

Enum OutputType

All Implemented Interfaces:
Serializable, Comparable<OutputType>

public enum OutputType extends Enum<OutputType>
Types of output.
  • Enum Constant Details

    • NO_OUTPUT

      public static final OutputType NO_OUTPUT
      Analysis only, models are not pretty-printed to disk.
    • CLASSES

      public static final OutputType CLASSES
      One file per top-level class.
    • COMPILATION_UNITS

      public static final OutputType COMPILATION_UNITS
      Follows the compilation units given by the input.
  • Method Details

    • values

      public static OutputType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static OutputType 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<OutputType>
    • fromString

      public static @Nullable OutputType fromString(String string)
      Gets the output type from an option string.
      Parameters:
      string - the string, as given in the launcher's options
      Returns:
      the corresponding output type, null if no match is found
      See Also:
      Launcher.printUsage()