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