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