public static enum Status.Type extends java.lang.Enum<Status.Type>
| Enum Constant and Description | 
|---|
Available  | 
Busy  | 
DoNotDisturb  | 
Offline  | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
code()  | 
static Status.Type | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Status.Type[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Status.Type DoNotDisturb
public static final Status.Type Available
public static final Status.Type Busy
public static final Status.Type Offline
public static Status.Type[] values()
for (Status.Type c : Status.Type.values()) System.out.println(c);
public static Status.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String code()
Copyright © 2021. All Rights Reserved.