Enum InstallationScope
- java.lang.Object
-
- java.lang.Enum<InstallationScope>
-
- org.apache.jackrabbit.vault.packaging.registry.impl.InstallationScope
-
- All Implemented Interfaces:
Serializable
,Comparable<InstallationScope>
public enum InstallationScope extends Enum<InstallationScope>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATION_SCOPED
CONTENT_SCOPED
UNSCOPED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InstallationScope
valueOf(String name)
Returns the enum constant of this type with the specified name.static InstallationScope[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSCOPED
public static final InstallationScope UNSCOPED
-
APPLICATION_SCOPED
public static final InstallationScope APPLICATION_SCOPED
-
CONTENT_SCOPED
public static final InstallationScope CONTENT_SCOPED
-
-
Method Detail
-
values
public static InstallationScope[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (InstallationScope c : InstallationScope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstallationScope valueOf(String name)
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
-
-