public enum NotificationTypeE extends Enum<NotificationTypeE>
| Enum Constant and Description |
|---|
A
A = Aufgang
|
G
G = Gerät
|
L
L = Liegenschaft / Hauptmeldung
|
U
UNKNOWN
|
W
W = Wohnung
|
| Modifier and Type | Method and Description |
|---|---|
static NotificationTypeE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationTypeE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationTypeE U
public static final NotificationTypeE G
public static final NotificationTypeE W
public static final NotificationTypeE A
public static final NotificationTypeE L
public static NotificationTypeE[] values()
for (NotificationTypeE c : NotificationTypeE.values()) System.out.println(c);
public static NotificationTypeE 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 © 2022. All rights reserved.