public static enum AttributeAccess.Flag extends Enum<AttributeAccess.Flag>
Enum Constant and Description |
---|
ALIAS
The attribute is an alias to something else
|
RESTART_ALL_SERVICES
A modification to the attribute can only be applied to the runtime via a restart of all services,
but does not require a full jvm restart
|
RESTART_JVM
A modification to the attribute can only be applied to the runtime via a full jvm restart
|
RESTART_NONE
A modification to the attribute can be applied to the runtime without requiring a restart
|
RESTART_RESOURCE_SERVICES
A modification to the attribute can only be applied to the runtime via a restart of services,
associated with the attribute's resource, but does not require a restart of all services or a full jvm restart
|
STORAGE_CONFIGURATION
An attribute whose value is stored in the persistent configuration.
|
STORAGE_RUNTIME
An attribute whose value is only stored in runtime services, and
isn't stored in the persistent configuration.
|
Modifier and Type | Method and Description |
---|---|
static AttributeAccess.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeAccess.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeAccess.Flag RESTART_NONE
public static final AttributeAccess.Flag RESTART_JVM
public static final AttributeAccess.Flag RESTART_ALL_SERVICES
public static final AttributeAccess.Flag RESTART_RESOURCE_SERVICES
public static final AttributeAccess.Flag STORAGE_CONFIGURATION
public static final AttributeAccess.Flag STORAGE_RUNTIME
public static final AttributeAccess.Flag ALIAS
public static AttributeAccess.Flag[] values()
for (AttributeAccess.Flag c : AttributeAccess.Flag.values()) System.out.println(c);
public static AttributeAccess.Flag valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023 JBoss by Red Hat. All rights reserved.