Enum Class CDORevisionCrawler.FeatureStrategy.Decision
java.lang.Object
java.lang.Enum<CDORevisionCrawler.FeatureStrategy.Decision>
org.eclipse.emf.cdo.common.revision.CDORevisionCrawler.FeatureStrategy.Decision
- All Implemented Interfaces:
Serializable,Comparable<CDORevisionCrawler.FeatureStrategy.Decision>,java.lang.constant.Constable
- Enclosing interface:
CDORevisionCrawler.FeatureStrategy
public static enum CDORevisionCrawler.FeatureStrategy.Decision
extends Enum<CDORevisionCrawler.FeatureStrategy.Decision>
Decision for feature handling: skip, handle, follow, or both.
- Author:
- Eike Stepper
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFollow the feature only.Handle the feature only.Handle and follow the feature.Skip the feature. -
Method Summary
Modifier and TypeMethodDescriptionbooleanisFollow()Returns true if the feature should be followed.booleanisHandle()Returns true if the feature should be handled.Returns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Skip
Skip the feature. -
Handle
Handle the feature only. -
Follow
Follow the feature only. -
HandleAndFollow
Handle and follow the feature.
-
-
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
-
isHandle
public boolean isHandle()Returns true if the feature should be handled. -
isFollow
public boolean isFollow()Returns true if the feature should be followed.
-