public enum AppServicePlanRestrictions extends Enum<AppServicePlanRestrictions>
Enum Constant and Description |
---|
BASIC
Enum value Basic.
|
FREE
Enum value Free.
|
NONE
Enum value None.
|
PREMIUM
Enum value Premium.
|
SHARED
Enum value Shared.
|
STANDARD
Enum value Standard.
|
Modifier and Type | Method and Description |
---|---|
static AppServicePlanRestrictions |
fromString(String value)
Parses a serialized value to a AppServicePlanRestrictions instance.
|
String |
toString() |
static AppServicePlanRestrictions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppServicePlanRestrictions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppServicePlanRestrictions NONE
public static final AppServicePlanRestrictions FREE
public static final AppServicePlanRestrictions SHARED
public static final AppServicePlanRestrictions BASIC
public static final AppServicePlanRestrictions STANDARD
public static final AppServicePlanRestrictions PREMIUM
public static AppServicePlanRestrictions[] values()
for (AppServicePlanRestrictions c : AppServicePlanRestrictions.values()) System.out.println(c);
public static AppServicePlanRestrictions valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static AppServicePlanRestrictions fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<AppServicePlanRestrictions>
Copyright © 2019. All rights reserved.