public enum EndpointType extends java.lang.Enum<EndpointType>
| Enum Constant and Description |
|---|
DEFAULT
default
|
SKYPE_FOR_BUSINESS
skype For Business
|
SKYPE_FOR_BUSINESS_VOIP_PHONE
skype For Business Voip Phone
|
UNEXPECTED_VALUE
For EndpointType values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
VOICEMAIL
voicemail
|
| Modifier and Type | Method and Description |
|---|---|
static EndpointType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EndpointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EndpointType DEFAULT
public static final EndpointType VOICEMAIL
public static final EndpointType SKYPE_FOR_BUSINESS
public static final EndpointType SKYPE_FOR_BUSINESS_VOIP_PHONE
public static final EndpointType UNKNOWN_FUTURE_VALUE
public static final EndpointType UNEXPECTED_VALUE
public static EndpointType[] values()
for (EndpointType c : EndpointType.values()) System.out.println(c);
public static EndpointType 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 null