public enum PricingType extends Enum<PricingType>
| Modifier and Type | Method and Description |
|---|---|
String |
getKey() |
static PricingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PricingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PricingType SERVER
public static final PricingType CLOUD
public static PricingType[] values()
for (PricingType c : PricingType.values()) System.out.println(c);
public static PricingType 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 String getKey()
Copyright © 2016 Atlassian. All rights reserved.