public enum OnlineMeetingProviderType extends java.lang.Enum<OnlineMeetingProviderType>
| Enum Constant and Description |
|---|
SKYPE_FOR_BUSINESS
skype For Business
|
SKYPE_FOR_CONSUMER
skype For Consumer
|
TEAMS_FOR_BUSINESS
teams For Business
|
UNEXPECTED_VALUE
For OnlineMeetingProviderType values that were not expected from the service
|
UNKNOWN
unknown
|
| Modifier and Type | Method and Description |
|---|---|
static OnlineMeetingProviderType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OnlineMeetingProviderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnlineMeetingProviderType UNKNOWN
public static final OnlineMeetingProviderType SKYPE_FOR_BUSINESS
public static final OnlineMeetingProviderType SKYPE_FOR_CONSUMER
public static final OnlineMeetingProviderType TEAMS_FOR_BUSINESS
public static final OnlineMeetingProviderType UNEXPECTED_VALUE
public static OnlineMeetingProviderType[] values()
for (OnlineMeetingProviderType c : OnlineMeetingProviderType.values()) System.out.println(c);
public static OnlineMeetingProviderType 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