public static enum CompositeComponent.NavpanelDisplay extends java.lang.Enum<CompositeComponent.NavpanelDisplay>
| Enum Constant and Description | 
|---|
| ALPHABETICComponent should be visible in the panel, with named
 children ordered alphebetically. | 
| NORMALComponent should be visible in the panel, with named
 children ordered according to their component ordering. | 
| Modifier and Type | Method and Description | 
|---|---|
| static CompositeComponent.NavpanelDisplay | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static CompositeComponent.NavpanelDisplay[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final CompositeComponent.NavpanelDisplay NORMAL
public static final CompositeComponent.NavpanelDisplay ALPHABETIC
public static CompositeComponent.NavpanelDisplay[] values()
for (CompositeComponent.NavpanelDisplay c : CompositeComponent.NavpanelDisplay.values()) System.out.println(c);
public static CompositeComponent.NavpanelDisplay 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