public enum Flag extends Enum<Flag>
| Enum Constant and Description | 
|---|
OPTIONAL  | 
REQUIRED  | 
REQUISITE  | 
SUFFICIENT  | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
getAllowedValue()
Returns the allowed value for the management model. 
 | 
String | 
toString()  | 
static Flag | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Flag[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Flag REQUIRED
public static final Flag REQUISITE
public static final Flag SUFFICIENT
public static final Flag OPTIONAL
public static Flag[] values()
for (Flag c : Flag.values()) System.out.println(c);
public static 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 nullpublic String getAllowedValue()
Copyright © 2018 JBoss by Red Hat. All rights reserved.