Enum DefaultChildrenVisibilityType

java.lang.Object
java.lang.Enum<DefaultChildrenVisibilityType>
com.broadleafcommerce.paymenttransaction.domain.enums.DefaultChildrenVisibilityType
All Implemented Interfaces:
Serializable, Comparable<DefaultChildrenVisibilityType>

public enum DefaultChildrenVisibilityType extends Enum<DefaultChildrenVisibilityType> implements Serializable
The DefaultChildrenVisibilityType is used to represent the types of visibility to child accounts for SavedPaymentMethod. This is typically for B2B use cases where the SavedPaymentMethod.getOwningUserType() is DefaultSavedPaymentMethodOwningUserTypes.BLC_ACCOUNT.
  • Enum Constant Details

    • NO

      public static final DefaultChildrenVisibilityType NO
      Represents a saved payment method in an account context that is not to be shared with child accounts
    • YES

      public static final DefaultChildrenVisibilityType YES
      Represents a saved payment method in an account context to be shared with child accounts
  • Method Details

    • values

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

      public static DefaultChildrenVisibilityType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • isVisible

      public static boolean isVisible(String visibility)
    • isNotVisible

      public static boolean isNotVisible(String visibility)