public enum VisibilityEnum extends Enum<VisibilityEnum>
| Enum Constant and Description | 
|---|
| FORM_EXPLICITLY_HIDDEN | 
| FORM_EXPLICITLY_SHOWNThis will ensure that the field is shown on the the entity form regardless of whether or not this field is
 actually a member of the entity. | 
| FORM_HIDDEN | 
| GRID_HIDDEN | 
| HIDDEN_ALL | 
| NOT_SPECIFIED | 
| VISIBLE_ALL | 
| Modifier and Type | Method and Description | 
|---|---|
| static VisibilityEnum | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static VisibilityEnum[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final VisibilityEnum HIDDEN_ALL
public static final VisibilityEnum VISIBLE_ALL
public static final VisibilityEnum FORM_HIDDEN
public static final VisibilityEnum GRID_HIDDEN
public static final VisibilityEnum NOT_SPECIFIED
public static final VisibilityEnum FORM_EXPLICITLY_SHOWN
CustomPersistenceHandlers for psuedo-fields that are built
 manually and you still want user input from (like selecting ProductOptions to associate to a Skupublic static final VisibilityEnum FORM_EXPLICITLY_HIDDEN
public static VisibilityEnum[] values()
for (VisibilityEnum c : VisibilityEnum.values()) System.out.println(c);
public static VisibilityEnum 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 © 2020. All rights reserved.