Package de.elo.ix.client
Enum Class InheritKeywordingResult
- All Implemented Interfaces:
Serializable
,Comparable<InheritKeywordingResult>
,Constable
Return values for server event
IXServerEvents.onInheritKeywording(de.elo.ix.client.IXServerEventsContext, de.elo.ix.client.Sord, de.elo.ix.client.Sord, java.lang.String[], java.lang.Object)
.- Since:
- 9.00.040.006
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe event function has not modified keywording of the given Sord.The event function has modified keywording of the given Sord.Indexserver should stop processing of children of the given Sord. -
Method Summary
Modifier and TypeMethodDescriptionstatic InheritKeywordingResult
Returns the enum constant of this class with the specified name.static InheritKeywordingResult[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOTHING
Indexserver should stop processing of children of the given Sord. -
APPLY_DEFAULT
The event function has not modified keywording of the given Sord. Indexserver applies the default inheritance algorithm to the given Sord and continues processing of children. -
INHERITED
The event function has modified keywording of the given Sord. Indexserver updates the given Sord in the database and continues processing of children.
-
-
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
-