public enum ShowOccurrencesType extends Enum<ShowOccurrencesType>
| Enum Constant and Description |
|---|
ALL |
ONLYERRORS |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ShowOccurrencesType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShowOccurrencesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShowOccurrencesType ONLYERRORS
public static final ShowOccurrencesType ALL
public static ShowOccurrencesType[] values()
for (ShowOccurrencesType c : ShowOccurrencesType.values()) System.out.println(c);
public static ShowOccurrencesType 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 nullpublic String toString()
toString in class Enum<ShowOccurrencesType>Copyright © 2018. All Rights Reserved.