public enum ProductArea extends Enum<ProductArea>
| Enum Constant and Description | 
|---|
| MAIN_EDITOR | 
| MAIN_MENU | 
| NAVIGATOR_TREE | 
| NO | 
| STATIC_MAIN_TOOLBAR | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getProductArea() | 
| static ProductArea | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ProductArea[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ProductArea NO
public static final ProductArea MAIN_MENU
public static final ProductArea NAVIGATOR_TREE
public static final ProductArea MAIN_EDITOR
public static final ProductArea STATIC_MAIN_TOOLBAR
public static ProductArea[] values()
for (ProductArea c : ProductArea.values()) System.out.println(c);
public static ProductArea 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 getProductArea()
Copyright © 2019. All Rights Reserved.