Enum Class UndefinedClusterViewException.Reason
java.lang.Object
java.lang.Enum<UndefinedClusterViewException.Reason>
org.apache.sling.discovery.base.commons.UndefinedClusterViewException.Reason
- All Implemented Interfaces:
Serializable,Comparable<UndefinedClusterViewException.Reason>,Constable
- Enclosing class:
UndefinedClusterViewException
public static enum UndefinedClusterViewException.Reason
extends Enum<UndefinedClusterViewException.Reason>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionused when the local instance is isolated from the topology (which is noticed by an established view that does not include the local instance)used when there is no established view yet (happens on a fresh installation)used when we couldn't reach the repository -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static UndefinedClusterViewException.Reason[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ISOLATED_FROM_TOPOLOGY
used when the local instance is isolated from the topology (which is noticed by an established view that does not include the local instance) -
NO_ESTABLISHED_VIEW
used when there is no established view yet (happens on a fresh installation) -
REPOSITORY_EXCEPTION
used when we couldn't reach the repository
-
-
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
-