public static enum AbstractPrincipalAttributesRepository.MergingStrategy extends java.lang.Enum<AbstractPrincipalAttributesRepository.MergingStrategy>
| Enum Constant and Description |
|---|
ADD
Add attributes.
|
MULTIVALUED
Multivalued attributes.
|
NONE
No merging.
|
REPLACE
Replace attributes.
|
| Modifier and Type | Method and Description |
|---|---|
org.apereo.services.persondir.support.merger.IAttributeMerger |
getAttributeMerger()
Get attribute merger.
|
static AbstractPrincipalAttributesRepository.MergingStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractPrincipalAttributesRepository.MergingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractPrincipalAttributesRepository.MergingStrategy REPLACE
public static final AbstractPrincipalAttributesRepository.MergingStrategy ADD
public static final AbstractPrincipalAttributesRepository.MergingStrategy NONE
public static final AbstractPrincipalAttributesRepository.MergingStrategy MULTIVALUED
public static AbstractPrincipalAttributesRepository.MergingStrategy[] values()
for (AbstractPrincipalAttributesRepository.MergingStrategy c : AbstractPrincipalAttributesRepository.MergingStrategy.values()) System.out.println(c);
public static AbstractPrincipalAttributesRepository.MergingStrategy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic org.apereo.services.persondir.support.merger.IAttributeMerger getAttributeMerger()