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