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