Enum AppenderBasedStreamMonitor.ComparisonOperator
- java.lang.Object
-
- java.lang.Enum<AppenderBasedStreamMonitor.ComparisonOperator>
-
- de.uka.ipd.sdq.workflow.logging.console.AppenderBasedStreamMonitor.ComparisonOperator
-
- All Implemented Interfaces:
Serializable
,Comparable<AppenderBasedStreamMonitor.ComparisonOperator>
- Enclosing class:
- AppenderBasedStreamMonitor
public static enum AppenderBasedStreamMonitor.ComparisonOperator extends Enum<AppenderBasedStreamMonitor.ComparisonOperator>
The Enum ComparisonOperator.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GREATER_OR_EQUAL_THAN
The GREATE r_ o r_ equa l_ than.LESS_THAN
The LES s_ than.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AppenderBasedStreamMonitor.ComparisonOperator
valueOf(String name)
Returns the enum constant of this type with the specified name.static AppenderBasedStreamMonitor.ComparisonOperator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LESS_THAN
public static final AppenderBasedStreamMonitor.ComparisonOperator LESS_THAN
The LES s_ than.
-
GREATER_OR_EQUAL_THAN
public static final AppenderBasedStreamMonitor.ComparisonOperator GREATER_OR_EQUAL_THAN
The GREATE r_ o r_ equa l_ than.
-
-
Method Detail
-
values
public static AppenderBasedStreamMonitor.ComparisonOperator[] 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 (AppenderBasedStreamMonitor.ComparisonOperator c : AppenderBasedStreamMonitor.ComparisonOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AppenderBasedStreamMonitor.ComparisonOperator 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 nameNullPointerException
- if the argument is null
-
-