Package kieker.analysis.generic
Enum TeeFilter.TeeFilterStreamType
java.lang.Object
java.lang.Enum<TeeFilter.TeeFilterStreamType>
kieker.analysis.generic.TeeFilter.TeeFilterStreamType
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TeeFilter.TeeFilterStreamType>,java.lang.constant.Constable
- Enclosing class:
- TeeFilter
public static enum TeeFilter.TeeFilterStreamType extends java.lang.Enum<TeeFilter.TeeFilterStreamType>
Predefined types of streams for the
STDLOG = standard log
STDOUT = standard output
STDERR = standard error output
NULL = filter doesn't print anything
TeeFilter.STDLOG = standard log
STDOUT = standard output
STDERR = standard error output
NULL = filter doesn't print anything
- Since:
- 1.13
-
Nested Class Summary
-
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description static TeeFilter.TeeFilterStreamTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TeeFilter.TeeFilterStreamType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
Method Details
-
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
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-