public enum ManagementProperties extends Enum<ManagementProperties>
Enum Constant and Description |
---|
ALL
All properties by default
|
CLASS
Only @ManagementProperty from the @ManagementObject class annotation
|
CLASS_AND_EXPLICIT
Merge @ManagementProperty from the @ManagementObject class annotation
and any bean properties annotated with @ManagementProperty
|
EXPLICIT
Only bean properties annotated with @ManagementProperty
|
Modifier and Type | Method and Description |
---|---|
static ManagementProperties |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManagementProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagementProperties ALL
public static final ManagementProperties EXPLICIT
public static final ManagementProperties CLASS
public static final ManagementProperties CLASS_AND_EXPLICIT
public static ManagementProperties[] values()
for (ManagementProperties c : ManagementProperties.values()) System.out.println(c);
public static ManagementProperties 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 © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.