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