Enum 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>
- Enclosing class:
- UndefinedClusterViewException
public static enum UndefinedClusterViewException.Reason
extends Enum<UndefinedClusterViewException.Reason>
-
Enum Constant Summary
Enum 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 type with the specified name.static UndefinedClusterViewException.Reason[]
values()
Returns an array containing the constants of this enum type, 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-