public enum ViewUse extends Enum<ViewUse>
property
is associated with.Enum Constant and Description |
---|
CONFIGURATION
A read-write property used for creating/updating a config
|
RUNTIME
A read-write type of property that can be set on the runtime component
|
STATISTIC
A read-only type of property that provides runtime stats
|
Modifier and Type | Method and Description |
---|---|
static ViewUse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewUse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewUse CONFIGURATION
public static final ViewUse RUNTIME
public static final ViewUse STATISTIC
public static ViewUse[] values()
for (ViewUse c : ViewUse.values()) System.out.println(c);
public static ViewUse 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.