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