public static enum MaintainableService.MaintenanceScope extends java.lang.Enum<MaintainableService.MaintenanceScope>
Enum Constant and Description |
---|
CACHE
Will impact one or many caches
|
CACHE_MANAGER
Will impact the cache manager
|
Modifier and Type | Method and Description |
---|---|
static MaintainableService.MaintenanceScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaintainableService.MaintenanceScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaintainableService.MaintenanceScope CACHE_MANAGER
public static final MaintainableService.MaintenanceScope CACHE
public static MaintainableService.MaintenanceScope[] values()
for (MaintainableService.MaintenanceScope c : MaintainableService.MaintenanceScope.values()) System.out.println(c);
public static MaintainableService.MaintenanceScope valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null