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