Enum Class SynchronizableRepeater.Mode
java.lang.Object
java.lang.Enum<SynchronizableRepeater.Mode>
org.ametys.plugins.repository.data.holder.values.SynchronizableRepeater.Mode
- All Implemented Interfaces:
Serializable
,Comparable<SynchronizableRepeater.Mode>
,java.lang.constant.Constable
- Enclosing class:
- SynchronizableRepeater
The entries write mode.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe entries will be appended after existing entriesThe entries will replace specific entriesThe entries will replace all existing values -
Method Summary
Modifier and TypeMethodDescriptionstatic SynchronizableRepeater.Mode
Returns the enum constant of this class with the specified name.static SynchronizableRepeater.Mode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REPLACE_ALL
The entries will replace all existing values -
REPLACE
The entries will replace specific entries -
APPEND
The entries will be appended after existing entries
-
-
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
-