public static enum CountMonitor.CheckSign extends Enum<CountMonitor.CheckSign>
| Enum Constant and Description |
|---|
GREATER_THAN |
GREATER_THAN_EQUALTO |
LESSER_THAN |
LESSER_THAN_EQUALTO |
| Modifier and Type | Method and Description |
|---|---|
static CountMonitor.CheckSign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CountMonitor.CheckSign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CountMonitor.CheckSign LESSER_THAN
public static final CountMonitor.CheckSign LESSER_THAN_EQUALTO
public static final CountMonitor.CheckSign GREATER_THAN
public static final CountMonitor.CheckSign GREATER_THAN_EQUALTO
public static CountMonitor.CheckSign[] values()
for (CountMonitor.CheckSign c : CountMonitor.CheckSign.values()) System.out.println(c);
public static CountMonitor.CheckSign valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015–2022. All rights reserved.