public enum CommunityPlanType extends Enum<CommunityPlanType>
| Enum Constant and Description |
|---|
Advanced |
Default |
National |
Premium |
Standard |
| Modifier and Type | Method and Description |
|---|---|
static CommunityPlanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommunityPlanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommunityPlanType Standard
public static final CommunityPlanType Advanced
public static final CommunityPlanType Premium
public static final CommunityPlanType National
public static final CommunityPlanType Default
public static CommunityPlanType[] values()
for (CommunityPlanType c : CommunityPlanType.values()) System.out.println(c);
public static CommunityPlanType 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 nullCopyright © 2025. All rights reserved.