public static enum AttributeAccess.Storage extends Enum<AttributeAccess.Storage>
Enum Constant and Description |
---|
CONFIGURATION
An attribute whose value is stored in the persistent configuration.
|
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 |
---|---|
String |
toString() |
static AttributeAccess.Storage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeAccess.Storage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeAccess.Storage CONFIGURATION
public static final AttributeAccess.Storage RUNTIME
public static AttributeAccess.Storage[] values()
for (AttributeAccess.Storage c : AttributeAccess.Storage.values()) System.out.println(c);
public static AttributeAccess.Storage 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 nullpublic String toString()
toString
in class Enum<AttributeAccess.Storage>
Copyright © 2023 JBoss by Red Hat. All rights reserved.