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 Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
isNotVisible
(String visibility) static boolean
Returns the enum constant of this type with the specified name.static DefaultChildrenVisibilityType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NO
Represents a saved payment method in an account context that is not to be shared with child accounts -
YES
Represents a saved payment method in an account context to be shared with child accounts
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
isVisible
-
isNotVisible
-