public enum ScreenConfigurationValue extends Enum<ScreenConfigurationValue>
Java class for screenConfigurationValue.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="screenConfigurationValue"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="TRUE"/> <enumeration value="FALSE"/> <enumeration value="MANDATORY_BY_GROUP"/> <enumeration value="MANDATORY"/> <enumeration value="OPTIONAL"/> <enumeration value="MANDATORY_NOEDIT"/> <enumeration value="MANDATORY_BY_GROUP_NOEDIT"/> <enumeration value="TRUE_UNCHECK"/> <enumeration value="TRUE_CHECK"/> </restriction> </simpleType>
Enum Constant and Description |
---|
FALSE |
MANDATORY |
MANDATORY_BY_GROUP |
MANDATORY_BY_GROUP_NOEDIT |
MANDATORY_NOEDIT |
OPTIONAL |
TRUE |
TRUE_CHECK |
TRUE_UNCHECK |
Modifier and Type | Method and Description |
---|---|
static ScreenConfigurationValue |
fromValue(String v) |
String |
value() |
static ScreenConfigurationValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScreenConfigurationValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenConfigurationValue TRUE
public static final ScreenConfigurationValue FALSE
public static final ScreenConfigurationValue MANDATORY_BY_GROUP
public static final ScreenConfigurationValue MANDATORY
public static final ScreenConfigurationValue OPTIONAL
public static final ScreenConfigurationValue MANDATORY_NOEDIT
public static final ScreenConfigurationValue MANDATORY_BY_GROUP_NOEDIT
public static final ScreenConfigurationValue TRUE_UNCHECK
public static final ScreenConfigurationValue TRUE_CHECK
public static ScreenConfigurationValue[] values()
for (ScreenConfigurationValue c : ScreenConfigurationValue.values()) System.out.println(c);
public static ScreenConfigurationValue 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 value()
public static ScreenConfigurationValue fromValue(String v)
Copyright © 2021. All rights reserved.