Enum Class VisibilityEnum

java.lang.Object
java.lang.Enum<VisibilityEnum>
org.broadleafcommerce.common.presentation.client.VisibilityEnum
All Implemented Interfaces:
Serializable, Comparable<VisibilityEnum>, Constable

public enum VisibilityEnum extends Enum<VisibilityEnum>
Created by IntelliJ IDEA. User: jfischer Date: 9/27/11 Time: 1:26 PM To change this template use File | Settings | File Templates.
  • Enum Constant Details

    • HIDDEN_ALL

      public static final VisibilityEnum HIDDEN_ALL
    • VISIBLE_ALL

      public static final VisibilityEnum VISIBLE_ALL
    • FORM_HIDDEN

      public static final VisibilityEnum FORM_HIDDEN
    • GRID_HIDDEN

      public static final VisibilityEnum GRID_HIDDEN
    • NOT_SPECIFIED

      public static final VisibilityEnum NOT_SPECIFIED
    • FORM_EXPLICITLY_SHOWN

      public static final VisibilityEnum FORM_EXPLICITLY_SHOWN
      This 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. Mainly used in CustomPersistenceHandlers for psuedo-fields that are built manually and you still want user input from (like selecting ProductOptions to associate to a Sku
    • FORM_EXPLICITLY_HIDDEN

      public static final VisibilityEnum FORM_EXPLICITLY_HIDDEN
  • Method Details

    • values

      public static VisibilityEnum[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static VisibilityEnum valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null