Enum Class DefaultChildrenVisibilityType
java.lang.Object
java.lang.Enum<DefaultChildrenVisibilityType>
com.broadleafcommerce.paymenttransaction.domain.enums.DefaultChildrenVisibilityType
- All Implemented Interfaces:
Serializable
,Comparable<DefaultChildrenVisibilityType>
,Constable
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
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
isNotVisible
(String visibility) static boolean
Returns the enum constant of this class with the specified name.static DefaultChildrenVisibilityType[]
values()
Returns an array containing the constants of this enum class, 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 class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-
isVisible
-
isNotVisible
-