Package spoon
Enum Class OutputType
- All Implemented Interfaces:
Serializable,Comparable<OutputType>,Constable
Types of output.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionOne file per top-level class.Follows the compilation units given by the input.Analysis only, models are not pretty-printed to disk. -
Method Summary
Modifier and TypeMethodDescriptionstatic @Nullable OutputTypefromString(String string) Gets the output type from an option string.toString()static OutputTypeReturns the enum constant of this class with the specified name.static OutputType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_OUTPUT
Analysis only, models are not pretty-printed to disk. -
CLASSES
One file per top-level class. -
COMPILATION_UNITS
Follows the compilation units given by the input.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
toString
- Overrides:
toStringin classEnum<OutputType>
-
fromString
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:
-