public enum MandatoryStatus extends Enum<MandatoryStatus>
| Enum Constant and Description |
|---|
BECOMES_MANDATORY
Attribute or config child is mandatory, but only in the text editor of Frank developers.
|
MANDATORY
Attribute or config child is mandatory.
|
OPTIONAL
Attribute or config child is optional.
|
| Modifier and Type | Method and Description |
|---|---|
static MandatoryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MandatoryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MandatoryStatus MANDATORY
public static final MandatoryStatus BECOMES_MANDATORY
public static final MandatoryStatus OPTIONAL
public static MandatoryStatus[] values()
for (MandatoryStatus c : MandatoryStatus.values()) System.out.println(c);
public static MandatoryStatus 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 © 2022 Ibissource.org. All rights reserved.