public static enum OutputSinkFactory.SinkType extends java.lang.Enum<OutputSinkFactory.SinkType>
Enum Constant and Description |
---|
EXCEPTION
This sink will receive any exceptions that occur
|
JAVA
This sink will receive decompiled class files as java
|
LINENUMBER
This sink will receive line number information
|
PROGRESS
This sink will receive updates on files being processed.
|
SUMMARY
This sink will receive a top level summary
|
Modifier and Type | Method and Description |
---|---|
static OutputSinkFactory.SinkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutputSinkFactory.SinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputSinkFactory.SinkType JAVA
public static final OutputSinkFactory.SinkType SUMMARY
public static final OutputSinkFactory.SinkType PROGRESS
public static final OutputSinkFactory.SinkType EXCEPTION
public static final OutputSinkFactory.SinkType LINENUMBER
public static OutputSinkFactory.SinkType[] values()
for (OutputSinkFactory.SinkType c : OutputSinkFactory.SinkType.values()) System.out.println(c);
public static OutputSinkFactory.SinkType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null