public static enum Profile.Type extends Enum<Profile.Type>
Enum Constant and Description |
---|
DEFAULT |
DEPRECATED |
DISABLED_BY_DEFAULT |
EXPERIMENTAL |
PREVIEW |
Modifier and Type | Method and Description |
---|---|
static Profile.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Profile.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Profile.Type DEFAULT
public static final Profile.Type DISABLED_BY_DEFAULT
public static final Profile.Type PREVIEW
public static final Profile.Type EXPERIMENTAL
public static final Profile.Type DEPRECATED
public static Profile.Type[] values()
for (Profile.Type c : Profile.Type.values()) System.out.println(c);
public static Profile.Type 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 © 2021 JBoss by Red Hat. All rights reserved.